From: Jaroslav Kysela Date: Tue, 10 Oct 2017 11:28:26 +0000 (+0200) Subject: transcode: fix nvenc_hevc (set 'bf' to zero), fixes #4661 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b9cfeee3d456e94c7acdc67463577336135b1f28;p=thirdparty%2Ftvheadend.git transcode: fix nvenc_hevc (set 'bf' to zero), fixes #4661 --- diff --git a/src/transcoding/codec/codecs/libs/nvenc.c b/src/transcoding/codec/codecs/libs/nvenc.c index fdbb59326..fe0f523e7 100644 --- a/src/transcoding/codec/codecs/libs/nvenc.c +++ b/src/transcoding/codec/codecs/libs/nvenc.c @@ -297,6 +297,7 @@ tvh_codec_profile_nvenc_hevc_open(tvh_codec_profile_nvenc_t *self, if (self->nvenc_profile != FF_PROFILE_UNKNOWN && (s = val2str(self->nvenc_profile, profiletab)) != NULL) AV_DICT_SET(opts, "profile", s, 0); + AV_DICT_SET_INT(opts, "bf", 0, 0); return 0; }