mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-12 22:52:49 +00:00
vtdec: Fix compilation on iOS 8.0
This commit is contained in:
parent
2071c13936
commit
0b34cde46e
1 changed files with 1 additions and 1 deletions
|
@ -97,7 +97,7 @@ static GstStaticPadTemplate gst_vtdec_sink_template =
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* define EnableHardwareAcceleratedVideoDecoder in < 10.9 */
|
/* define EnableHardwareAcceleratedVideoDecoder in < 10.9 */
|
||||||
#if MAC_OS_X_VERSION_MAX_ALLOWED < 1090
|
#if (defined(__IPHONE_OS_VERSION_MIN_REQUIRED) && __IPHONE_OS_VERSION_MIN_REQUIRED < __IPHONE_8_0) || (defined(MAC_OS_X_VERSION_MAX_ALLOWED) && MAC_OS_X_VERSION_MAX_ALLOWED < 1090)
|
||||||
const CFStringRef
|
const CFStringRef
|
||||||
kVTVideoDecoderSpecification_EnableHardwareAcceleratedVideoDecoder =
|
kVTVideoDecoderSpecification_EnableHardwareAcceleratedVideoDecoder =
|
||||||
CFSTR ("EnableHardwareAcceleratedVideoDecoder");
|
CFSTR ("EnableHardwareAcceleratedVideoDecoder");
|
||||||
|
|
Loading…
Reference in a new issue