hardware/intel/libva
修订版 | 0c76240b65be6833d0e45ef2084d0f56982078d9 (tree) |
---|---|
时间 | 2009-03-26 04:37:51 |
作者 | Ren, Zhaohan <zhaohan.ren@inte...> |
Commiter | Ren, Zhaohan |
patch 109_VA_FOURCC.patch
@@ -1229,7 +1229,7 @@ VAStatus vaQuerySurfaceStatus ( | ||
1229 | 1229 | * Both images, subpictures and surfaces follow the same 2D coordinate system where origin |
1230 | 1230 | * is at the upper left corner with positive X to the right and positive Y down |
1231 | 1231 | */ |
1232 | -#define VA_MAKEFOURCC(ch0, ch1, ch2, ch3) \ | |
1232 | +#define VA_FOURCC(ch0, ch1, ch2, ch3) \ | |
1233 | 1233 | ((unsigned long)(unsigned char) (ch0) | ((unsigned long)(unsigned char) (ch1) << 8) | \ |
1234 | 1234 | ((unsigned long)(unsigned char) (ch2) << 16) | ((unsigned long)(unsigned char) (ch3) << 24 )) |
1235 | 1235 |