[Libva] [PATCH] VPP: Fix the typo error of "VV16"
Zhao Yakui
yakui.zhao at intel.com
Tue Mar 18 01:35:18 PDT 2014
Thank Gwenole for finding this typo error which is caused by
the commit 2b5fad11a5c12d3c6ffbef15c02449a3b4e90b98.
Signed-off-by: Zhao Yakui <yakui.zhao at intel.com>
---
src/gen8_post_processing.c | 2 +-
src/i965_post_processing.c | 8 ++++----
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/gen8_post_processing.c b/src/gen8_post_processing.c
index a5b3b90..6f3afe7 100644
--- a/src/gen8_post_processing.c
+++ b/src/gen8_post_processing.c
@@ -566,7 +566,7 @@ gen8_pp_set_media_rw_message_surface(VADriverContextP ctx, struct i965_post_proc
height[2] = obj_image->image.height / 2;
pitch[2] = obj_image->image.pitches[V];
offset[2] = obj_image->image.offsets[V];
- if (fourcc == VA_FOURCC('V', 'V', '1', '6')) {
+ if (fourcc == VA_FOURCC('Y', 'V', '1', '6')) {
width[1] = obj_image->image.width / 2;
height[1] = obj_image->image.height;
width[2] = obj_image->image.width / 2;
diff --git a/src/i965_post_processing.c b/src/i965_post_processing.c
index 3242257..35bc515 100755
--- a/src/i965_post_processing.c
+++ b/src/i965_post_processing.c
@@ -1836,7 +1836,7 @@ pp_set_media_rw_message_surface(VADriverContextP ctx, struct i965_post_processin
height[2] = obj_image->image.height / 2;
pitch[2] = obj_image->image.pitches[2];
offset[2] = obj_image->image.offsets[2];
- if (fourcc == VA_FOURCC('V', 'V', '1', '6')) {
+ if (fourcc == VA_FOURCC('Y', 'V', '1', '6')) {
width[1] = obj_image->image.width / 2;
height[1] = obj_image->image.height;
width[2] = obj_image->image.width / 2;
@@ -1885,10 +1885,10 @@ gen7_pp_set_media_rw_message_surface(VADriverContextP ctx, struct i965_post_proc
dri_bo *bo;
int fourcc = pp_get_surface_fourcc(ctx, surface);
const int U = (fourcc == VA_FOURCC('Y', 'V', '1', '2') ||
- fourcc == VA_FOURCC('V', 'V', '1', '6') ||
+ fourcc == VA_FOURCC('Y', 'V', '1', '6') ||
fourcc == VA_FOURCC('I', 'M', 'C', '1')) ? 2 : 1;
const int V = (fourcc == VA_FOURCC('Y', 'V', '1', '2') ||
- fourcc == VA_FOURCC('V', 'V', '1', '6') ||
+ fourcc == VA_FOURCC('Y', 'V', '1', '6') ||
fourcc == VA_FOURCC('I', 'M', 'C', '1')) ? 1 : 2;
int interleaved_uv = fourcc == VA_FOURCC('N', 'V', '1', '2');
int packed_yuv = (fourcc == VA_FOURCC('Y', 'U', 'Y', '2') || fourcc == VA_FOURCC('U', 'Y', 'V', 'Y'));
@@ -1954,7 +1954,7 @@ gen7_pp_set_media_rw_message_surface(VADriverContextP ctx, struct i965_post_proc
height[2] = obj_image->image.height / 2;
pitch[2] = obj_image->image.pitches[V];
offset[2] = obj_image->image.offsets[V];
- if (fourcc == VA_FOURCC('V', 'V', '1', '6')) {
+ if (fourcc == VA_FOURCC('Y', 'V', '1', '6')) {
width[1] = obj_image->image.width / 2;
height[1] = obj_image->image.height;
width[2] = obj_image->image.width / 2;
--
1.8.2-rc2
More information about the Libva
mailing list