diff options
author | Mark Thompson <sw@jkqxz.net> | 2020-07-28 23:50:21 +0100 |
---|---|---|
committer | Mark Thompson <sw@jkqxz.net> | 2020-08-01 17:39:13 +0100 |
commit | bc58d1f58eeb7f80049b18395256f2a8cb039f64 (patch) | |
tree | 718991f54aa0a477cbcae513ed71a201dff022ef /doc/encoders.texi | |
parent | e80fe329435d08f13a4b506c1af06359a31267f9 (diff) | |
download | ffmpeg-bc58d1f58eeb7f80049b18395256f2a8cb039f64.tar.gz |
vaapi_encode_h265: Fix ordering of tile dimensions
Dimensions are normally specified as width x height, and this will match
the same option to libaom-av1.
Remove the indirection through the private context at the same time.
Diffstat (limited to 'doc/encoders.texi')
-rw-r--r-- | doc/encoders.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/encoders.texi b/doc/encoders.texi index 78b3be9605..de0472e225 100644 --- a/doc/encoders.texi +++ b/doc/encoders.texi @@ -3264,7 +3264,7 @@ messages). @end table @item tiles -Set the number of tiles to encode the input video with, as rows x columns. +Set the number of tiles to encode the input video with, as columns x rows. Larger numbers allow greater parallelism in both encoding and decoding, but may decrease coding efficiency. |