summaryrefslogtreecommitdiffstats
path: root/video/out/opengl/video.c
diff options
context:
space:
mode:
Diffstat (limited to 'video/out/opengl/video.c')
-rw-r--r--video/out/opengl/video.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/video/out/opengl/video.c b/video/out/opengl/video.c
index ab799f3583..99b0d8273c 100644
--- a/video/out/opengl/video.c
+++ b/video/out/opengl/video.c
@@ -829,7 +829,7 @@ static void init_video(struct gl_video *p)
{
GL *gl = p->gl;
- if (p->hwdec && p->hwdec->driver->imgfmt == p->image_params.imgfmt) {
+ if (p->hwdec && gl_hwdec_test_format(p->hwdec, p->image_params.imgfmt)) {
if (p->hwdec->driver->reinit(p->hwdec, &p->image_params) < 0)
MP_ERR(p, "Initializing texture for hardware decoding failed.\n");
init_image_desc(p, p->image_params.imgfmt);
@@ -3397,7 +3397,7 @@ bool gl_video_check_format(struct gl_video *p, int mp_format)
{
if (init_format(p, mp_format, true))
return true;
- if (p->hwdec && p->hwdec->driver->imgfmt == mp_format)
+ if (p->hwdec && gl_hwdec_test_format(p->hwdec, mp_format))
return true;
return false;
}