From 0c76240b65be6833d0e45ef2084d0f56982078d9 Mon Sep 17 00:00:00 2001 From: "Ren, Zhaohan" Date: Thu, 26 Mar 2009 03:37:51 +0800 Subject: [PATCH] patch 109_VA_FOURCC.patch --- src/va.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/va.h b/src/va.h index 0ca2db7..3c06a50 100755 --- a/src/va.h +++ b/src/va.h @@ -1229,7 +1229,7 @@ VAStatus vaQuerySurfaceStatus ( * Both images, subpictures and surfaces follow the same 2D coordinate system where origin * is at the upper left corner with positive X to the right and positive Y down */ -#define VA_MAKEFOURCC(ch0, ch1, ch2, ch3) \ +#define VA_FOURCC(ch0, ch1, ch2, ch3) \ ((unsigned long)(unsigned char) (ch0) | ((unsigned long)(unsigned char) (ch1) << 8) | \ ((unsigned long)(unsigned char) (ch2) << 16) | ((unsigned long)(unsigned char) (ch3) << 24 )) -- 2.7.4