[FFmpeg-cvslog] mpeg4video_parser: Drop pointless av_-prefix from static function

Diego Biurrun git at videolan.org
Thu Feb 20 15:47:26 CET 2014


ffmpeg | branch: master | Diego Biurrun <diego at biurrun.de> | Thu Feb 20 02:27:21 2014 -0800| [4bcca3611da24583dfbb8a1cc4c404a7deaa5590] | committer: Diego Biurrun

mpeg4video_parser: Drop pointless av_-prefix from static function

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=4bcca3611da24583dfbb8a1cc4c404a7deaa5590
---

 libavcodec/mpeg4video_parser.c |    7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/libavcodec/mpeg4video_parser.c b/libavcodec/mpeg4video_parser.c
index a5689aa..246bb9c 100644
--- a/libavcodec/mpeg4video_parser.c
+++ b/libavcodec/mpeg4video_parser.c
@@ -71,9 +71,8 @@ int ff_mpeg4_find_frame_end(ParseContext *pc, const uint8_t *buf, int buf_size)
 }
 
 /* XXX: make it use less memory */
-static int av_mpeg4_decode_header(AVCodecParserContext *s1,
-                                  AVCodecContext *avctx,
-                                  const uint8_t *buf, int buf_size)
+static int mpeg4_decode_header(AVCodecParserContext *s1, AVCodecContext *avctx,
+                               const uint8_t *buf, int buf_size)
 {
     struct Mp4vParseContext *pc = s1->priv_data;
     Mpeg4DecContext *dec_ctx = &pc->dec_ctx;
@@ -130,7 +129,7 @@ static int mpeg4video_parse(AVCodecParserContext *s,
             return buf_size;
         }
     }
-    av_mpeg4_decode_header(s, avctx, buf, buf_size);
+    mpeg4_decode_header(s, avctx, buf, buf_size);
 
     *poutbuf      = buf;
     *poutbuf_size = buf_size;



More information about the ffmpeg-cvslog mailing list