diff options
author | Wang Cao <doubleecao@gmail.com> | 2020-07-22 16:11:12 -0700 |
---|---|---|
committer | James Zern <jzern@google.com> | 2020-07-24 19:10:10 -0700 |
commit | 017bf9643fc042267abaac1d60acdcfdaeee4814 (patch) | |
tree | 7985d930cdc3ee27c842e18021efceb413e03210 /doc | |
parent | 498ad7b37c0258c17af4c998c997e66e85032582 (diff) | |
download | ffmpeg-017bf9643fc042267abaac1d60acdcfdaeee4814.tar.gz |
libavcodec/libaomenc.c: Add command-line options for inter-coding tools
Signed-off-by: Wang Cao <wangcao@google.com>
Signed-off-by: James Zern <jzern@google.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/encoders.texi | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/doc/encoders.texi b/doc/encoders.texi index ecdfacbd69..ed8ef63784 100644 --- a/doc/encoders.texi +++ b/doc/encoders.texi @@ -1649,6 +1649,42 @@ Use DCT only for INTER modes. Default is false. @item use-intra-default-tx-only (@emph{boolean}) (Requires libaom >= v2.0.0) Use Default-transform only for INTRA modes. Default is false. +@item enable-ref-frame-mvs (@emph{boolean}) (Requires libaom >= v2.0.0) +Enable temporal mv prediction. Default is true. + +@item enable-reduced-reference-set (@emph{boolean}) (Requires libaom >= v2.0.0) +Use reduced set of single and compound references. Default is false. + +@item enable-obmc (@emph{boolean}) (Requires libaom >= v2.0.0) +Enable obmc. Default is true. + +@item enable-dual-filter (@emph{boolean}) (Requires libaom >= v2.0.0) +Enable dual filter. Default is true. + +@item enable-diff-wtd-comp (@emph{boolean}) (Requires libaom >= v2.0.0) +Enable difference-weighted compound. Default is true. + +@item enable-dist-wtd-comp (@emph{boolean}) (Requires libaom >= v2.0.0) +Enable distance-weighted compound. Default is true. + +@item enable-onesided-comp (@emph{boolean}) (Requires libaom >= v2.0.0) +Enable one sided compound. Default is true. + +@item enable-interinter-wedge (@emph{boolean}) (Requires libaom >= v2.0.0) +Enable interinter wedge compound. Default is true. + +@item enable-interintra-wedge (@emph{boolean}) (Requires libaom >= v2.0.0) +Enable interintra wedge compound. Default is true. + +@item enable-masked-comp (@emph{boolean}) (Requires libaom >= v2.0.0) +Enable masked compound. Default is true. + +@item enable-interintra-comp (@emph{boolean}) (Requires libaom >= v2.0.0) +Enable interintra compound. Default is true. + +@item enable-smooth-interintra (@emph{boolean}) (Requires libaom >= v2.0.0) +Enable smooth interintra mode. Default is true. + @end table @section libkvazaar |