Commit 7c55f5d7 authored by Timo Rothenpieler's avatar Timo Rothenpieler

avcodec/nvenc: Don't set packet duration

It's not expected to be set on video packets and causes issues in
ffmpeg.c.
parent 1e6a0c9d
......@@ -1415,7 +1415,6 @@ static int nvenc_set_timestamp(AVCodecContext *avctx,
NvencContext *ctx = avctx->priv_data;
pkt->pts = params->outputTimeStamp;
pkt->duration = params->outputDuration;
/* generate the first dts by linearly extrapolating the
* first two pts values to the past */
......@@ -1616,7 +1615,6 @@ int ff_nvenc_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
pic_params.encodePicFlags = 0;
pic_params.inputTimeStamp = frame->pts;
pic_params.inputDuration = av_frame_get_pkt_duration(frame);
nvenc_codec_specific_pic_params(avctx, &pic_params);
} else {
......
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