Commit bdadf05e authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/parser: put lost comments back

Found-by: ubitux
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 9d297641
...@@ -104,8 +104,10 @@ void ff_fetch_timestamp(AVCodecParserContext *s, int off, int remove) ...@@ -104,8 +104,10 @@ void ff_fetch_timestamp(AVCodecParserContext *s, int off, int remove)
for (i = 0; i < AV_PARSER_PTS_NB; i++) { for (i = 0; i < AV_PARSER_PTS_NB; i++) {
if (s->cur_offset + off >= s->cur_frame_offset[i] && if (s->cur_offset + off >= s->cur_frame_offset[i] &&
(s->frame_offset < s->cur_frame_offset[i] || (s->frame_offset < s->cur_frame_offset[i] ||
(!s->frame_offset && !s->next_frame_offset)) && (!s->frame_offset && !s->next_frame_offset)) && // first field/frame
s->cur_frame_end[i]) { // check disabled since MPEG-TS does not send complete PES packets
/*s->next_frame_offset + off <*/ s->cur_frame_end[i]){
s->dts = s->cur_frame_dts[i]; s->dts = s->cur_frame_dts[i];
s->pts = s->cur_frame_pts[i]; s->pts = s->cur_frame_pts[i];
s->pos = s->cur_frame_pos[i]; s->pos = s->cur_frame_pos[i];
......
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