diff options
author | James Almer <jamrial@gmail.com> | 2019-05-20 18:18:33 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2019-05-20 18:21:33 -0300 |
commit | e1839283bc9a660f65a0e828ca044d926cbaf5dc (patch) | |
tree | 2e75a26c12d489a9b7ed485cae77b9de3b79a4a3 /doc/decoders.texi | |
parent | 8d9910a23ab3433dbbddb9076129745f6964c1c4 (diff) | |
download | ffmpeg-e1839283bc9a660f65a0e828ca044d926cbaf5dc.tar.gz |
doc: add basic documentation for libdav1d
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'doc/decoders.texi')
-rw-r--r-- | doc/decoders.texi | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/doc/decoders.texi b/doc/decoders.texi index 704bd60b9f..0582b018b0 100644 --- a/doc/decoders.texi +++ b/doc/decoders.texi @@ -47,6 +47,32 @@ top-field-first is assumed @end table +@section libdav1d + +dav1d AV1 decoder. + +libdav1d allows libavcodec to decode the AOMedia Video 1 (AV1) codec. +Requires the presence of the libdav1d headers and library during configuration. +You need to explicitly configure the build with @code{--enable-libdav1d}. + +@subsection Options + +The following option is supported by the libdav1d wrapper. + +@table @option + +@item framethreads +Set amount of frame threads to use during decoding. The default value is 0 (autodetect). + +@item tilethreads +Set amount of tile threads to use during decoding. The default value is 0 (autodetect). + +@item filmgrain +Apply film grain to the decoded video if present in the bitstream. The default value +is true. + +@end table + @section libdavs2 AVS2-P2/IEEE1857.4 video decoder wrapper. |