[FFmpeg-cvslog] r13623 - trunk/libavcodec/parser.c

michael subversion
Mon Jun 2 15:12:54 CEST 2008


Author: michael
Date: Mon Jun  2 15:12:54 2008
New Revision: 13623

Log:
Allow matching timestamps to be removed by fetch_timestamp().


Modified:
   trunk/libavcodec/parser.c

Modified: trunk/libavcodec/parser.c
==============================================================================
--- trunk/libavcodec/parser.c	(original)
+++ trunk/libavcodec/parser.c	Mon Jun  2 15:12:54 2008
@@ -76,7 +76,7 @@ AVCodecParserContext *av_parser_init(int
     return s;
 }
 
-void ff_fetch_timestamp(AVCodecParserContext *s, int off){
+void ff_fetch_timestamp(AVCodecParserContext *s, int off, int remove){
     int i;
     s->dts= s->pts= AV_NOPTS_VALUE;
     s->offset= 0;
@@ -87,6 +87,8 @@ void ff_fetch_timestamp(AVCodecParserCon
             s->dts= s->cur_frame_dts[i];
             s->pts= s->cur_frame_pts[i];
             s->offset = s->next_frame_offset - s->cur_frame_offset[i];
+            if(remove)
+                s->cur_frame_offset[i]= INT64_MAX;
         }
     }
 }
@@ -142,7 +144,7 @@ int av_parser_parse(AVCodecParserContext
         s->fetch_timestamp=0;
         s->last_pts = s->pts;
         s->last_dts = s->dts;
-        ff_fetch_timestamp(s, 0);
+        ff_fetch_timestamp(s, 0, 0);
     }
 
     /* WARNING: the returned index can be negative */




More information about the ffmpeg-cvslog mailing list