[Mesa-dev] [PATCH 01/20] vl: add MJPEG profile and format

Christian König deathsimple at vodafone.de
Thu Aug 17 10:30:14 UTC 2017


Am 16.08.2017 um 19:53 schrieb Leo Liu:
> v2: move util video change to here
>
> Signed-off-by: Leo Liu <leo.liu at amd.com>

Reviewed-by: Christian König <christian.koenig at amd.com>

> ---
>   src/gallium/auxiliary/util/u_video.h     | 3 +++
>   src/gallium/include/pipe/p_video_enums.h | 6 ++++--
>   2 files changed, 7 insertions(+), 2 deletions(-)
>
> diff --git a/src/gallium/auxiliary/util/u_video.h b/src/gallium/auxiliary/util/u_video.h
> index 251e144c79..f3596e08a1 100644
> --- a/src/gallium/auxiliary/util/u_video.h
> +++ b/src/gallium/auxiliary/util/u_video.h
> @@ -76,6 +76,9 @@ u_reduce_video_profile(enum pipe_video_profile profile)
>         case PIPE_VIDEO_PROFILE_HEVC_MAIN_444:
>            return PIPE_VIDEO_FORMAT_HEVC;
>   
> +      case PIPE_VIDEO_PROFILE_JPEG_BASELINE:
> +         return PIPE_VIDEO_FORMAT_JPEG;
> +
>         default:
>            return PIPE_VIDEO_FORMAT_UNKNOWN;
>      }
> diff --git a/src/gallium/include/pipe/p_video_enums.h b/src/gallium/include/pipe/p_video_enums.h
> index 1e05075bed..2b7186857a 100644
> --- a/src/gallium/include/pipe/p_video_enums.h
> +++ b/src/gallium/include/pipe/p_video_enums.h
> @@ -39,7 +39,8 @@ enum pipe_video_format
>      PIPE_VIDEO_FORMAT_MPEG4,    /**< DIVX, XVID */
>      PIPE_VIDEO_FORMAT_VC1,      /**< WMV */
>      PIPE_VIDEO_FORMAT_MPEG4_AVC,/**< H.264 */
> -   PIPE_VIDEO_FORMAT_HEVC      /**< H.265 */
> +   PIPE_VIDEO_FORMAT_HEVC,     /**< H.265 */
> +   PIPE_VIDEO_FORMAT_JPEG      /**< JPEG */
>   };
>   
>   enum pipe_video_profile
> @@ -65,7 +66,8 @@ enum pipe_video_profile
>      PIPE_VIDEO_PROFILE_HEVC_MAIN_10,
>      PIPE_VIDEO_PROFILE_HEVC_MAIN_STILL,
>      PIPE_VIDEO_PROFILE_HEVC_MAIN_12,
> -   PIPE_VIDEO_PROFILE_HEVC_MAIN_444
> +   PIPE_VIDEO_PROFILE_HEVC_MAIN_444,
> +   PIPE_VIDEO_PROFILE_JPEG_BASELINE
>   };
>   
>   /* Video caps, can be different for each codec/profile */




More information about the mesa-dev mailing list