mirror of https://git.ffmpeg.org/ffmpeg.git
lavf: use AVFrame.duration instead of AVFrame.pkt_duration
This commit is contained in:
parent
357ba45a5c
commit
7d9ee6741c
|
@ -1417,7 +1417,14 @@ static int write_uncoded_frame_internal(AVFormatContext *s, int stream_index,
|
||||||
pkt->size = sizeof(frame);
|
pkt->size = sizeof(frame);
|
||||||
pkt->pts =
|
pkt->pts =
|
||||||
pkt->dts = frame->pts;
|
pkt->dts = frame->pts;
|
||||||
pkt->duration = frame->pkt_duration;
|
#if FF_API_PKT_DURATION
|
||||||
|
FF_DISABLE_DEPRECATION_WARNINGS
|
||||||
|
if (frame->pkt_duration)
|
||||||
|
pkt->duration = frame->pkt_duration;
|
||||||
|
else
|
||||||
|
FF_ENABLE_DEPRECATION_WARNINGS
|
||||||
|
#endif
|
||||||
|
pkt->duration = frame->duration;
|
||||||
pkt->stream_index = stream_index;
|
pkt->stream_index = stream_index;
|
||||||
pkt->flags |= AV_PKT_FLAG_UNCODED_FRAME;
|
pkt->flags |= AV_PKT_FLAG_UNCODED_FRAME;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue