]> git.sesse.net Git - ffmpeg/commitdiff
mpeg4video_parser: Drop pointless av_-prefix from static function
authorDiego Biurrun <diego@biurrun.de>
Thu, 20 Feb 2014 10:27:21 +0000 (02:27 -0800)
committerDiego Biurrun <diego@biurrun.de>
Thu, 20 Feb 2014 12:16:15 +0000 (04:16 -0800)
libavcodec/mpeg4video_parser.c

index a5689aa9d239874633d486d7ac3d2396dd9b59ae..246bb9ca4e7e7ff814a12fb55375789d7f720e8a 100644 (file)
@@ -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;