Index: source/libvpx/vpx/vpx_codec.h |
=================================================================== |
--- source/libvpx/vpx/vpx_codec.h (revision 281795) |
+++ source/libvpx/vpx/vpx_codec.h (working copy) |
@@ -212,6 +212,15 @@ |
vpx_codec_priv_t *priv; /**< Algorithm private storage */ |
} vpx_codec_ctx_t; |
+ /*!\brief Bit depth for codec |
+ * * |
+ * This enumeration determines the bit depth of the codec. |
+ */ |
+ typedef enum vpx_bit_depth { |
+ VPX_BITS_8, /**< 8 bits */ |
+ VPX_BITS_10, /**< 10 bits */ |
+ VPX_BITS_12 /**< 12 bits */ |
+ } vpx_bit_depth_t; |
/* |
* Library Version Number Interface |