Re: [FFmpeg-devel] [PATCH] Added more commandline options for libaom encoder.

2019-03-29 Thread James Almer
On 3/29/2019 1:58 PM, Sam John via ffmpeg-devel wrote: > The following are the newly added options: > arnr_max_frames, arnr_strength, aq_mode, denoise_noise_level, > denoise_block_size, > rc_undershoot_pct, rc_overshoot_pct, minsection_pct, maxsection_pct, > frame_parallel, > enable_cdef,

Re: [FFmpeg-devel] [PATCH] Added more commandline options for libaom encoder.

2019-03-29 Thread Gyan
On 29-03-2019 10:28 PM, Sam John via ffmpeg-devel wrote: The following are the newly added options: arnr_max_frames, arnr_strength, aq_mode, denoise_noise_level, denoise_block_size, rc_undershoot_pct, rc_overshoot_pct, minsection_pct, maxsection_pct, frame_parallel, enable_cdef,

[FFmpeg-devel] [PATCH] Added more commandline options for libaom encoder.

2019-03-29 Thread Sam John via ffmpeg-devel
The following are the newly added options: arnr_max_frames, arnr_strength, aq_mode, denoise_noise_level, denoise_block_size, rc_undershoot_pct, rc_overshoot_pct, minsection_pct, maxsection_pct, frame_parallel, enable_cdef, enable_global_motion, and intrabc. Also added macros for compiling for

[FFmpeg-devel] [PATCH] Added more commandline options for libaom encoder.

2019-03-13 Thread Sam John
The following are the newly added options: arnr_max_frames, arnr_strength, aq_mode, denoise_noise_level, denoise_block_size, rc_undershoot_pct, rc_overshoot_pct, minsection_pct, maxsection_pct, frame_parallel, enable_cdef, and enable_global_motion. Also added macros for compiling for aom 1.0.0

Re: [FFmpeg-devel] [PATCH] Added more commandline options for libaom encoder.

2019-03-12 Thread Sam John
Thank you James and Moritz. For many of these parameters, the default value within the codec is '1'. So we want to add the option for disabling it also. I would like to follow the method used for "frame-parallel", after changing the default value to -1. { "frame-parallel", "Enable frame

Re: [FFmpeg-devel] [PATCH] Added more commandline options for libaom encoder.

2019-03-12 Thread Moritz Barsnick
On Tue, Mar 12, 2019 at 11:45:06 -0300, James Almer wrote: > > +{ "frame-parallel", "Enable frame parallel decodability features", > > OFFSET(frame_parallel), AV_OPT_TYPE_BOOL,{.i64 = -1}, -1, 1, VE}, > > A bool with three values is weird. If this is meant to be disabled by > default,

Re: [FFmpeg-devel] [PATCH] Added more commandline options for libaom encoder.

2019-03-12 Thread James Almer
On 3/8/2019 10:21 PM, Sam John wrote: > The following are the newly added options: > arnr_max_frames, arnr_strength, aq_mode, denoise_noise_level, > denoise_block_size, > rc_undershoot_pct, rc_overshoot_pct, minsection_pct, maxsection_pct, > frame_parallel, > enable_cdef, and

[FFmpeg-devel] [PATCH] Added more commandline options for libaom encoder.

2019-03-08 Thread Sam John
The following are the newly added options: arnr_max_frames, arnr_strength, aq_mode, denoise_noise_level, denoise_block_size, rc_undershoot_pct, rc_overshoot_pct, minsection_pct, maxsection_pct, frame_parallel, enable_cdef, and enable_global_motion. Also added macros for compiling for aom 1.0.0.

Re: [FFmpeg-devel] [PATCH] Added more commandline options for libaom encoder.

2019-03-06 Thread James Almer
On 3/6/2019 9:56 PM, Sam John wrote: > The following are the newly added options: > arnr_max_frames, arnr_strength, aq_mode, denoise_noise_level, > denoise_block_size, > rc_undershoot_pct, rc_overshoot_pct, minsection_pct, maxsection_pct, > frame_parallel, > enable_cdef, and

[FFmpeg-devel] [PATCH] Added more commandline options for libaom encoder.

2019-03-06 Thread Sam John
The following are the newly added options: arnr_max_frames, arnr_strength, aq_mode, denoise_noise_level, denoise_block_size, rc_undershoot_pct, rc_overshoot_pct, minsection_pct, maxsection_pct, frame_parallel, enable_cdef, and enable_global_motion. --- libavcodec/libaomenc.c | 71