Only store timestamps when there are timestamps.
Originally committed as revision 13627 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -134,6 +134,7 @@ int av_parser_parse(AVCodecParserContext *s,
|
|||||||
buf = dummy_buf;
|
buf = dummy_buf;
|
||||||
} else {
|
} else {
|
||||||
/* add a new packet descriptor */
|
/* add a new packet descriptor */
|
||||||
|
if(pts != AV_NOPTS_VALUE || dts != AV_NOPTS_VALUE){
|
||||||
i = (s->cur_frame_start_index + 1) & (AV_PARSER_PTS_NB - 1);
|
i = (s->cur_frame_start_index + 1) & (AV_PARSER_PTS_NB - 1);
|
||||||
s->cur_frame_start_index = i;
|
s->cur_frame_start_index = i;
|
||||||
s->cur_frame_offset[i] = s->cur_offset;
|
s->cur_frame_offset[i] = s->cur_offset;
|
||||||
@@ -141,6 +142,7 @@ int av_parser_parse(AVCodecParserContext *s,
|
|||||||
s->cur_frame_pts[i] = pts;
|
s->cur_frame_pts[i] = pts;
|
||||||
s->cur_frame_dts[i] = dts;
|
s->cur_frame_dts[i] = dts;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (s->fetch_timestamp){
|
if (s->fetch_timestamp){
|
||||||
s->fetch_timestamp=0;
|
s->fetch_timestamp=0;
|
||||||
|
Reference in New Issue
Block a user