[FFmpeg-cvslog] avdevice/avfoundation: kCVPixelFormatType_OneComponent8 only exists from 10.8 onward

Hanspeter Niederstrasser git at videolan.org
Wed Jul 16 00:41:40 CEST 2014


ffmpeg | branch: master | Hanspeter Niederstrasser <niederstrasser at gmail.com> | Sun Jul 13 21:49:24 2014 -0500| [04980dbee805f372f0505a0afd9ae10c0da1e17e] | committer: Michael Niedermayer

avdevice/avfoundation: kCVPixelFormatType_OneComponent8 only exists from 10.8 onward

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=04980dbee805f372f0505a0afd9ae10c0da1e17e
---

 libavdevice/avfoundation.m |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/libavdevice/avfoundation.m b/libavdevice/avfoundation.m
index df322c6..74d7811 100644
--- a/libavdevice/avfoundation.m
+++ b/libavdevice/avfoundation.m
@@ -70,7 +70,9 @@ static const struct AVFPixelFormatSpec avf_pixel_formats[] = {
     { AV_PIX_FMT_YUV420P,      kCVPixelFormatType_420YpCbCr8Planar },
     { AV_PIX_FMT_NV12,         kCVPixelFormatType_420YpCbCr8BiPlanarVideoRange },
     { AV_PIX_FMT_YUYV422,      kCVPixelFormatType_422YpCbCr8_yuvs },
+#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1080
     { AV_PIX_FMT_GRAY8,        kCVPixelFormatType_OneComponent8 },
+#endif
     { AV_PIX_FMT_NONE, 0 }
 };
 



More information about the ffmpeg-cvslog mailing list