mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2025-07-03 00:06:31 +00:00
Fix for old Xcode version in CI
This commit is contained in:
parent
ff40bc105e
commit
3fb328e238
@ -285,6 +285,7 @@ int DrSubmitDecodeUnit(PDECODE_UNIT decodeUnit);
|
|||||||
// No frame data to submit for these NALUs
|
// No frame data to submit for these NALUs
|
||||||
return DR_OK;
|
return DR_OK;
|
||||||
}
|
}
|
||||||
|
#if defined(__IPHONE_16_0) || defined(__TVOS_16_0)
|
||||||
else if ((videoFormat & VIDEO_FORMAT_MASK_AV1) && frameType == FRAME_TYPE_IDR) {
|
else if ((videoFormat & VIDEO_FORMAT_MASK_AV1) && frameType == FRAME_TYPE_IDR) {
|
||||||
// AV1 doesn't have a special format description function like H.264 and HEVC have, so we just use the generic one
|
// AV1 doesn't have a special format description function like H.264 and HEVC have, so we just use the generic one
|
||||||
// TODO: Is this correct?
|
// TODO: Is this correct?
|
||||||
@ -294,6 +295,7 @@ int DrSubmitDecodeUnit(PDECODE_UNIT decodeUnit);
|
|||||||
formatDesc = NULL;
|
formatDesc = NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
if (formatDesc == NULL) {
|
if (formatDesc == NULL) {
|
||||||
// Can't decode if we haven't gotten our parameter sets yet
|
// Can't decode if we haven't gotten our parameter sets yet
|
||||||
|
Loading…
x
Reference in New Issue
Block a user