From 0366ba253159a551127a7d1817a4a000e078d322 Mon Sep 17 00:00:00 2001 From: wm4 Date: Fri, 26 Jan 2018 04:36:47 +0100 Subject: 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. --- player/lavfi.h | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 player/lavfi.h (limited to 'player/lavfi.h') 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 -- cgit v1.2.3