Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
gsm_option.c
Package: rtsp-1.0.1.tar.gz [view]
Upload User: sy_wanhua
Upload Date: 2013-07-25
Package Size: 3048k
Code Size: 1k
Category:
Streaming_Mpeg4
Development Platform:
C/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.
- */
- /* $Header: /cvsroot/vocal.modules/contrib/libsndfile-0.0.22/src/GSM610/gsm_option.c,v 1.2 2001/02/27 19:23:08 deepalir Exp $ */
- #include "private.h"
- #include "gsm.h"
- #include "proto.h"
- int gsm_option P3((r, opt, val), 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;
- }