summaryrefslogtreecommitdiffstats
path: root/video/out/gl_hwdec_vda.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-03-14 22:39:22 +0100
committerwm4 <wm4@nowhere>2015-03-14 22:39:22 +0100
commitaf705d0122add4faa9fb6a7518ee1120670a6629 (patch)
tree5318c9252785dd553542b046537389de0a90efaa /video/out/gl_hwdec_vda.c
parenta1b3af5df32558ddcf67432a706a7280f81c5f2d (diff)
downloadmpv-af705d0122add4faa9fb6a7518ee1120670a6629.tar.bz2
mpv-af705d0122add4faa9fb6a7518ee1120670a6629.tar.xz
vo_opengl: remove hwdec unmap_image callback
Not needed anymore; see previous commit.
Diffstat (limited to 'video/out/gl_hwdec_vda.c')
-rw-r--r--video/out/gl_hwdec_vda.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/video/out/gl_hwdec_vda.c b/video/out/gl_hwdec_vda.c
index 181674f641..dd28884797 100644
--- a/video/out/gl_hwdec_vda.c
+++ b/video/out/gl_hwdec_vda.c
@@ -135,8 +135,6 @@ static int map_image(struct gl_hwdec *hw, struct mp_image *hw_image,
return 0;
}
-static void unmap_image(struct gl_hwdec *hw) { }
-
static void destroy(struct gl_hwdec *hw)
{
struct priv *p = hw->priv;
@@ -153,6 +151,5 @@ const struct gl_hwdec_driver gl_hwdec_vda = {
.create = create,
.reinit = reinit,
.map_image = map_image,
- .unmap_image = unmap_image,
.destroy = destroy,
};