diff options
author | Xiang, Haihao <haihao.xiang@intel.com> | 2011-10-24 13:22:40 +0800 |
---|---|---|
committer | Xiang, Haihao <haihao.xiang@intel.com> | 2011-10-24 13:48:33 +0800 |
commit | df732e430001bf71e69d89ebcdb712799c011352 (patch) | |
tree | 49a69dbb4d626c9e62594a3908b50cf2bbe7bc22 | |
parent | 88e3e1882fda7c6f9b9cc60fc92fe92fbfc7f3da (diff) |
refine the JPEG decoding interface
-rw-r--r-- | va/va.h | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -755,11 +755,6 @@ typedef struct _VAIQMatrixBufferJPEG #define VA_JPEG_COMPONENT_ID_V 3 #define VA_JPEG_COMPONENT_ID_A 4 -#define VA_JPEG_ROTATION_0 0 /* no rotation */ -#define VA_JPEG_ROTATION_90 1 /* rotate clockwise 90 degree */ -#define VA_JPEG_ROTATION_180 2 /* rotate 180 degree */ -#define VA_JPEG_ROTATION_270 3 /* rotate clockwise 270 degree */ - /* JPEG Picture Parameter Buffer */ typedef struct _VAPictureParameterBufferJPEG { @@ -826,7 +821,7 @@ typedef struct _VASliceParameterBufferJPEG } components[4]; int restart_interval; /* specifies the number of MCUs in restart interval, defined in DRI marker */ - int count_in_mcus; /* indicates the number of MCUs in a scan */ + int num_mcus; /* indicates the number of MCUs in a scan */ } VASliceParameterBufferJPEG; /**************************** |