mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-03-25 16:38:47 +00:00
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3761 d0543943-73ff-0310-b7d9-9358b9ac24b2
75 lines
1.2 KiB
C
75 lines
1.2 KiB
C
/*
|
|
* Copyright 1992 by Jutta Degener and Carsten Bormann, Technische
|
|
* Universitaet Berlin. See the accompanying file "COPYRIGHT" for
|
|
* details. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
|
|
*/
|
|
|
|
#include "gsm610_priv.h"
|
|
|
|
#include "gsm.h"
|
|
|
|
int gsm_option (gsm r, int opt, int * val)
|
|
{
|
|
int result = -1;
|
|
|
|
switch (opt) {
|
|
case GSM_OPT_LTP_CUT:
|
|
#ifdef LTP_CUT
|
|
result = r->ltp_cut;
|
|
if (val) r->ltp_cut = *val;
|
|
#endif
|
|
break;
|
|
|
|
case GSM_OPT_VERBOSE:
|
|
#ifndef NDEBUG
|
|
result = r->verbose;
|
|
if (val) r->verbose = *val;
|
|
#endif
|
|
break;
|
|
|
|
case GSM_OPT_FAST:
|
|
|
|
#if defined(FAST) && defined(USE_FLOAT_MUL)
|
|
result = r->fast;
|
|
if (val) r->fast = !!*val;
|
|
#endif
|
|
break;
|
|
|
|
case GSM_OPT_FRAME_CHAIN:
|
|
|
|
#ifdef WAV49
|
|
result = r->frame_chain;
|
|
if (val) r->frame_chain = *val;
|
|
#endif
|
|
break;
|
|
|
|
case GSM_OPT_FRAME_INDEX:
|
|
|
|
#ifdef WAV49
|
|
result = r->frame_index;
|
|
if (val) r->frame_index = *val;
|
|
#endif
|
|
break;
|
|
|
|
case GSM_OPT_WAV49:
|
|
|
|
#ifdef WAV49
|
|
result = r->wav_fmt;
|
|
if (val) r->wav_fmt = !!*val;
|
|
#endif
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
return result;
|
|
}
|
|
/*
|
|
** Do not edit or modify anything in this comment block.
|
|
** The arch-tag line is a file identity tag for the GNU Arch
|
|
** revision control system.
|
|
**
|
|
** arch-tag: 963ff156-506f-4359-9145-371e9060b030
|
|
*/
|
|
|