summaryrefslogtreecommitdiffstats
path: root/video/out/opengl/hwdec_osx.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-07-15 12:01:30 +0200
committerwm4 <wm4@nowhere>2016-07-15 13:04:17 +0200
commitae94f329a9b1296bf740e85c888910f8483e21cd (patch)
treee5afe72935c8e2d735be01ab87472c4e8bb5c563 /video/out/opengl/hwdec_osx.c
parent85488f68928ed40020e545b736118e0273e06cd1 (diff)
downloadmpv-ae94f329a9b1296bf740e85c888910f8483e21cd.tar.bz2
mpv-ae94f329a9b1296bf740e85c888910f8483e21cd.tar.xz
vo_opengl: hwdec: reset hw_subfmt field
In theory, mp_image_params with hw_subfmt set to non-0 if imgfmt is not a hwaccel format is invalid. (It worked fine because nothing checks this yet.)
Diffstat (limited to 'video/out/opengl/hwdec_osx.c')
-rw-r--r--video/out/opengl/hwdec_osx.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/video/out/opengl/hwdec_osx.c b/video/out/opengl/hwdec_osx.c
index 17399a80f4..677661c09e 100644
--- a/video/out/opengl/hwdec_osx.c
+++ b/video/out/opengl/hwdec_osx.c
@@ -193,6 +193,7 @@ static int reinit(struct gl_hwdec *hw, struct mp_image_params *params)
}
params->imgfmt = f->imgfmt;
+ params->hw_subfmt = 0;
return 0;
}