[FFmpeg-devel] [PATCH v2 1/2] libavcodec/libaomenc.c: Add command-line options for tx tools.

James Zern jzern at google.com
Sat Jul 25 05:18:13 EEST 2020


On Thu, Jul 23, 2020 at 3:48 PM James Zern <jzern at google.com> wrote:
>
> On Wed, Jul 22, 2020 at 4:12 PM Wang Cao <doubleecao at gmail.com> wrote:
> >
> > From: Wang Cao <doubleecao at gmail.com>
> >
> > Signed-off-by: Wang Cao <wangcao at google.com>
> > ---
> >  doc/encoders.texi      | 20 ++++++++++++++++++++
> >  libavcodec/libaomenc.c | 30 ++++++++++++++++++++++++++++++
> >  libavcodec/version.h   |  2 +-
> >  3 files changed, 51 insertions(+), 1 deletion(-)
> >
>
> lgtm. I'll apply this soon if there aren't any comments.
>

applied, thanks.

> > [...]
> > @@ -1171,6 +1195,12 @@ static const AVOption options[] = {
> >      { "enable-smooth-intra",      "Enable smooth intra prediction mode",                OFFSET(enable_smooth_intra),      AV_OPT_TYPE_BOOL, {.i64 = -1}, -1, 1, VE},
> >      { "enable-paeth-intra",       "Enable paeth predictor in intra prediction",         OFFSET(enable_paeth_intra),       AV_OPT_TYPE_BOOL, {.i64 = -1}, -1, 1, VE},
> >      { "enable-palette",           "Enable palette prediction mode",                     OFFSET(enable_palette),           AV_OPT_TYPE_BOOL, {.i64 = -1}, -1, 1, VE},
> > +    { "enable-flip-idtx",          "Enable extended transform type",             OFFSET(enable_flip_idtx),          AV_OPT_TYPE_BOOL, {.i64 = -1}, -1, 1, VE},
> > +    { "enable-tx64",               "Enable 64-pt transform",                     OFFSET(enable_tx64),               AV_OPT_TYPE_BOOL, {.i64 = -1}, -1, 1, VE},
> > +    { "reduced-tx-type-set",       "Use reduced set of transform types.",        OFFSET(reduced_tx_type_set),       AV_OPT_TYPE_BOOL, {.i64 = -1}, -1, 1, VE},
>
> I dropped the '.' in the description to normalize the output.


More information about the ffmpeg-devel mailing list