summaryrefslogtreecommitdiffstats
path: root/audio/filter/af.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-01-22 20:36:54 +0100
committerwm4 <wm4@nowhere>2016-01-22 20:36:54 +0100
commitf176104ed5c7be37f4f0756b7244cbb90c4fe1fe (patch)
treeae109c2306ced588fafc0d7ec3a913710bab2869 /audio/filter/af.h
parent4c25f49236fc0aef29ba14b2905ea02edab6ec07 (diff)
downloadmpv-f176104ed5c7be37f4f0756b7244cbb90c4fe1fe.tar.bz2
mpv-f176104ed5c7be37f4f0756b7244cbb90c4fe1fe.tar.xz
command: add af-command command
Similar to vf-command. Requested. Untested.
Diffstat (limited to 'audio/filter/af.h')
-rw-r--r--audio/filter/af.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/audio/filter/af.h b/audio/filter/af.h
index 0e73693ac9..9c49081f66 100644
--- a/audio/filter/af.h
+++ b/audio/filter/af.h
@@ -124,6 +124,7 @@ enum af_control {
AF_CONTROL_SET_PLAYBACK_SPEED,
AF_CONTROL_SET_PLAYBACK_SPEED_RESAMPLE,
AF_CONTROL_GET_METADATA,
+ AF_CONTROL_COMMAND,
};
// Argument for AF_CONTROL_SET_PAN_LEVEL
@@ -144,6 +145,7 @@ struct af_instance *af_control_any_rev(struct af_stream *s, int cmd, void *arg);
void af_control_all(struct af_stream *s, int cmd, void *arg);
int af_control_by_label(struct af_stream *s, int cmd, void *arg, bstr label);
void af_seek_reset(struct af_stream *s);
+int af_send_command(struct af_stream *s, char *label, char *cmd, char *arg);
void af_add_output_frame(struct af_instance *af, struct mp_audio *frame);
int af_filter_frame(struct af_stream *s, struct mp_audio *frame);