[x265] [PATCH 3 of 3] vui: add support for transfer characteristic std-b67

deepthi at multicorewareinc.com deepthi at multicorewareinc.com
Mon Aug 3 07:22:58 CEST 2015


# HG changeset patch
# User Deepthi Nandakumar <deepthi at multicorewareinc.com>
# Date 1438577914 -19800
#      Mon Aug 03 10:28:34 2015 +0530
# Node ID a3b72e2a25a7fc544b1b76e872eda012035bf4ac
# Parent  dc5d58411210549d288b991ccfc4da4450e9f84e
vui: add support for transfer characteristic std-b67

diff -r dc5d58411210 -r a3b72e2a25a7 doc/reST/cli.rst
--- a/doc/reST/cli.rst	Mon Aug 03 09:46:43 2015 +0530
+++ b/doc/reST/cli.rst	Mon Aug 03 10:28:34 2015 +0530
@@ -1583,6 +1583,7 @@
 	15. bt2020-12
 	16. smpte-st-2084
 	17. smpte-st-428
+	18. std-b67
 
 .. option:: --colormatrix <integer|string>
 
diff -r dc5d58411210 -r a3b72e2a25a7 source/common/param.cpp
--- a/source/common/param.cpp	Mon Aug 03 09:46:43 2015 +0530
+++ b/source/common/param.cpp	Mon Aug 03 10:28:34 2015 +0530
@@ -1114,7 +1114,7 @@
           "Color Primaries must be undef, bt709, bt470m,"
           " bt470bg, smpte170m, smpte240m, film or bt2020");
     CHECK(param->vui.transferCharacteristics < 0
-          || param->vui.transferCharacteristics > 17
+          || param->vui.transferCharacteristics > 18
           || param->vui.transferCharacteristics == 3,
           "Transfer Characteristics must be undef, bt709, bt470m, bt470bg,"
           " smpte170m, smpte240m, linear, log100, log316, iec61966-2-4, bt1361e,"
diff -r dc5d58411210 -r a3b72e2a25a7 source/x265.h
--- a/source/x265.h	Mon Aug 03 09:46:43 2015 +0530
+++ b/source/x265.h	Mon Aug 03 10:28:34 2015 +0530
@@ -388,7 +388,7 @@
 static const char * const x265_colorprim_names[] = { "", "bt709", "undef", "", "bt470m", "bt470bg", "smpte170m", "smpte240m", "film", "bt2020", 0 };
 static const char * const x265_transfer_names[] = { "", "bt709", "undef", "", "bt470m", "bt470bg", "smpte170m", "smpte240m", "linear", "log100",
                                                     "log316", "iec61966-2-4", "bt1361e", "iec61966-2-1", "bt2020-10", "bt2020-12",
-                                                    "smpte-st-2084", "smpte-st-428", 0 };
+                                                    "smpte-st-2084", "smpte-st-428", "std-b67", 0 };
 static const char * const x265_colmatrix_names[] = { "GBR", "bt709", "undef", "", "fcc", "bt470bg", "smpte170m", "smpte240m",
                                                      "YCgCo", "bt2020nc", "bt2020c", 0 };
 static const char * const x265_sar_names[] = { "undef", "1:1", "12:11", "10:11", "16:11", "40:33", "24:11", "20:11",


More information about the x265-devel mailing list