summaryrefslogtreecommitdiffstats
path: root/video/filter/vf.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-01-27 19:10:13 +0100
committerwm4 <wm4@nowhere>2015-01-27 19:10:13 +0100
commit86bba0dc5ba5ce9a5b10d602c9c261ed613cbbf3 (patch)
tree211044d9761d9876793de2c3d874ebe52bda93c9 /video/filter/vf.h
parent97f32fdb238aa7e8a38298935ea1f47cf8817adf (diff)
downloadmpv-86bba0dc5ba5ce9a5b10d602c9c261ed613cbbf3.tar.bz2
mpv-86bba0dc5ba5ce9a5b10d602c9c261ed613cbbf3.tar.xz
vf_divtc: remove this filter
Better solutions are available in vf_vapoursynth and vf_lavfi. The only user I know who used this is now using vf_vapoursynth.
Diffstat (limited to 'video/filter/vf.h')
-rw-r--r--video/filter/vf.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/video/filter/vf.h b/video/filter/vf.h
index e36632e019..b27f27e743 100644
--- a/video/filter/vf.h
+++ b/video/filter/vf.h
@@ -191,16 +191,4 @@ void vf_rescale_dsize(int *d_width, int *d_height, int old_w, int old_h,
int new_w, int new_h);
void vf_set_dar(int *d_width, int *d_height, int w, int h, double dar);
-struct vf_detc_pts_buf {
- double inpts_prev, outpts_prev;
- double lastdelta;
-};
-void vf_detc_init_pts_buf(struct vf_detc_pts_buf *p);
-/* Adjust pts when detelecining.
- * skip_frame: do not render this frame
- * reset_pattern: set to 1 if the telecine pattern has reset due to scene cut
- */
-double vf_detc_adjust_pts(struct vf_detc_pts_buf *p, double pts,
- bool reset_pattern, bool skip_frame);
-
#endif /* MPLAYER_VF_H */