From ffa307e6147b8d99d22efd69948e27eb224d1ba2 Mon Sep 17 00:00:00 2001 From: "L. E. Segovia" Date: Wed, 16 Aug 2023 13:43:56 +0000 Subject: [PATCH] applemedia: Also fix inconsistent pixel format definition for NV12 Part-of: --- .../gst-plugins-bad/sys/applemedia/avsamplevideosink.m | 5 ----- 1 file changed, 5 deletions(-) diff --git a/subprojects/gst-plugins-bad/sys/applemedia/avsamplevideosink.m b/subprojects/gst-plugins-bad/sys/applemedia/avsamplevideosink.m index b527f7777f..75a5601d4c 100644 --- a/subprojects/gst-plugins-bad/sys/applemedia/avsamplevideosink.m +++ b/subprojects/gst-plugins-bad/sys/applemedia/avsamplevideosink.m @@ -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: