diff options
author | Gwenole Beauchesne <gwenole.beauchesne@intel.com> | 2014-06-03 17:30:11 +0200 |
---|---|---|
committer | Xiang, Haihao <haihao.xiang@intel.com> | 2014-06-16 11:53:35 +0800 |
commit | 585596a468db65e93b618b7aabe4e46d23de7b1f (patch) | |
tree | 37c454dbab0c34df0c2abfdec9384db0b806fe68 /src/i965_drv_video.h | |
parent | d07f1e3c6505b169f59f075b5ea5a82331118f8f (diff) | |
download | libva-intel-driver-585596a468db65e93b618b7aabe4e46d23de7b1f.tar.gz libva-intel-driver-585596a468db65e93b618b7aabe4e46d23de7b1f.tar.bz2 libva-intel-driver-585596a468db65e93b618b7aabe4e46d23de7b1f.zip |
decoder: h264: expose the set of supported MVC profiles.
H.264 MVC decoding support is defined as follows:
- Stereo High profile on Sandybridge and newer ;
- Multiview High profile on Haswell and newer.
Signed-off-by: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
(cherry picked from commit 1f244834dedb7b46863b315a898d8649d01c5f58)
Conflicts:
src/i965_device_info.c
src/i965_drv_video.c
src/va_backend_compat.h
Diffstat (limited to 'src/i965_drv_video.h')
-rw-r--r-- | src/i965_drv_video.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/i965_drv_video.h b/src/i965_drv_video.h index 75c66e9..e25b9c8 100644 --- a/src/i965_drv_video.h +++ b/src/i965_drv_video.h @@ -302,6 +302,7 @@ struct hw_codec_info int min_linear_wpitch; int min_linear_hpitch; + unsigned int h264_mvc_dec_profiles; unsigned int h264_dec_chroma_formats; unsigned int jpeg_dec_chroma_formats; @@ -321,7 +322,6 @@ struct hw_codec_info unsigned int has_di_motion_compensated:1; unsigned int has_vp8_decoding:1; unsigned int has_vp8_encoding:1; - unsigned int has_h264_mvc_decoding:1; unsigned int has_h264_mvc_encoding:1; unsigned int num_filters; |