summaryrefslogtreecommitdiffstats
path: root/video/filter/vf.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-07-30 22:44:35 +0200
committerwm4 <wm4@nowhere>2014-07-30 23:29:00 +0200
commitf8ab732ac3cc635dde06c195fe48905116fe9eee (patch)
tree4eb7452144f89d53969e3a17e96645679e59b224 /video/filter/vf.c
parent8d990408d70f33f72e77a275e02f2439ec34844b (diff)
downloadmpv-f8ab732ac3cc635dde06c195fe48905116fe9eee.tar.bz2
mpv-f8ab732ac3cc635dde06c195fe48905116fe9eee.tar.xz
video/filter: add vf_buffer
Mostly useful for debugging.
Diffstat (limited to 'video/filter/vf.c')
-rw-r--r--video/filter/vf.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/video/filter/vf.c b/video/filter/vf.c
index 785fb9b908..e76d30ea23 100644
--- a/video/filter/vf.c
+++ b/video/filter/vf.c
@@ -72,6 +72,7 @@ extern const vf_info_t vf_info_lavfi;
extern const vf_info_t vf_info_vaapi;
extern const vf_info_t vf_info_vapoursynth;
extern const vf_info_t vf_info_vdpaupp;
+extern const vf_info_t vf_info_buffer;
// list of available filters:
static const vf_info_t *const filter_list[] = {
@@ -109,6 +110,7 @@ static const vf_info_t *const filter_list[] = {
&vf_info_sub,
&vf_info_yadif,
&vf_info_stereo3d,
+ &vf_info_buffer,
#if HAVE_DLOPEN
&vf_info_dlopen,
#endif