]> git.sesse.net Git - ffmpeg/commitdiff
Cosmetics: rename mace3_decode_frame() to mace_decode_frame()
authorVitor Sessak <vitor1001@gmail.com>
Sun, 5 Oct 2008 20:12:20 +0000 (20:12 +0000)
committerVitor Sessak <vitor1001@gmail.com>
Sun, 5 Oct 2008 20:12:20 +0000 (20:12 +0000)
Originally committed as revision 15569 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/mace.c

index 94646106c3aa9bd35ae3d4f7c76ba6cfb4dc85b3..10c3f637ed00669b6c35e59c093f54bce22f5d1d 100644 (file)
@@ -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"),
 };