diff options
author | James Zern <jzern@google.com> | 2015-06-13 12:27:48 -0700 |
---|---|---|
committer | James Zern <jzern@google.com> | 2015-06-20 16:30:46 -0700 |
commit | 9b747500f361305d4175b137394f233845cb7d54 (patch) | |
tree | f099f8a670020315871c2a8a604daf6e11a82cfe /doc/encoders.texi | |
parent | 631d56ffc823e773fb3db528b36647d067f18db3 (diff) | |
download | ffmpeg-9b747500f361305d4175b137394f233845cb7d54.tar.gz |
libvpxenc: support setting colorspace for vp9
the vp9 bitstream supports 8 values:
unknown (default), bt601, bt709, smpte170, smpte240, bt2020, reserved
and sRGB.
Reviewed-by: Ronald S. Bultje <rsbultje@gmail.com>
Signed-off-by: James Zern <jzern@google.com>
Diffstat (limited to 'doc/encoders.texi')
-rw-r--r-- | doc/encoders.texi | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/encoders.texi b/doc/encoders.texi index 8b0ecb717d..8fed2fcea9 100644 --- a/doc/encoders.texi +++ b/doc/encoders.texi @@ -1550,6 +1550,18 @@ Enable frame parallel decodability features. @item aq-mode Set adaptive quantization mode (0: off (default), 1: variance 2: complexity, 3: cyclic refresh). +@item colorspace @emph{color-space} +Set input color space. The VP9 bitstream supports signaling the following +colorspaces: +@table @option +@item @samp{rgb} @emph{sRGB} +@item @samp{bt709} @emph{bt709} +@item @samp{unspecified} @emph{unknown} +@item @samp{bt470bg} @emph{bt601} +@item @samp{smpte170m} @emph{smpte170} +@item @samp{smpte240m} @emph{smpte240} +@item @samp{bt2020_ncl} @emph{bt2020} +@end table @end table @end table |