summaryrefslogtreecommitdiff
path: root/libavcodec/g729dec.c
diff options
context:
space:
mode:
authorVladimir Voroshilov <voroshil@gmail.com>2009-06-05 17:11:46 +0000
committerVladimir Voroshilov <voroshil@gmail.com>2009-06-05 17:11:46 +0000
commit8dbd0a95eea3b30dcef8ab4d0424b624f982313a (patch)
tree5934aa39e6e1c1b0192ddb3e69f0359cb2517c2b /libavcodec/g729dec.c
parent0b175caac811f3d1ee8a9b08b6e4754fed5cb7e3 (diff)
Remove ff_g729_ and g729_ prefixes from static routines.
Originally committed as revision 19118 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/g729dec.c')
-rw-r--r--libavcodec/g729dec.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/g729dec.c b/libavcodec/g729dec.c
index 78444c1c09..488970f847 100644
--- a/libavcodec/g729dec.c
+++ b/libavcodec/g729dec.c
@@ -85,7 +85,7 @@ typedef struct
/**
* \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 @@ static inline uint16_t g729_random(uint16_t value)
/**
* 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 @@ AVCodec g729_decoder =
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"),
};