Commit 02a8489a authored by michael's avatar michael

Only store timestamps when there are timestamps.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13627 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 129ed117
...@@ -134,12 +134,14 @@ int av_parser_parse(AVCodecParserContext *s, ...@@ -134,12 +134,14 @@ 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;
s->cur_frame_end[i] = s->cur_offset + buf_size; s->cur_frame_end[i] = s->cur_offset + buf_size;
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){
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment