Re: [FFmpeg-devel] [PATCH v4 1/2] lavc/vaapi_encode: add support for maxframesize

2022-03-30 Thread Wang, Fei W
> -Original Message- > From: Xiang, Haihao > Sent: Tuesday, March 29, 2022 8:07 PM > To: ffmpeg-devel@ffmpeg.org > Cc: Wang, Fei W ; linjie...@intel.com > Subject: Re: [FFmpeg-devel] [PATCH v4 1/2] lavc/vaapi_encode: add support for > maxframesize > > On Tue

Re: [FFmpeg-devel] [PATCH v4 1/2] lavc/vaapi_encode: add support for maxframesize

2022-03-29 Thread Xiang, Haihao
On Tue, 2022-03-22 at 22:11 +0800, Fei Wang wrote: > From: Linjie Fu > > Add support for max frame size: > - max_frame_size (bytes) to indicate the max allowed size for frame. > > If the frame size exceeds the limitation, encoder will to control the frame > size by adjusting QP value. >

Re: [FFmpeg-devel] [PATCH v4 1/2] lavc/vaapi_encode: add support for maxframesize

2022-03-27 Thread Wang, Fei W
> -Original Message- > From: Andriy Gelman > Sent: Saturday, March 26, 2022 11:21 PM > To: Wang, Fei W > Cc: ffmpeg-devel@ffmpeg.org > Subject: Re: [PATCH v4 1/2] lavc/vaapi_encode: add support for maxframesize > > On Wed, 23. Mar 08:51, Wang, Fei W wrote: > > > -Original Message-

Re: [FFmpeg-devel] [PATCH v4 1/2] lavc/vaapi_encode: add support for maxframesize

2022-03-26 Thread Andriy Gelman
On Wed, 23. Mar 08:51, Wang, Fei W wrote: > > -Original Message- > > From: Wang, Fei W > > Sent: Tuesday, March 22, 2022 10:11 PM > > To: ffmpeg-devel@ffmpeg.org > > Cc: Linjie Fu ; Wang, Fei W > > Subject: [PATCH v4 1/2] lavc/vaapi_encode: add support for maxframesize > > > > From: Linj

Re: [FFmpeg-devel] [PATCH v4 1/2] lavc/vaapi_encode: add support for maxframesize

2022-03-23 Thread Wang, Fei W
> -Original Message- > From: Wang, Fei W > Sent: Tuesday, March 22, 2022 10:11 PM > To: ffmpeg-devel@ffmpeg.org > Cc: Linjie Fu ; Wang, Fei W > Subject: [PATCH v4 1/2] lavc/vaapi_encode: add support for maxframesize > > From: Linjie Fu > > Add support for max frame size: > - max_fr

[FFmpeg-devel] [PATCH v4 1/2] lavc/vaapi_encode: add support for maxframesize

2022-03-22 Thread Fei Wang
From: Linjie Fu Add support for max frame size: - max_frame_size (bytes) to indicate the max allowed size for frame. If the frame size exceeds the limitation, encoder will to control the frame size by adjusting QP value. - MFS_NUM_PASSES to indicate number of passes for QP adjust. -