diff options
author | wm4 <wm4@nowhere> | 2016-05-11 16:18:58 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2016-05-11 16:20:13 +0200 |
commit | 70b35612704a992dac45856e069608216f41ea89 (patch) | |
tree | 6ed76d1cfc9f4dad857b0c8d56c7fd6db1bb24fc /video/out/opengl | |
parent | 2ec26b8396c8d44def148351ee370fde4b950cbf (diff) |
video: add --hwdec=auto-copy mode
This uses the normal autoprobing rules like "auto", but rejects anything
that isn't flagged as copying data back to system memory.
The chunk in command.c was dead code, so remove it instead of updating
it.
Diffstat (limited to 'video/out/opengl')
-rw-r--r-- | video/out/opengl/hwdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/opengl/hwdec.c b/video/out/opengl/hwdec.c index 1f654fc1ec..fac0c3ff9a 100644 --- a/video/out/opengl/hwdec.c +++ b/video/out/opengl/hwdec.c @@ -88,7 +88,7 @@ struct gl_hwdec *gl_hwdec_load_api(struct mp_log *log, GL *gl, struct mp_hwdec_devices *devs, enum hwdec_type api) { - bool is_auto = api == HWDEC_AUTO; + bool is_auto = HWDEC_IS_AUTO(api); for (int n = 0; mpgl_hwdec_drivers[n]; n++) { const struct gl_hwdec_driver *drv = mpgl_hwdec_drivers[n]; if (is_auto || api == drv->api) { |