[FFmpeg-devel] [PATCH 4/4] avcodec/nvenc: Add constrainedFrame encoding support

2021-09-02 Thread lance . lmwang
From: Limin Wang Signed-off-by: Limin Wang --- libavcodec/nvenc.c | 12 libavcodec/nvenc.h | 1 + libavcodec/nvenc_h264.c | 2 ++ libavcodec/nvenc_hevc.c | 2 ++ libavcodec/version.h| 2 +- 5 files changed, 18 insertions(+), 1 deletion(-) diff --git a/libavcodec/

Re: [FFmpeg-devel] [PATCH 4/4] avcodec/nvenc: Add constrainedFrame encoding support

2021-09-06 Thread Timo Rothenpieler
Series applied. While testing, I found that constrained encoding for HEVC was not a thing until SDK 10.0, so I added the necessary check and compile time guards for that. Also done some other minor style and logic changes, and renamed the options to use "-" instead of "_", so the options mat

Re: [FFmpeg-devel] [PATCH 4/4] avcodec/nvenc: Add constrainedFrame encoding support

2021-09-06 Thread lance . lmwang
On Mon, Sep 06, 2021 at 02:49:47PM +0200, Timo Rothenpieler wrote: > Series applied. > > While testing, I found that constrained encoding for HEVC was not a thing > until SDK 10.0, so I added the necessary check and compile time guards for > that. > > Also done some other minor style and logic ch

Re: [FFmpeg-devel] [PATCH 4/4] avcodec/nvenc: Add constrainedFrame encoding support

2021-09-07 Thread Timo Rothenpieler
On 07.09.2021 03:26, lance.lmw...@gmail.com wrote: On Mon, Sep 06, 2021 at 02:49:47PM +0200, Timo Rothenpieler wrote: Series applied. While testing, I found that constrained encoding for HEVC was not a thing until SDK 10.0, so I added the necessary check and compile time guards for that. Also