summaryrefslogtreecommitdiffstats
path: root/player/lavfi.h
diff options
context:
space:
mode:
Diffstat (limited to 'player/lavfi.h')
-rw-r--r--player/lavfi.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/player/lavfi.h b/player/lavfi.h
index 0f2ae7705f..ef19a14179 100644
--- a/player/lavfi.h
+++ b/player/lavfi.h
@@ -13,6 +13,7 @@ enum lavfi_direction {
};
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);
@@ -22,7 +23,8 @@ 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_set_hwdec_devs(struct lavfi *c, struct mp_hwdec_devices *hwdevs);
+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_audio **out_aframe);
int lavfi_request_frame_v(struct lavfi_pad *pad, struct mp_image **out_vframe);
bool lavfi_needs_input(struct lavfi_pad *pad);