]> granicus.if.org Git - libvpx/commitdiff
Change the use of a reserved color space entry
authorYaowu Xu <yaowu@google.com>
Fri, 7 Nov 2014 03:09:30 +0000 (19:09 -0800)
committerYaowu Xu <yaowu@google.com>
Fri, 7 Nov 2014 03:14:21 +0000 (19:14 -0800)
This commit rename a reserved color space entry to BT_2020, it intends
to provide support for VP9 bitstream to pass along the color space
type defined in BT.2020(Rec.2020)

please note this entry does not have any effect on encoding/decoding
behavior, but allow applications to the pass the information along
from encoding end to decoding end.

Change-Id: I4678520e89141ea5e8900f7bd1c0e95b710b7091

vp9/common/vp9_enums.h

index f83d21fe3a38fb99914d02967f2bbf1a9cb810dd..7454dd4391200486283cd829bcdd899f93589d87 100644 (file)
@@ -104,7 +104,7 @@ typedef enum {
   BT_709     = 2,  // YUV
   SMPTE_170  = 3,  // YUV
   SMPTE_240  = 4,  // YUV
-  RESERVED_1 = 5,
+  BT_2020    = 5,  // YUV
   RESERVED_2 = 6,
   SRGB       = 7   // RGB
 } COLOR_SPACE;