00001 /* 00002 * Asterisk -- An open source telephony toolkit. 00003 * 00004 * Copyright (C) 1999 - 2005, Digium, Inc. 00005 * 00006 * Mark Spencer <markster@digium.com> 00007 * 00008 * See http://www.asterisk.org for more information about 00009 * the Asterisk project. Please do not directly contact 00010 * any of the maintainers of this project for assistance; 00011 * the project provides a web site, mailing lists and IRC 00012 * channels for your use. 00013 * 00014 * This program is free software, distributed under the terms of 00015 * the GNU General Public License Version 2. See the LICENSE file 00016 * at the top of the source tree. 00017 */ 00018 00019 /*! \file 00020 * \brief Asterisk internal frame definitions. 00021 * \arg For an explanation of frames, see \ref Def_Frame 00022 * \arg Frames are send of Asterisk channels, see \ref Def_Channel 00023 */ 00024 00025 #ifndef _ASTERISK_FRAME_H 00026 #define _ASTERISK_FRAME_H 00027 00028 #if defined(__cplusplus) || defined(c_plusplus) 00029 extern "C" { 00030 #endif 00031 00032 #include <sys/types.h> 00033 #include <sys/time.h> 00034 00035 #include "asterisk/compiler.h" 00036 #include "asterisk/endian.h" 00037 #include "asterisk/linkedlists.h" 00038 00039 struct ast_codec_pref { 00040 char order[32]; 00041 char framing[32]; 00042 }; 00043 00044 /*! \page Def_Frame AST Multimedia and signalling frames 00045 \section Def_AstFrame What is an ast_frame ? 00046 A frame of data read used to communicate between 00047 between channels and applications. 00048 Frames are divided into frame types and subclasses. 00049 00050 \par Frame types 00051 \arg \b VOICE: Voice data, subclass is codec (AST_FORMAT_*) 00052 \arg \b VIDEO: Video data, subclass is codec (AST_FORMAT_*) 00053 \arg \b DTMF: A DTMF digit, subclass is the digit 00054 \arg \b IMAGE: Image transport, mostly used in IAX 00055 \arg \b TEXT: Text messages 00056 \arg \b HTML: URL's and web pages 00057 \arg \b MODEM: Modulated data encodings, such as T.38 and V.150 00058 \arg \b IAX: Private frame type for the IAX protocol 00059 \arg \b CNG: Comfort noice frames 00060 \arg \b CONTROL: A control frame, subclass defined as AST_CONTROL_ 00061 \arg \b NULL: Empty, useless frame 00062 00063 \par Files 00064 \arg frame.h Definitions 00065 \arg frame.c Function library 00066 \arg \ref Def_Channel Asterisk channels 00067 \section Def_ControlFrame Control Frames 00068 Control frames send signalling information between channels 00069 and devices. They are prefixed with AST_CONTROL_, like AST_CONTROL_FRAME_HANGUP 00070 \arg \b HANGUP The other end has hungup 00071 \arg \b RING Local ring 00072 \arg \b RINGING The other end is ringing 00073 \arg \b ANSWER The other end has answered 00074 \arg \b BUSY Remote end is busy 00075 \arg \b TAKEOFFHOOK Make it go off hook (what's "it" ? ) 00076 \arg \b OFFHOOK Line is off hook 00077 \arg \b CONGESTION Congestion (circuit is busy, not available) 00078 \arg \b FLASH Other end sends flash hook 00079 \arg \b WINK Other end sends wink 00080 \arg \b OPTION Send low-level option 00081 \arg \b RADIO_KEY Key radio (see app_rpt.c) 00082 \arg \b RADIO_UNKEY Un-key radio (see app_rpt.c) 00083 \arg \b PROGRESS Other end indicates call progress 00084 \arg \b PROCEEDING Indicates proceeding 00085 \arg \b HOLD Call is placed on hold 00086 \arg \b UNHOLD Call is back from hold 00087 \arg \b VIDUPDATE Video update requested 00088 \arg \b SRCUPDATE The source of media has changed 00089 \arg \b SRCCHANGE Media source has changed (RTP marker bit and SSRC must change) 00090 00091 */ 00092 00093 /*! 00094 * \brief Frame types 00095 * 00096 * \note It is important that the values of each frame type are never changed, 00097 * because it will break backwards compatability with older versions. 00098 */ 00099 enum ast_frame_type { 00100 /*! DTMF end event, subclass is the digit */ 00101 AST_FRAME_DTMF_END = 1, 00102 /*! Voice data, subclass is AST_FORMAT_* */ 00103 AST_FRAME_VOICE, 00104 /*! Video frame, maybe?? :) */ 00105 AST_FRAME_VIDEO, 00106 /*! A control frame, subclass is AST_CONTROL_* */ 00107 AST_FRAME_CONTROL, 00108 /*! An empty, useless frame */ 00109 AST_FRAME_NULL, 00110 /*! Inter Asterisk Exchange private frame type */ 00111 AST_FRAME_IAX, 00112 /*! Text messages */ 00113 AST_FRAME_TEXT, 00114 /*! Image Frames */ 00115 AST_FRAME_IMAGE, 00116 /*! HTML Frame */ 00117 AST_FRAME_HTML, 00118 /*! Comfort Noise frame (subclass is level of CNG in -dBov), 00119 body may include zero or more 8-bit quantization coefficients */ 00120 AST_FRAME_CNG, 00121 /*! Modem-over-IP data streams */ 00122 AST_FRAME_MODEM, 00123 /*! DTMF begin event, subclass is the digit */ 00124 AST_FRAME_DTMF_BEGIN, 00125 }; 00126 #define AST_FRAME_DTMF AST_FRAME_DTMF_END 00127 00128 enum { 00129 /*! This frame contains valid timing information */ 00130 AST_FRFLAG_HAS_TIMING_INFO = (1 << 0), 00131 /*! This frame came from a translator and is still the original frame. 00132 * The translator can not be free'd if the frame inside of it still has 00133 * this flag set. */ 00134 AST_FRFLAG_FROM_TRANSLATOR = (1 << 1), 00135 /*! This frame came from a dsp and is still the original frame. 00136 * The dsp cannot be free'd if the frame inside of it still has 00137 * this flag set. */ 00138 AST_FRFLAG_FROM_DSP = (1 << 2), 00139 }; 00140 00141 /*! \brief Data structure associated with a single frame of data 00142 */ 00143 struct ast_frame { 00144 /*! Kind of frame */ 00145 enum ast_frame_type frametype; 00146 /*! Subclass, frame dependent */ 00147 int subclass; 00148 /*! Length of data */ 00149 int datalen; 00150 /*! Number of 8khz samples in this frame */ 00151 int samples; 00152 /*! Was the data malloc'd? i.e. should we free it when we discard the frame? */ 00153 int mallocd; 00154 /*! The number of bytes allocated for a malloc'd frame header */ 00155 size_t mallocd_hdr_len; 00156 /*! How many bytes exist _before_ "data" that can be used if needed */ 00157 int offset; 00158 /*! Optional source of frame for debugging */ 00159 const char *src; 00160 /*! Pointer to actual data */ 00161 void *data; 00162 /*! Global delivery time */ 00163 struct timeval delivery; 00164 /*! For placing in a linked list */ 00165 AST_LIST_ENTRY(ast_frame) frame_list; 00166 /*! Misc. frame flags */ 00167 unsigned int flags; 00168 /*! Timestamp in milliseconds */ 00169 long ts; 00170 /*! Length in milliseconds */ 00171 long len; 00172 /*! Sequence number */ 00173 int seqno; 00174 }; 00175 00176 /*! 00177 * Set the various field of a frame to point to a buffer. 00178 * Typically you set the base address of the buffer, the offset as 00179 * AST_FRIENDLY_OFFSET, and the datalen as the amount of bytes queued. 00180 * The remaining things (to be done manually) is set the number of 00181 * samples, which cannot be derived from the datalen unless you know 00182 * the number of bits per sample. 00183 */ 00184 #define AST_FRAME_SET_BUFFER(fr, _base, _ofs, _datalen) \ 00185 { \ 00186 (fr)->data = (char *)_base + (_ofs); \ 00187 (fr)->offset = (_ofs); \ 00188 (fr)->datalen = (_datalen); \ 00189 } 00190 00191 /*! Queueing a null frame is fairly common, so we declare a global null frame object 00192 for this purpose instead of having to declare one on the stack */ 00193 extern struct ast_frame ast_null_frame; 00194 00195 #define AST_FRIENDLY_OFFSET 64 /*! It's polite for a a new frame to 00196 have this number of bytes for additional 00197 headers. */ 00198 #define AST_MIN_OFFSET 32 /*! Make sure we keep at least this much handy */ 00199 00200 /*! Need the header be free'd? */ 00201 #define AST_MALLOCD_HDR (1 << 0) 00202 /*! Need the data be free'd? */ 00203 #define AST_MALLOCD_DATA (1 << 1) 00204 /*! Need the source be free'd? (haha!) */ 00205 #define AST_MALLOCD_SRC (1 << 2) 00206 00207 /* MODEM subclasses */ 00208 /*! T.38 Fax-over-IP */ 00209 #define AST_MODEM_T38 1 00210 /*! V.150 Modem-over-IP */ 00211 #define AST_MODEM_V150 2 00212 00213 /* HTML subclasses */ 00214 /*! Sending a URL */ 00215 #define AST_HTML_URL 1 00216 /*! Data frame */ 00217 #define AST_HTML_DATA 2 00218 /*! Beginning frame */ 00219 #define AST_HTML_BEGIN 4 00220 /*! End frame */ 00221 #define AST_HTML_END 8 00222 /*! Load is complete */ 00223 #define AST_HTML_LDCOMPLETE 16 00224 /*! Peer is unable to support HTML */ 00225 #define AST_HTML_NOSUPPORT 17 00226 /*! Send URL, and track */ 00227 #define AST_HTML_LINKURL 18 00228 /*! No more HTML linkage */ 00229 #define AST_HTML_UNLINK 19 00230 /*! Reject link request */ 00231 #define AST_HTML_LINKREJECT 20 00232 00233 /* Data formats for capabilities and frames alike */ 00234 /*! G.723.1 compression */ 00235 #define AST_FORMAT_G723_1 (1 << 0) 00236 /*! GSM compression */ 00237 #define AST_FORMAT_GSM (1 << 1) 00238 /*! Raw mu-law data (G.711) */ 00239 #define AST_FORMAT_ULAW (1 << 2) 00240 /*! Raw A-law data (G.711) */ 00241 #define AST_FORMAT_ALAW (1 << 3) 00242 /*! ADPCM (G.726, 32kbps, AAL2 codeword packing) */ 00243 #define AST_FORMAT_G726_AAL2 (1 << 4) 00244 /*! ADPCM (IMA) */ 00245 #define AST_FORMAT_ADPCM (1 << 5) 00246 /*! Raw 16-bit Signed Linear (8000 Hz) PCM */ 00247 #define AST_FORMAT_SLINEAR (1 << 6) 00248 /*! LPC10, 180 samples/frame */ 00249 #define AST_FORMAT_LPC10 (1 << 7) 00250 /*! G.729A audio */ 00251 #define AST_FORMAT_G729A (1 << 8) 00252 /*! SpeeX Free Compression */ 00253 #define AST_FORMAT_SPEEX (1 << 9) 00254 /*! iLBC Free Compression */ 00255 #define AST_FORMAT_ILBC (1 << 10) 00256 /*! ADPCM (G.726, 32kbps, RFC3551 codeword packing) */ 00257 #define AST_FORMAT_G726 (1 << 11) 00258 /*! G.722 */ 00259 #define AST_FORMAT_G722 (1 << 12) 00260 /*! Maximum audio format */ 00261 #define AST_FORMAT_MAX_AUDIO (1 << 15) 00262 /*! Maximum audio mask */ 00263 #define AST_FORMAT_AUDIO_MASK ((1 << 16)-1) 00264 /*! JPEG Images */ 00265 #define AST_FORMAT_JPEG (1 << 16) 00266 /*! PNG Images */ 00267 #define AST_FORMAT_PNG (1 << 17) 00268 /*! H.261 Video */ 00269 #define AST_FORMAT_H261 (1 << 18) 00270 /*! H.263 Video */ 00271 #define AST_FORMAT_H263 (1 << 19) 00272 /*! H.263+ Video */ 00273 #define AST_FORMAT_H263_PLUS (1 << 20) 00274 /*! H.264 Video */ 00275 #define AST_FORMAT_H264 (1 << 21) 00276 /*! Maximum video format */ 00277 #define AST_FORMAT_MAX_VIDEO (1 << 24) 00278 #define AST_FORMAT_VIDEO_MASK (((1 << 25)-1) & ~(AST_FORMAT_AUDIO_MASK)) 00279 00280 enum ast_control_frame_type { 00281 AST_CONTROL_HANGUP = 1, /*!< Other end has hungup */ 00282 AST_CONTROL_RING = 2, /*!< Local ring */ 00283 AST_CONTROL_RINGING = 3, /*!< Remote end is ringing */ 00284 AST_CONTROL_ANSWER = 4, /*!< Remote end has answered */ 00285 AST_CONTROL_BUSY = 5, /*!< Remote end is busy */ 00286 AST_CONTROL_TAKEOFFHOOK = 6, /*!< Make it go off hook */ 00287 AST_CONTROL_OFFHOOK = 7, /*!< Line is off hook */ 00288 AST_CONTROL_CONGESTION = 8, /*!< Congestion (circuits busy) */ 00289 AST_CONTROL_FLASH = 9, /*!< Flash hook */ 00290 AST_CONTROL_WINK = 10, /*!< Wink */ 00291 AST_CONTROL_OPTION = 11, /*!< Set a low-level option */ 00292 AST_CONTROL_RADIO_KEY = 12, /*!< Key Radio */ 00293 AST_CONTROL_RADIO_UNKEY = 13, /*!< Un-Key Radio */ 00294 AST_CONTROL_PROGRESS = 14, /*!< Indicate PROGRESS */ 00295 AST_CONTROL_PROCEEDING = 15, /*!< Indicate CALL PROCEEDING */ 00296 AST_CONTROL_HOLD = 16, /*!< Indicate call is placed on hold */ 00297 AST_CONTROL_UNHOLD = 17, /*!< Indicate call is left from hold */ 00298 AST_CONTROL_VIDUPDATE = 18, /*!< Indicate video frame update */ 00299 AST_CONTROL_SRCUPDATE = 20, /*!< Indicate source of media has changed */ 00300 AST_CONTROL_SRCCHANGE = 21, /*!< Media has changed and requires a new RTP SSRC */ 00301 }; 00302 00303 #define AST_SMOOTHER_FLAG_G729 (1 << 0) 00304 #define AST_SMOOTHER_FLAG_BE (1 << 1) 00305 00306 /* Option identifiers and flags */ 00307 #define AST_OPTION_FLAG_REQUEST 0 00308 #define AST_OPTION_FLAG_ACCEPT 1 00309 #define AST_OPTION_FLAG_REJECT 2 00310 #define AST_OPTION_FLAG_QUERY 4 00311 #define AST_OPTION_FLAG_ANSWER 5 00312 #define AST_OPTION_FLAG_WTF 6 00313 00314 /*! Verify touchtones by muting audio transmission 00315 (and reception) and verify the tone is still present */ 00316 #define AST_OPTION_TONE_VERIFY 1 00317 00318 /*! Put a compatible channel into TDD (TTY for the hearing-impared) mode */ 00319 #define AST_OPTION_TDD 2 00320 00321 /*! Relax the parameters for DTMF reception (mainly for radio use) */ 00322 #define AST_OPTION_RELAXDTMF 3 00323 00324 /*! Set (or clear) Audio (Not-Clear) Mode */ 00325 #define AST_OPTION_AUDIO_MODE 4 00326 00327 /*! Set channel transmit gain 00328 * Option data is a single signed char 00329 representing number of decibels (dB) 00330 to set gain to (on top of any gain 00331 specified in channel driver) 00332 */ 00333 #define AST_OPTION_TXGAIN 5 00334 00335 /*! Set channel receive gain 00336 * Option data is a single signed char 00337 representing number of decibels (dB) 00338 to set gain to (on top of any gain 00339 specified in channel driver) 00340 */ 00341 #define AST_OPTION_RXGAIN 6 00342 00343 /* set channel into "Operator Services" mode */ 00344 #define AST_OPTION_OPRMODE 7 00345 00346 /*! Explicitly enable or disable echo cancelation for the given channel */ 00347 #define AST_OPTION_ECHOCAN 8 00348 00349 struct oprmode { 00350 struct ast_channel *peer; 00351 int mode; 00352 } ; 00353 00354 struct ast_option_header { 00355 /* Always keep in network byte order */ 00356 #if __BYTE_ORDER == __BIG_ENDIAN 00357 uint16_t flag:3; 00358 uint16_t option:13; 00359 #else 00360 #if __BYTE_ORDER == __LITTLE_ENDIAN 00361 uint16_t option:13; 00362 uint16_t flag:3; 00363 #else 00364 #error Byte order not defined 00365 #endif 00366 #endif 00367 uint8_t data[0]; 00368 }; 00369 00370 00371 /*! \brief Definition of supported media formats (codecs) */ 00372 struct ast_format_list { 00373 int visible; /*!< Can we see this entry */ 00374 int bits; /*!< bitmask value */ 00375 char *name; /*!< short name */ 00376 char *desc; /*!< Description */ 00377 int fr_len; /*!< Single frame length in bytes */ 00378 int min_ms; /*!< Min value */ 00379 int max_ms; /*!< Max value */ 00380 int inc_ms; /*!< Increment */ 00381 int def_ms; /*!< Default value */ 00382 unsigned int flags; /*!< Smoother flags */ 00383 int cur_ms; /*!< Current value */ 00384 }; 00385 00386 00387 /*! \brief Requests a frame to be allocated 00388 * 00389 * \param source 00390 * Request a frame be allocated. source is an optional source of the frame, 00391 * len is the requested length, or "0" if the caller will supply the buffer 00392 */ 00393 #if 0 /* Unimplemented */ 00394 struct ast_frame *ast_fralloc(char *source, int len); 00395 #endif 00396 00397 /*! 00398 * \brief Frees a frame 00399 * 00400 * \param fr Frame to free 00401 * \param cache Whether to consider this frame for frame caching 00402 */ 00403 void ast_frame_free(struct ast_frame *fr, int cache); 00404 00405 #define ast_frfree(fr) ast_frame_free(fr, 1) 00406 00407 /*! \brief Makes a frame independent of any static storage 00408 * \param fr frame to act upon 00409 * Take a frame, and if it's not been malloc'd, make a malloc'd copy 00410 * and if the data hasn't been malloced then make the 00411 * data malloc'd. If you need to store frames, say for queueing, then 00412 * you should call this function. 00413 * \return Returns a frame on success, NULL on error 00414 */ 00415 struct ast_frame *ast_frisolate(struct ast_frame *fr); 00416 00417 /*! \brief Copies a frame 00418 * \param fr frame to copy 00419 * Duplicates a frame -- should only rarely be used, typically frisolate is good enough 00420 * \return Returns a frame on success, NULL on error 00421 */ 00422 struct ast_frame *ast_frdup(const struct ast_frame *fr); 00423 00424 void ast_swapcopy_samples(void *dst, const void *src, int samples); 00425 00426 /* Helpers for byteswapping native samples to/from 00427 little-endian and big-endian. */ 00428 #if __BYTE_ORDER == __LITTLE_ENDIAN 00429 #define ast_frame_byteswap_le(fr) do { ; } while(0) 00430 #define ast_frame_byteswap_be(fr) do { struct ast_frame *__f = (fr); ast_swapcopy_samples(__f->data, __f->data, __f->samples); } while(0) 00431 #else 00432 #define ast_frame_byteswap_le(fr) do { struct ast_frame *__f = (fr); ast_swapcopy_samples(__f->data, __f->data, __f->samples); } while(0) 00433 #define ast_frame_byteswap_be(fr) do { ; } while(0) 00434 #endif 00435 00436 00437 /*! \brief Get the name of a format 00438 * \param format id of format 00439 * \return A static string containing the name of the format or "unknown" if unknown. 00440 */ 00441 char* ast_getformatname(int format); 00442 00443 /*! \brief Get the names of a set of formats 00444 * \param buf a buffer for the output string 00445 * \param size size of buf (bytes) 00446 * \param format the format (combined IDs of codecs) 00447 * Prints a list of readable codec names corresponding to "format". 00448 * ex: for format=AST_FORMAT_GSM|AST_FORMAT_SPEEX|AST_FORMAT_ILBC it will return "0x602 (GSM|SPEEX|ILBC)" 00449 * \return The return value is buf. 00450 */ 00451 char* ast_getformatname_multiple(char *buf, size_t size, int format); 00452 00453 /*! 00454 * \brief Gets a format from a name. 00455 * \param name string of format 00456 * \return This returns the form of the format in binary on success, 0 on error. 00457 */ 00458 int ast_getformatbyname(const char *name); 00459 00460 /*! \brief Get a name from a format 00461 * Gets a name from a format 00462 * \param codec codec number (1,2,4,8,16,etc.) 00463 * \return This returns a static string identifying the format on success, 0 on error. 00464 */ 00465 char *ast_codec2str(int codec); 00466 00467 struct ast_smoother; 00468 00469 struct ast_format_list *ast_get_format_list_index(int index); 00470 struct ast_format_list *ast_get_format_list(size_t *size); 00471 struct ast_smoother *ast_smoother_new(int bytes); 00472 void ast_smoother_set_flags(struct ast_smoother *smoother, int flags); 00473 int ast_smoother_get_flags(struct ast_smoother *smoother); 00474 int ast_smoother_test_flag(struct ast_smoother *s, int flag); 00475 void ast_smoother_free(struct ast_smoother *s); 00476 void ast_smoother_reset(struct ast_smoother *s, int bytes); 00477 int __ast_smoother_feed(struct ast_smoother *s, struct ast_frame *f, int swap); 00478 struct ast_frame *ast_smoother_read(struct ast_smoother *s); 00479 #define ast_smoother_feed(s,f) __ast_smoother_feed(s, f, 0) 00480 #if __BYTE_ORDER == __LITTLE_ENDIAN 00481 #define ast_smoother_feed_be(s,f) __ast_smoother_feed(s, f, 1) 00482 #define ast_smoother_feed_le(s,f) __ast_smoother_feed(s, f, 0) 00483 #else 00484 #define ast_smoother_feed_be(s,f) __ast_smoother_feed(s, f, 0) 00485 #define ast_smoother_feed_le(s,f) __ast_smoother_feed(s, f, 1) 00486 #endif 00487 00488 void ast_frame_dump(const char *name, struct ast_frame *f, char *prefix); 00489 00490 /*! \page AudioCodecPref Audio Codec Preferences 00491 In order to negotiate audio codecs in the order they are configured 00492 in <channel>.conf for a device, we set up codec preference lists 00493 in addition to the codec capabilities setting. The capabilities 00494 setting is a bitmask of audio and video codecs with no internal 00495 order. This will reflect the offer given to the other side, where 00496 the prefered codecs will be added to the top of the list in the 00497 order indicated by the "allow" lines in the device configuration. 00498 00499 Video codecs are not included in the preference lists since they 00500 can't be transcoded and we just have to pick whatever is supported 00501 */ 00502 00503 /*! \brief Initialize an audio codec preference to "no preference" See \ref AudioCodecPref */ 00504 void ast_codec_pref_init(struct ast_codec_pref *pref); 00505 00506 /*! \brief Codec located at a particular place in the preference index See \ref AudioCodecPref */ 00507 int ast_codec_pref_index(struct ast_codec_pref *pref, int index); 00508 00509 /*! \brief Remove audio a codec from a preference list */ 00510 void ast_codec_pref_remove(struct ast_codec_pref *pref, int format); 00511 00512 /*! \brief Append a audio codec to a preference list, removing it first if it was already there 00513 */ 00514 int ast_codec_pref_append(struct ast_codec_pref *pref, int format); 00515 00516 /*! \brief Prepend an audio codec to a preference list, removing it first if it was already there 00517 */ 00518 void ast_codec_pref_prepend(struct ast_codec_pref *pref, int format, int only_if_existing); 00519 00520 /*! \brief Select the best audio format according to preference list from supplied options. 00521 If "find_best" is non-zero then if nothing is found, the "Best" format of 00522 the format list is selected, otherwise 0 is returned. */ 00523 int ast_codec_choose(struct ast_codec_pref *pref, int formats, int find_best); 00524 00525 /*! \brief Set packet size for codec 00526 */ 00527 int ast_codec_pref_setsize(struct ast_codec_pref *pref, int format, int framems); 00528 00529 /*! \brief Get packet size for codec 00530 */ 00531 struct ast_format_list ast_codec_pref_getsize(struct ast_codec_pref *pref, int format); 00532 00533 /*! \brief Parse an "allow" or "deny" line in a channel or device configuration 00534 and update the capabilities mask and pref if provided. 00535 Video codecs are not added to codec preference lists, since we can not transcode 00536 */ 00537 void ast_parse_allow_disallow(struct ast_codec_pref *pref, int *mask, const char *list, int allowing); 00538 00539 /*! \brief Dump audio codec preference list into a string */ 00540 int ast_codec_pref_string(struct ast_codec_pref *pref, char *buf, size_t size); 00541 00542 /*! \brief Shift an audio codec preference list up or down 65 bytes so that it becomes an ASCII string */ 00543 void ast_codec_pref_convert(struct ast_codec_pref *pref, char *buf, size_t size, int right); 00544 00545 /*! \brief Returns the number of samples contained in the frame */ 00546 int ast_codec_get_samples(struct ast_frame *f); 00547 00548 /*! \brief Returns the number of bytes for the number of samples of the given format */ 00549 int ast_codec_get_len(int format, int samples); 00550 00551 /*! \brief Appends a frame to the end of a list of frames, truncating the maximum length of the list */ 00552 struct ast_frame *ast_frame_enqueue(struct ast_frame *head, struct ast_frame *f, int maxlen, int dupe); 00553 00554 00555 /*! \brief Gets duration in ms of interpolation frame for a format */ 00556 static inline int ast_codec_interp_len(int format) 00557 { 00558 return (format == AST_FORMAT_ILBC) ? 30 : 20; 00559 } 00560 00561 /*! 00562 \brief Adjusts the volume of the audio samples contained in a frame. 00563 \param f The frame containing the samples (must be AST_FRAME_VOICE and AST_FORMAT_SLINEAR) 00564 \param adjustment The number of dB to adjust up or down. 00565 \return 0 for success, non-zero for an error 00566 */ 00567 int ast_frame_adjust_volume(struct ast_frame *f, int adjustment); 00568 00569 /*! 00570 \brief Sums two frames of audio samples. 00571 \param f1 The first frame (which will contain the result) 00572 \param f2 The second frame 00573 \return 0 for success, non-zero for an error 00574 00575 The frames must be AST_FRAME_VOICE and must contain AST_FORMAT_SLINEAR samples, 00576 and must contain the same number of samples. 00577 */ 00578 int ast_frame_slinear_sum(struct ast_frame *f1, struct ast_frame *f2); 00579 00580 /*! 00581 * \brief Get the sample rate for a given format. 00582 */ 00583 static force_inline int ast_format_rate(int format) 00584 { 00585 if (format == AST_FORMAT_G722) 00586 return 16000; 00587 00588 return 8000; 00589 } 00590 00591 #if defined(__cplusplus) || defined(c_plusplus) 00592 } 00593 #endif 00594 00595 #endif /* _ASTERISK_FRAME_H */