diff options
author | Sebastian Ramacher <sramacher@debian.org> | 2014-05-23 08:57:39 +0800 |
---|---|---|
committer | Xiang, Haihao <haihao.xiang@intel.com> | 2014-06-06 12:45:21 +0800 |
commit | dfffd00a85aec108862bfcdbf537cc360dcca483 (patch) | |
tree | 84784aceb2053e08a3d69544dd621d7057628875 | |
parent | a664a099f7e41e16f3fbc13eb73f71e2cd0e72ae (diff) | |
download | libva-intel-driver-dfffd00a85aec108862bfcdbf537cc360dcca483.tar.gz libva-intel-driver-dfffd00a85aec108862bfcdbf537cc360dcca483.tar.bz2 libva-intel-driver-dfffd00a85aec108862bfcdbf537cc360dcca483.zip |
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.c | 4 |
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; } |