summaryrefslogtreecommitdiffstats
path: root/video/filter/vf.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-11-12 18:51:05 +0100
committerwm4 <wm4@nowhere>2014-11-12 19:30:59 +0100
commit509997ec129dc68466dc14abfc5e3e1b26e1279e (patch)
tree8191be78cadb016cef0216135c71c4280486bf0d /video/filter/vf.h
parentb244d5d8172e753b0ad7c628c74c46b665e47c2e (diff)
downloadmpv-509997ec129dc68466dc14abfc5e3e1b26e1279e.tar.bz2
mpv-509997ec129dc68466dc14abfc5e3e1b26e1279e.tar.xz
vf: minor simplification
Remove the extra vf_chain.output field - there's absolutely no need for it, because there is always a last filter which will buffer the output. For some reason, vf_chain.last was never set, which we now need to fix too.
Diffstat (limited to 'video/filter/vf.h')
-rw-r--r--video/filter/vf.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/video/filter/vf.h b/video/filter/vf.h
index 6f0985293e..e7e53bc3ce 100644
--- a/video/filter/vf.h
+++ b/video/filter/vf.h
@@ -121,8 +121,6 @@ struct vf_chain {
struct MPOpts *opts;
struct mpv_global *global;
struct mp_hwdec_info *hwdec;
-
- struct mp_image *output;
};
typedef struct vf_seteq {