mirror of
https://github.com/mpv-player/mpv
synced 2024-10-30 04:46:41 +01:00
vd_lavc: fix crash with RPI hwdec
If you use vo_rpi, this could crash, because hwdec_devs is NULL. Untested. Fixes #5301.
This commit is contained in:
parent
0030e049cd
commit
5cbadbe721
@ -453,7 +453,8 @@ static void select_and_set_hwdec(struct dec_video *vd)
|
|||||||
} else if (!hwdec->copying) {
|
} else if (!hwdec->copying) {
|
||||||
// Most likely METHOD_INTERNAL, which often use delay-loaded
|
// Most likely METHOD_INTERNAL, which often use delay-loaded
|
||||||
// VO support as well.
|
// VO support as well.
|
||||||
hwdec_devices_request_all(vd->hwdec_devs);
|
if (vd->hwdec_devs)
|
||||||
|
hwdec_devices_request_all(vd->hwdec_devs);
|
||||||
}
|
}
|
||||||
|
|
||||||
ctx->use_hwdec = true;
|
ctx->use_hwdec = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user