mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 11:18:08 +02:00
st/va: add MJPEG for config
To enable MJPEG HW decode Signed-off-by: Leo Liu <leo.liu@amd.com> Reviewed-by: Christian König <christian.koenig@amd.com>
This commit is contained in:
parent
5608f44271
commit
03b89547b7
2 changed files with 5 additions and 1 deletions
|
|
@ -52,7 +52,7 @@ vlVaQueryConfigProfiles(VADriverContextP ctx, VAProfile *profile_list, int *num_
|
|||
*num_profiles = 0;
|
||||
|
||||
pscreen = VL_VA_PSCREEN(ctx);
|
||||
for (p = PIPE_VIDEO_PROFILE_MPEG2_SIMPLE; p <= PIPE_VIDEO_PROFILE_HEVC_MAIN_444; ++p) {
|
||||
for (p = PIPE_VIDEO_PROFILE_MPEG2_SIMPLE; p <= PIPE_VIDEO_PROFILE_JPEG_BASELINE; ++p) {
|
||||
if (u_reduce_video_profile(p) == PIPE_VIDEO_FORMAT_MPEG4 && !debug_get_option_mpeg4())
|
||||
continue;
|
||||
|
||||
|
|
|
|||
|
|
@ -170,6 +170,8 @@ PipeToProfile(enum pipe_video_profile profile)
|
|||
return VAProfileHEVCMain;
|
||||
case PIPE_VIDEO_PROFILE_HEVC_MAIN_10:
|
||||
return VAProfileHEVCMain10;
|
||||
case PIPE_VIDEO_PROFILE_JPEG_BASELINE:
|
||||
return VAProfileJPEGBaseline;
|
||||
case PIPE_VIDEO_PROFILE_MPEG4_AVC_EXTENDED:
|
||||
case PIPE_VIDEO_PROFILE_MPEG4_AVC_HIGH10:
|
||||
case PIPE_VIDEO_PROFILE_MPEG4_AVC_HIGH422:
|
||||
|
|
@ -214,6 +216,8 @@ ProfileToPipe(VAProfile profile)
|
|||
return PIPE_VIDEO_PROFILE_HEVC_MAIN;
|
||||
case VAProfileHEVCMain10:
|
||||
return PIPE_VIDEO_PROFILE_HEVC_MAIN_10;
|
||||
case VAProfileJPEGBaseline:
|
||||
return PIPE_VIDEO_PROFILE_JPEG_BASELINE;
|
||||
case VAProfileNone:
|
||||
return PIPE_VIDEO_PROFILE_UNKNOWN;
|
||||
default:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue