mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
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:
parent
1e6a0c9d14
commit
7c55f5d782
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user