[x264-devel] [patch] Add bt.2020 colorspace and other new H.264 VUI info
Joshua Bowman
silverbacknet at gmail.com
Fri Jun 6 02:55:16 CEST 2014
Patch is attached. Information is from H.264 04/2013 standard update on ITU site.
-------------- next part --------------
x264.c | 9 +++++----
x264.h | 6 +++---
2 files changed, 8 insertions(+), 7 deletions(-)
diff --git a/x264.c b/x264.c
index df18a1b..94e7a91 100644
--- a/x264.c
+++ b/x264.c
@@ -747,15 +747,16 @@ static void help( x264_param_t *defaults, int longhelp )
" - %s\n", range_names[0], stringify_names( buf, range_names ) );
H2( " --colorprim <string> Specify color primaries [\"%s\"]\n"
" - undef, bt709, bt470m, bt470bg\n"
- " smpte170m, smpte240m, film\n",
+ " smpte170m, smpte240m, film, bt2020\n",
strtable_lookup( x264_colorprim_names, defaults->vui.i_colorprim ) );
H2( " --transfer <string> Specify transfer characteristics [\"%s\"]\n"
" - undef, bt709, bt470m, bt470bg, linear,\n"
- " log100, log316, smpte170m, smpte240m\n",
+ " log100, log316, smpte170m, smpte240m\n"
+ " xvycc, srgb, bt2020, bt2020-12, bt1361\n",
strtable_lookup( x264_transfer_names, defaults->vui.i_transfer ) );
H2( " --colormatrix <string> Specify color matrix setting [\"%s\"]\n"
- " - undef, bt709, fcc, bt470bg\n"
- " smpte170m, smpte240m, GBR, YCgCo\n",
+ " - undef, bt709, fcc, bt470bg, smpte170m,\n"
+ " smpte240m, GBR, YCgCo, bt2020, bt2020c\n",
strtable_lookup( x264_colmatrix_names, defaults->vui.i_colmatrix ) );
H2( " --chromaloc <integer> Specify chroma sample location (0 to 5) [%d]\n",
defaults->vui.i_chroma_loc );
diff --git a/x264.h b/x264.h
index 43cb838..5cd50f7 100644
--- a/x264.h
+++ b/x264.h
@@ -198,9 +198,9 @@ static const char * const x264_b_pyramid_names[] = { "none", "strict", "normal",
static const char * const x264_overscan_names[] = { "undef", "show", "crop", 0 };
static const char * const x264_vidformat_names[] = { "component", "pal", "ntsc", "secam", "mac", "undef", 0 };
static const char * const x264_fullrange_names[] = { "off", "on", 0 };
-static const char * const x264_colorprim_names[] = { "", "bt709", "undef", "", "bt470m", "bt470bg", "smpte170m", "smpte240m", "film", 0 };
-static const char * const x264_transfer_names[] = { "", "bt709", "undef", "", "bt470m", "bt470bg", "smpte170m", "smpte240m", "linear", "log100", "log316", 0 };
-static const char * const x264_colmatrix_names[] = { "GBR", "bt709", "undef", "", "fcc", "bt470bg", "smpte170m", "smpte240m", "YCgCo", 0 };
+static const char * const x264_colorprim_names[] = { "", "bt709", "undef", "", "bt470m", "bt470bg", "smpte170m", "smpte240m", "film", "bt2020", 0 };
+static const char * const x264_transfer_names[] = { "", "bt709", "undef", "", "bt470m", "bt470bg", "smpte170m", "smpte240m", "linear", "log100", "log316", "xvycc", "bt1361", "srgb", "bt2020", "bt2020-12", 0 };
+static const char * const x264_colmatrix_names[] = { "GBR", "bt709", "undef", "", "fcc", "bt470bg", "smpte170m", "smpte240m", "YCgCo", "bt2020", "bt2020c" 0 };
static const char * const x264_nal_hrd_names[] = { "none", "vbr", "cbr", 0 };
/* Colorspace type */
More information about the x264-devel
mailing list