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: