Browse Source

avcodec/h264_parser: set missing pts for top/bottom field frames

Adopted from 4eb49fdde8 revert.

Signed-off-by: Paul B Mahol <onemda@gmail.com>
tags/n3.2
Paul B Mahol 9 years ago
parent
commit
01fa4fb69e
1 changed files with 22 additions and 0 deletions
  1. +22
    -0
      libavcodec/h264_parser.c

+ 22
- 0
libavcodec/h264_parser.c View File

@@ -60,6 +60,7 @@ typedef struct H264ParseContext {
uint8_t parse_history[6];
int parse_history_count;
int parse_last_mb;
int64_t reference_dts;
} H264ParseContext;


@@ -598,6 +599,26 @@ static int h264_parse(AVCodecParserContext *s,
s->flags &= PARSER_FLAG_COMPLETE_FRAMES;
}

if (s->dts_sync_point >= 0) {
int64_t den = avctx->time_base.den * avctx->pkt_timebase.num;
if (den > 0) {
int64_t num = avctx->time_base.num * avctx->pkt_timebase.den;
if (s->dts != AV_NOPTS_VALUE) {
// got DTS from the stream, update reference timestamp
p->reference_dts = s->dts - av_rescale(s->dts_ref_dts_delta, num, den);
} else if (p->reference_dts != AV_NOPTS_VALUE) {
// compute DTS based on reference timestamp
s->dts = p->reference_dts + av_rescale(s->dts_ref_dts_delta, num, den);
}

if (p->reference_dts != AV_NOPTS_VALUE && s->pts == AV_NOPTS_VALUE)
s->pts = s->dts + av_rescale(s->pts_dts_delta, num, den);

if (s->dts_sync_point > 0)
p->reference_dts = s->dts; // new reference
}
}

*poutbuf = buf;
*poutbuf_size = buf_size;
return next;
@@ -655,6 +676,7 @@ static av_cold int init(AVCodecParserContext *s)
{
H264ParseContext *p = s->priv_data;

p->reference_dts = AV_NOPTS_VALUE;
ff_h264dsp_init(&p->h264dsp, 8, 1);
return 0;
}


Loading…
Cancel
Save