diff options
author | Xiang, Haihao <haihao.xiang@intel.com> | 2014-01-07 13:13:25 +0800 |
---|---|---|
committer | Xiang, Haihao <haihao.xiang@intel.com> | 2014-01-07 13:13:25 +0800 |
commit | 5cf75cf43c6444451635aaf5349032fabe3b6cdb (patch) | |
tree | 4247e9609f7e3f04c801f094cbc512db71e168ef | |
parent | 8a3f5dbe9a5b847a629a8a6482bca89a616ef9dc (diff) | |
download | libva-intel-driver-5cf75cf43c6444451635aaf5349032fabe3b6cdb.tar.gz libva-intel-driver-5cf75cf43c6444451635aaf5349032fabe3b6cdb.tar.bz2 libva-intel-driver-5cf75cf43c6444451635aaf5349032fabe3b6cdb.zip |
VEBOX/bdw: set downsample method
Signed-off-by: Xiang, Haihao <haihao.xiang@intel.com>
-rw-r--r-- | src/gen75_vpp_vebox.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gen75_vpp_vebox.c b/src/gen75_vpp_vebox.c index 29eb14e..160560e 100644 --- a/src/gen75_vpp_vebox.c +++ b/src/gen75_vpp_vebox.c @@ -1360,8 +1360,8 @@ void bdw_veb_state_command(VADriverContextP ctx, struct intel_vebox_context *pro 0 << 11 | // vignette enable 0 << 10 | // demosaic enable di_output_frames_flag << 8 | // DI output frame - 0 << 7 | // 444->422 downsample method - 0 << 6 | // 422->420 downsample method + 1 << 7 | // 444->422 downsample method + 1 << 6 | // 422->420 downsample method is_first_frame << 5 | // DN/DI first frame is_di_enabled << 4 | // DI enable is_dn_enabled << 3 | // DN enable |