summaryrefslogtreecommitdiffstats
path: root/libaf/control.h
diff options
context:
space:
mode:
authoranders <anders@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-10-31 08:03:51 +0000
committeranders <anders@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-10-31 08:03:51 +0000
commita72b161551062f97dca53a49e44f604124a3532b (patch)
tree1c7b34de3dfe3f7bd7134c7992254e98669e70ea /libaf/control.h
parentaae530974747ffe340aa58e9785e9c56a2a29986 (diff)
downloadmpv-a72b161551062f97dca53a49e44f604124a3532b.tar.bz2
mpv-a72b161551062f97dca53a49e44f604124a3532b.tar.xz
Changing the behavour of the commandline parameter -af to conform with -vop. Adding new commanline parameter -af-adv for advanced af options. Adding changes to volume control to support commandline parameters.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7994 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libaf/control.h')
-rw-r--r--libaf/control.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/libaf/control.h b/libaf/control.h
index 6c44a76efe..7757210647 100644
--- a/libaf/control.h
+++ b/libaf/control.h
@@ -29,12 +29,17 @@
/* Called just after creation with the af_cfg for the stream in which
the filter resides as input parameter this call can be used by the
- filter to initialize itself using commandline parameters */
+ filter to initialize itself */
#define AF_CONTROL_POST_CREATE 1 + AF_CONTROL_OPTIONAL_BASE
// Called just before destruction of a filter
#define AF_CONTROL_PRE_DESTROY 2 + AF_CONTROL_OPTIONAL_BASE
+/* Commandline parameters. If there were any commandline parameters
+ for this specific filter, they will be given as a char* in the
+ argument */
+#define AF_CONTROL_COMMAND_LINE 3 + AF_CONTROL_OPTIONAL_BASE
+
// FILTER SPECIFIC CALLS