summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Ramacher <sramacher@debian.org>2014-05-23 08:57:39 +0800
committerXiang, Haihao <haihao.xiang@intel.com>2014-06-06 12:45:21 +0800
commitdfffd00a85aec108862bfcdbf537cc360dcca483 (patch)
tree84784aceb2053e08a3d69544dd621d7057628875
parenta664a099f7e41e16f3fbc13eb73f71e2cd0e72ae (diff)
Propagate error code
Signed-off-by: Sebastian Ramacher <sramacher@debian.org> Reviewed-by: Zhao, Yakui <yakui.zhao@intel.com> (cherry picked from commit ca1acd54eb59eadabfb40a4b61df2e8968b5e00d)
-rw-r--r--src/gen75_picture_process.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gen75_picture_process.c b/src/gen75_picture_process.c
index 87b6c68..6978d4b 100644
--- a/src/gen75_picture_process.c
+++ b/src/gen75_picture_process.c
@@ -57,8 +57,8 @@ gen75_vpp_fmt_cvt(VADriverContextP ctx,
proc_ctx->vpp_fmt_cvt_ctx = i965_proc_context_init(ctx, NULL);
}
- i965_proc_picture(ctx, profile, codec_state,
- proc_ctx->vpp_fmt_cvt_ctx);
+ va_status = i965_proc_picture(ctx, profile, codec_state,
+ proc_ctx->vpp_fmt_cvt_ctx);
return va_status;
}