summaryrefslogtreecommitdiffstats
path: root/player/lavfi.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2018-01-26 04:36:47 +0100
committerKevin Mitchell <kevmitch@gmail.com>2018-01-30 03:10:27 -0800
commit0366ba253159a551127a7d1817a4a000e078d322 (patch)
tree6264357813da67a293b20f8685031f21371debdb /player/lavfi.h
parentb9f804b566c4c528714e4ec5e63675ad7ba5fefd (diff)
downloadmpv-0366ba253159a551127a7d1817a4a000e078d322.tar.bz2
mpv-0366ba253159a551127a7d1817a4a000e078d322.tar.xz
player: replace old lavfi wrapper with new filter code
lavfi.c is not necessary anymore, because f_lavfi.c (which was actually converted from it) can be used now.
Diffstat (limited to 'player/lavfi.h')
-rw-r--r--player/lavfi.h35
1 files changed, 0 insertions, 35 deletions
diff --git a/player/lavfi.h b/player/lavfi.h
deleted file mode 100644
index 92c32954d7..0000000000
--- a/player/lavfi.h
+++ /dev/null
@@ -1,35 +0,0 @@
-#ifndef MP_LAVFI
-#define MP_LAVFI
-
-struct mp_log;
-struct lavfi;
-struct lavfi_pad;
-struct mp_image;
-struct mp_aframe;
-
-enum lavfi_direction {
- LAVFI_IN = 1,
- LAVFI_OUT,
-};
-
-struct lavfi *lavfi_create(struct mp_log *log, char *graph_string);
-const char *lavfi_get_graph(struct lavfi *c);
-void lavfi_destroy(struct lavfi *c);
-struct lavfi_pad *lavfi_find_pad(struct lavfi *c, char *name);
-enum lavfi_direction lavfi_pad_direction(struct lavfi_pad *pad);
-enum stream_type lavfi_pad_type(struct lavfi_pad *pad);
-void lavfi_set_connected(struct lavfi_pad *pad, bool connected);
-bool lavfi_get_connected(struct lavfi_pad *pad);
-bool lavfi_process(struct lavfi *c);
-bool lavfi_has_failed(struct lavfi *c);
-void lavfi_seek_reset(struct lavfi *c);
-void lavfi_pad_set_hwdec_devs(struct lavfi_pad *pad,
- struct mp_hwdec_devices *hwdevs);
-int lavfi_request_frame_a(struct lavfi_pad *pad, struct mp_aframe **out_aframe);
-int lavfi_request_frame_v(struct lavfi_pad *pad, struct mp_image **out_vframe);
-bool lavfi_needs_input(struct lavfi_pad *pad);
-void lavfi_send_status(struct lavfi_pad *pad, int status);
-void lavfi_send_frame_a(struct lavfi_pad *pad, struct mp_aframe *aframe);
-void lavfi_send_frame_v(struct lavfi_pad *pad, struct mp_image *vframe);
-
-#endif