[FFmpeg-cvslog] r15569 - trunk/libavcodec/mace.c

vitor subversion
Sun Oct 5 22:12:21 CEST 2008


Author: vitor
Date: Sun Oct  5 22:12:20 2008
New Revision: 15569

Log:
Cosmetics: rename mace3_decode_frame() to mace_decode_frame()


Modified:
   trunk/libavcodec/mace.c

Modified: trunk/libavcodec/mace.c
==============================================================================
--- trunk/libavcodec/mace.c	(original)
+++ trunk/libavcodec/mace.c	Sun Oct  5 22:12:20 2008
@@ -234,7 +234,7 @@ static av_cold int mace_decode_init(AVCo
     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"),
 };
 




More information about the ffmpeg-cvslog mailing list