diff mpegvideo_parser.c @ 4916:13ef168891b0 libavcodec

add a ff_ prefix to the now exported mpeg1_find_frame_end() function
author aurel
date Sat, 05 May 2007 18:25:02 +0000
parents c22e10113015
children 0d1cc37d9430
line wrap: on
line diff
--- a/mpegvideo_parser.c	Sat May 05 18:18:51 2007 +0000
+++ b/mpegvideo_parser.c	Sat May 05 18:25:02 2007 +0000
@@ -138,7 +138,7 @@
     if(s->flags & PARSER_FLAG_COMPLETE_FRAMES){
         next= buf_size;
     }else{
-        next= mpeg1_find_frame_end(pc, buf, buf_size);
+        next= ff_mpeg1_find_frame_end(pc, buf, buf_size);
 
         if (ff_combine_frame(pc, next, (uint8_t **)&buf, &buf_size) < 0) {
             *poutbuf = NULL;