]> git.sesse.net Git - ffmpeg/commitdiff
Fetch timestamp for the first frame of field only if frame_offset and
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>
Sun, 21 Jun 2009 03:50:26 +0000 (03:50 +0000)
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>
Sun, 21 Jun 2009 03:50:26 +0000 (03:50 +0000)
next_frame_offset are not set, because second field has next frame offset set
but not frame_offset, otherwise this wrongly fetch timestamp for the
second field.

Originally committed as revision 19244 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/parser.c

index 69215a47d0b71af0ab34b9aa51d5ea1bfa879e99..0b007e9ee4bce8fa63f4092328fd443c2220d0e2 100644 (file)
@@ -89,7 +89,8 @@ void ff_fetch_timestamp(AVCodecParserContext *s, int off, int remove){
     s->offset= 0;
     for(i = 0; i < AV_PARSER_PTS_NB; i++) {
         if (   s->cur_offset + off >= s->cur_frame_offset[i]
-            &&(s->     frame_offset       <  s->cur_frame_offset[i] || !s->frame_offset)
+            && (s->frame_offset < s->cur_frame_offset[i] ||
+              (!s->frame_offset && !s->next_frame_offset)) // first field/frame
             //check is disabled  becausue mpeg-ts doesnt send complete PES packets
             && /*s->next_frame_offset + off <*/  s->cur_frame_end[i]){
             s->dts= s->cur_frame_dts[i];