summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-03-17 18:20:44 +0100
committerwm4 <wm4@nowhere>2014-03-17 18:20:44 +0100
commit4e70335c2fa3eaea6f8f2d11fb7981f55a582fa5 (patch)
tree8e549e243b36d1607f352032f5cb2d79f058a820 /video
parent5ed24862c01b217b4db0b04d74f29bad9bc80569 (diff)
downloadmpv-4e70335c2fa3eaea6f8f2d11fb7981f55a582fa5.tar.bz2
mpv-4e70335c2fa3eaea6f8f2d11fb7981f55a582fa5.tar.xz
vdpau: remove unused type
Diffstat (limited to 'video')
-rw-r--r--video/decode/vdpau.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/video/decode/vdpau.c b/video/decode/vdpau.c
index 34435360c3..ae8f6be531 100644
--- a/video/decode/vdpau.c
+++ b/video/decode/vdpau.c
@@ -39,12 +39,6 @@ struct priv {
AVVDPAUContext context;
};
-struct profile_entry {
- enum AVCodecID av_codec;
- VdpDecoderProfile vdp_profile;
- int maxrefs;
-};
-
#define PE(av_codec_id, ff_profile, vdp_profile) \
{AV_CODEC_ID_ ## av_codec_id, FF_PROFILE_ ## ff_profile, \
VDP_DECODER_PROFILE_ ## vdp_profile}