summaryrefslogtreecommitdiffstats
path: root/video/decode/lavc.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2017-02-16 15:25:18 +0100
committerwm4 <wm4@nowhere>2017-02-16 17:00:20 +0100
commitb949f2cee6af1ef47adcb6cf770e54c2787fa25c (patch)
tree6e40e8fb43edc8779f98c6840413e8f35feee81b /video/decode/lavc.h
parent05eb42f6e159d5fc2c485f766cfabbc1429b6a4d (diff)
downloadmpv-b949f2cee6af1ef47adcb6cf770e54c2787fa25c.tar.bz2
mpv-b949f2cee6af1ef47adcb6cf770e54c2787fa25c.tar.xz
vd_lavc: remove some leftover vaapi locking infrastructure
Diffstat (limited to 'video/decode/lavc.h')
-rw-r--r--video/decode/lavc.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/video/decode/lavc.h b/video/decode/lavc.h
index fd1c7feb42..46bf85a6e5 100644
--- a/video/decode/lavc.h
+++ b/video/decode/lavc.h
@@ -92,9 +92,6 @@ struct vd_lavc_hwdec {
struct mp_image *(*allocate_image)(struct lavc_ctx *ctx, int w, int h);
// Process the image returned by the libavcodec decoder.
struct mp_image *(*process_image)(struct lavc_ctx *ctx, struct mp_image *img);
- // For horrible Intel shit-drivers only
- void (*lock)(struct lavc_ctx *ctx);
- void (*unlock)(struct lavc_ctx *ctx);
// Optional; if a special hardware decoder is needed (instead of "hwaccel").
const char *(*get_codec)(struct lavc_ctx *ctx, const char *codec);
// Suffix for libavcodec decoder. If non-NULL, get_codec() is overridden