diff options
author | Vladimir Voroshilov <voroshil@gmail.com> | 2009-06-06 12:42:11 +0000 |
---|---|---|
committer | Vladimir Voroshilov <voroshil@gmail.com> | 2009-06-06 12:42:11 +0000 |
commit | 3bbc46102b54f7ac7c764c03e8718331b577797d (patch) | |
tree | 57f77464476c66482b979cf41267ca325d64c894 /libavcodec/g729dec.c | |
parent | 532ec283608ca0f7f9b575df498785e144ac768a (diff) | |
download | ffmpeg-3bbc46102b54f7ac7c764c03e8718331b577797d.tar.gz |
Convert structure names to FFmpeg style
Originally committed as revision 19123 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/g729dec.c')
-rw-r--r-- | libavcodec/g729dec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/g729dec.c b/libavcodec/g729dec.c index a8178a2f6c..b92ca1da67 100644 --- a/libavcodec/g729dec.c +++ b/libavcodec/g729dec.c @@ -80,7 +80,7 @@ typedef struct /// mr_energy = mean_energy + 10 * log10(2^26 * subframe_size) in (7.13) int mr_energy; -} G729_format_description; +} G729FormatDescription; /** * \brief pseudo random number generator @@ -154,7 +154,7 @@ AVCodec g729_decoder = "g729", CODEC_TYPE_AUDIO, CODEC_ID_G729, - sizeof(G729_Context), + sizeof(G729Context), decoder_init, NULL, NULL, |