Commit d48fb904 authored by Marton Balint's avatar Marton Balint

avformat/mxfdec: remove check for NULL MXFTrack in mxf_set_pts

It cannot happen for video streams.
Signed-off-by: 's avatarMarton Balint <cus@passwd.hu>
parent 5d3f7838
...@@ -3221,7 +3221,7 @@ static int mxf_set_pts(MXFContext *mxf, AVStream *st, AVPacket *pkt, int64_t nex ...@@ -3221,7 +3221,7 @@ static int mxf_set_pts(MXFContext *mxf, AVStream *st, AVPacket *pkt, int64_t nex
if (mxf->nb_index_tables >= 1 && mxf->current_edit_unit < t->nb_ptses) { if (mxf->nb_index_tables >= 1 && mxf->current_edit_unit < t->nb_ptses) {
pkt->dts = mxf->current_edit_unit + t->first_dts; pkt->dts = mxf->current_edit_unit + t->first_dts;
pkt->pts = t->ptses[mxf->current_edit_unit]; pkt->pts = t->ptses[mxf->current_edit_unit];
} else if (track && track->intra_only) { } else if (track->intra_only) {
/* intra-only -> PTS = EditUnit. /* intra-only -> PTS = EditUnit.
* let utils.c figure out DTS since it can be < PTS if low_delay = 0 (Sony IMX30) */ * let utils.c figure out DTS since it can be < PTS if low_delay = 0 (Sony IMX30) */
pkt->pts = mxf->current_edit_unit; pkt->pts = mxf->current_edit_unit;
......
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