mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2025-07-18 18:42:40 +00:00
Don't use SdlRenderer with MMAL
This commit is contained in:
parent
97412b3c79
commit
d8acf24af0
@ -709,7 +709,11 @@ bool FFmpegVideoDecoder::tryInitializeRendererForDecoderByName(const char *decod
|
|||||||
#ifdef HAVE_MMAL
|
#ifdef HAVE_MMAL
|
||||||
TRY_PREFERRED_PIXEL_FORMAT(MmalRenderer);
|
TRY_PREFERRED_PIXEL_FORMAT(MmalRenderer);
|
||||||
#endif
|
#endif
|
||||||
TRY_PREFERRED_PIXEL_FORMAT(SdlRenderer);
|
// HACK: Avoid using YUV420P on h264_mmal. It can cause a deadlock inside the MMAL libraries.
|
||||||
|
// Even if it didn't completely deadlock us, the performance would likely be atrocious.
|
||||||
|
if (strcmp(decoderName, "h264_mmal") != 0) {
|
||||||
|
TRY_PREFERRED_PIXEL_FORMAT(SdlRenderer);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Nothing prefers any of them. Let's see if anyone will tolerate one.
|
// Nothing prefers any of them. Let's see if anyone will tolerate one.
|
||||||
@ -720,7 +724,10 @@ bool FFmpegVideoDecoder::tryInitializeRendererForDecoderByName(const char *decod
|
|||||||
#ifdef HAVE_MMAL
|
#ifdef HAVE_MMAL
|
||||||
TRY_SUPPORTED_PIXEL_FORMAT(MmalRenderer);
|
TRY_SUPPORTED_PIXEL_FORMAT(MmalRenderer);
|
||||||
#endif
|
#endif
|
||||||
TRY_SUPPORTED_PIXEL_FORMAT(SdlRenderer);
|
// HACK: See comment above
|
||||||
|
if (strcmp(decoderName, "h264_mmal") != 0) {
|
||||||
|
TRY_SUPPORTED_PIXEL_FORMAT(SdlRenderer);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// If we made it here, we couldn't find anything
|
// If we made it here, we couldn't find anything
|
||||||
|
Loading…
x
Reference in New Issue
Block a user