diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-10-05 20:12:20 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-10-05 20:12:20 +0000 |
commit | da708eaa22bfb5e884e996a0a11a05055583a5b0 (patch) | |
tree | 8b28ebe6bfe4a3210f39ee2e38a4727bcbdaeff2 /libavcodec/mace.c | |
parent | 10c1d19212c2e74c9eae915defee4948f9a6be02 (diff) | |
download | ffmpeg-da708eaa22bfb5e884e996a0a11a05055583a5b0.tar.gz |
Cosmetics: rename mace3_decode_frame() to mace_decode_frame()
Originally committed as revision 15569 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mace.c')
-rw-r--r-- | libavcodec/mace.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/mace.c b/libavcodec/mace.c index 94646106c3..10c3f637ed 100644 --- a/libavcodec/mace.c +++ b/libavcodec/mace.c @@ -234,7 +234,7 @@ static av_cold int mace_decode_init(AVCodecContext * avctx) return 0; } -static int mace3_decode_frame(AVCodecContext *avctx, +static int mace_decode_frame(AVCodecContext *avctx, void *data, int *data_size, const uint8_t *buf, int buf_size) { @@ -285,7 +285,7 @@ AVCodec mace3_decoder = { mace_decode_init, NULL, NULL, - mace3_decode_frame, + mace_decode_frame, .long_name = NULL_IF_CONFIG_SMALL("MACE (Macintosh Audio Compression/Expansion) 3:1"), }; @@ -297,7 +297,7 @@ AVCodec mace6_decoder = { mace_decode_init, NULL, NULL, - mace3_decode_frame, + mace_decode_frame, .long_name = NULL_IF_CONFIG_SMALL("MACE (Macintosh Audio Compression/Expansion) 6:1"), }; |