avcodec/nvenc: Don't set packet duration

It's not expected to be set on video packets and causes issues in
ffmpeg.c.
This commit is contained in:
Timo Rothenpieler 2016-06-04 12:20:59 +02:00
parent 1e6a0c9d14
commit 7c55f5d782
1 changed files with 0 additions and 2 deletions

View File

@ -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 {