Index: source/libvpx/vpx/vpx_image.h |
=================================================================== |
--- source/libvpx/vpx/vpx_image.h (revision 292608) |
+++ source/libvpx/vpx/vpx_image.h (working copy) |
@@ -58,46 +58,14 @@ |
VPX_IMG_FMT_VPXI420 = VPX_IMG_FMT_PLANAR | 4, |
VPX_IMG_FMT_I422 = VPX_IMG_FMT_PLANAR | 5, |
VPX_IMG_FMT_I444 = VPX_IMG_FMT_PLANAR | 6, |
- VPX_IMG_FMT_444A = VPX_IMG_FMT_PLANAR | VPX_IMG_FMT_HAS_ALPHA | 7, |
+ VPX_IMG_FMT_I440 = VPX_IMG_FMT_PLANAR | 7, |
+ VPX_IMG_FMT_444A = VPX_IMG_FMT_PLANAR | VPX_IMG_FMT_HAS_ALPHA | 6, |
VPX_IMG_FMT_I42016 = VPX_IMG_FMT_I420 | VPX_IMG_FMT_HIGHBITDEPTH, |
VPX_IMG_FMT_I42216 = VPX_IMG_FMT_I422 | VPX_IMG_FMT_HIGHBITDEPTH, |
- VPX_IMG_FMT_I44416 = VPX_IMG_FMT_I444 | VPX_IMG_FMT_HIGHBITDEPTH |
+ VPX_IMG_FMT_I44416 = VPX_IMG_FMT_I444 | VPX_IMG_FMT_HIGHBITDEPTH, |
+ VPX_IMG_FMT_I44016 = VPX_IMG_FMT_I440 | VPX_IMG_FMT_HIGHBITDEPTH |
} vpx_img_fmt_t; /**< alias for enum vpx_img_fmt */ |
-#if !defined(VPX_CODEC_DISABLE_COMPAT) || !VPX_CODEC_DISABLE_COMPAT |
-#define IMG_FMT_PLANAR VPX_IMG_FMT_PLANAR /**< \deprecated Use #VPX_IMG_FMT_PLANAR */ |
-#define IMG_FMT_UV_FLIP VPX_IMG_FMT_UV_FLIP /**< \deprecated Use #VPX_IMG_FMT_UV_FLIP */ |
-#define IMG_FMT_HAS_ALPHA VPX_IMG_FMT_HAS_ALPHA /**< \deprecated Use #VPX_IMG_FMT_HAS_ALPHA */ |
- |
- /*!\brief Deprecated list of supported image formats |
- * \deprecated New code should use #vpx_img_fmt |
- */ |
-#define img_fmt vpx_img_fmt |
- /*!\brief alias for enum img_fmt. |
- * \deprecated New code should use #vpx_img_fmt_t |
- */ |
-#define img_fmt_t vpx_img_fmt_t |
- |
-#define IMG_FMT_NONE VPX_IMG_FMT_NONE /**< \deprecated Use #VPX_IMG_FMT_NONE */ |
-#define IMG_FMT_RGB24 VPX_IMG_FMT_RGB24 /**< \deprecated Use #VPX_IMG_FMT_RGB24 */ |
-#define IMG_FMT_RGB32 VPX_IMG_FMT_RGB32 /**< \deprecated Use #VPX_IMG_FMT_RGB32 */ |
-#define IMG_FMT_RGB565 VPX_IMG_FMT_RGB565 /**< \deprecated Use #VPX_IMG_FMT_RGB565 */ |
-#define IMG_FMT_RGB555 VPX_IMG_FMT_RGB555 /**< \deprecated Use #VPX_IMG_FMT_RGB555 */ |
-#define IMG_FMT_UYVY VPX_IMG_FMT_UYVY /**< \deprecated Use #VPX_IMG_FMT_UYVY */ |
-#define IMG_FMT_YUY2 VPX_IMG_FMT_YUY2 /**< \deprecated Use #VPX_IMG_FMT_YUY2 */ |
-#define IMG_FMT_YVYU VPX_IMG_FMT_YVYU /**< \deprecated Use #VPX_IMG_FMT_YVYU */ |
-#define IMG_FMT_BGR24 VPX_IMG_FMT_BGR24 /**< \deprecated Use #VPX_IMG_FMT_BGR24 */ |
-#define IMG_FMT_RGB32_LE VPX_IMG_FMT_RGB32_LE /**< \deprecated Use #VPX_IMG_FMT_RGB32_LE */ |
-#define IMG_FMT_ARGB VPX_IMG_FMT_ARGB /**< \deprecated Use #VPX_IMG_FMT_ARGB */ |
-#define IMG_FMT_ARGB_LE VPX_IMG_FMT_ARGB_LE /**< \deprecated Use #VPX_IMG_FMT_ARGB_LE */ |
-#define IMG_FMT_RGB565_LE VPX_IMG_FMT_RGB565_LE /**< \deprecated Use #VPX_IMG_FMT_RGB565_LE */ |
-#define IMG_FMT_RGB555_LE VPX_IMG_FMT_RGB555_LE /**< \deprecated Use #VPX_IMG_FMT_RGB555_LE */ |
-#define IMG_FMT_YV12 VPX_IMG_FMT_YV12 /**< \deprecated Use #VPX_IMG_FMT_YV12 */ |
-#define IMG_FMT_I420 VPX_IMG_FMT_I420 /**< \deprecated Use #VPX_IMG_FMT_I420 */ |
-#define IMG_FMT_VPXYV12 VPX_IMG_FMT_VPXYV12 /**< \deprecated Use #VPX_IMG_FMT_VPXYV12 */ |
-#define IMG_FMT_VPXI420 VPX_IMG_FMT_VPXI420 /**< \deprecated Use #VPX_IMG_FMT_VPXI420 */ |
-#endif /* VPX_CODEC_DISABLE_COMPAT */ |
- |
/**\brief Image Descriptor */ |
typedef struct vpx_image { |
vpx_img_fmt_t fmt; /**< Image Format */ |
@@ -121,13 +89,6 @@ |
#define VPX_PLANE_U 1 /**< U (Chroma) plane */ |
#define VPX_PLANE_V 2 /**< V (Chroma) plane */ |
#define VPX_PLANE_ALPHA 3 /**< A (Transparency) plane */ |
-#if !defined(VPX_CODEC_DISABLE_COMPAT) || !VPX_CODEC_DISABLE_COMPAT |
-#define PLANE_PACKED VPX_PLANE_PACKED |
-#define PLANE_Y VPX_PLANE_Y |
-#define PLANE_U VPX_PLANE_U |
-#define PLANE_V VPX_PLANE_V |
-#define PLANE_ALPHA VPX_PLANE_ALPHA |
-#endif |
unsigned char *planes[4]; /**< pointer to the top left pixel for each plane */ |
int stride[4]; /**< stride between rows for each plane */ |