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

michael subversion
Mon Jun 2 16:40:28 CEST 2008


Author: michael
Date: Mon Jun  2 16:40:27 2008
New Revision: 13626

Log:
Our MPEG-TS demuser does not sent complete PES packets but sends them
piecewise, thus the end values cannot be used for associating timestamps.


Modified:
   trunk/libavcodec/parser.c

Modified: trunk/libavcodec/parser.c
==============================================================================
--- trunk/libavcodec/parser.c	(original)
+++ trunk/libavcodec/parser.c	Mon Jun  2 16:40:27 2008
@@ -84,7 +84,8 @@ void ff_fetch_timestamp(AVCodecParserCon
     for(i = 0; i < AV_PARSER_PTS_NB; i++) {
         if (   s->next_frame_offset + off >= s->cur_frame_offset[i]
             &&(s->     frame_offset       <  s->cur_frame_offset[i] || !s->frame_offset)
-            && s->next_frame_offset + off <  s->cur_frame_end[i]){
+            //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];
             s->pts= s->cur_frame_pts[i];
             s->offset = s->next_frame_offset - s->cur_frame_offset[i];




More information about the ffmpeg-cvslog mailing list