summaryrefslogtreecommitdiffstats
path: root/video/decode/lavc.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2017-07-04 15:01:03 +0200
committerwm4 <wm4@nowhere>2017-07-04 15:01:03 +0200
commitabe01fd18a341c5c163d4ce8f019ca366feec628 (patch)
tree2794ca2feeb5735f1c699653e4a3e842d23774d0 /video/decode/lavc.h
parente76d56d57bb0382cc33bdf0a4c2eaa08b3c315c4 (diff)
downloadmpv-abe01fd18a341c5c163d4ce8f019ca366feec628.tar.bz2
mpv-abe01fd18a341c5c163d4ce8f019ca366feec628.tar.xz
vd_lavc: remove unused hwaccel support code
Was used by old hwaccel implementations.
Diffstat (limited to 'video/decode/lavc.h')
-rw-r--r--video/decode/lavc.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/video/decode/lavc.h b/video/decode/lavc.h
index e567a49b4e..44b103e3f5 100644
--- a/video/decode/lavc.h
+++ b/video/decode/lavc.h
@@ -133,16 +133,10 @@ struct hwdec_profile_entry {
uint64_t hw_profile;
};
-const struct hwdec_profile_entry *hwdec_find_profile(
- struct lavc_ctx *ctx, const struct hwdec_profile_entry *table);
-bool hwdec_check_codec_support(const char *codec,
- const struct hwdec_profile_entry *table);
int hwdec_get_max_refs(struct lavc_ctx *ctx);
int hwdec_setup_hw_frames_ctx(struct lavc_ctx *ctx, AVBufferRef *device_ctx,
int av_sw_format, int initial_pool_size);
-const char *hwdec_find_decoder(const char *codec, const char *suffix);
-
#define NEW_CUDA_HWACCEL \
(HAVE_CUDA_HWACCEL && LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(57, 94, 100))