# HG changeset patch # User voroshil # Date 1244221906 0 # Node ID fbc565735c4d62f41080cc849aae519d6144ad30 # Parent 038c7940a21e67ec439cf46fefe1fe1f6d7ea8d3 Remove ff_g729_ and g729_ prefixes from static routines. diff -r 038c7940a21e -r fbc565735c4d g729dec.c --- a/g729dec.c Fri Jun 05 12:32:40 2009 +0000 +++ b/g729dec.c Fri Jun 05 17:11:46 2009 +0000 @@ -85,7 +85,7 @@ /** * \brief pseudo random number generator */ -static inline uint16_t g729_random(uint16_t value) +static inline uint16_t random(uint16_t value) { return 31821 * value + 13849; } @@ -93,7 +93,7 @@ /** * Get parity bit of bit 2..7 */ -static inline int g729_get_parity(uint8_t value) +static inline int get_parity(uint8_t value) { return (0x6996966996696996ULL >> (value >> 2)) & 1; } @@ -155,9 +155,9 @@ CODEC_TYPE_AUDIO, CODEC_ID_G729, sizeof(G729_Context), - ff_g729_decoder_init, + decoder_init, NULL, NULL, - ff_g729_decode_frame, + decode_frame, .long_name = NULL_IF_CONFIG_SMALL("G.729"), };