applemedia: Also fix inconsistent pixel format definition for NV12

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5203>
This commit is contained in:
L. E. Segovia 2023-08-16 13:43:56 +00:00 committed by GStreamer Marge Bot
parent 6cfb9b7c85
commit ffa307e614

View file

@ -288,11 +288,8 @@ _cv_pixel_format_type_from_video_format (GstVideoFormat format)
return kCVPixelFormatType_24RGB;
case GST_VIDEO_FORMAT_BGR:
return kCVPixelFormatType_24BGR;
#if 0
/* FIXME doesn't seem to work */
case GST_VIDEO_FORMAT_NV12:
return kCVPixelFormatType_420YpCbCr8BiPlanarVideoRange;
#endif
case GST_VIDEO_FORMAT_I420:
return kCVPixelFormatType_420YpCbCr8Planar;
case GST_VIDEO_FORMAT_YUY2:
@ -330,10 +327,8 @@ _pixel_format_description_to_video_format (CFDictionaryRef attrs)
return GST_VIDEO_FORMAT_RGB;
case kCVPixelFormatType_24BGR:
return GST_VIDEO_FORMAT_BGR;
#if 0
case kCVPixelFormatType_420YpCbCr8BiPlanarVideoRange:
return GST_VIDEO_FORMAT_NV12;
#endif
case kCVPixelFormatType_420YpCbCr8Planar:
return GST_VIDEO_FORMAT_I420;
case kCVPixelFormatType_422YpCbCr8_yuvs: