summaryrefslogtreecommitdiffstats
path: root/help
diff options
context:
space:
mode:
authorivo <ivo@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-12-23 02:09:52 +0000
committerivo <ivo@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-12-23 02:09:52 +0000
commit3d4852d8e029c37902dfd83c8c7c46ba0c16cb37 (patch)
treee0284cf1d93f99a386c95ee6fadbe9891f3697b7 /help
parent7cdcc45e705bd2173c6ee74bd03eb001247a5638 (diff)
downloadmpv-3d4852d8e029c37902dfd83c8c7c46ba0c16cb37.tar.bz2
mpv-3d4852d8e029c37902dfd83c8c7c46ba0c16cb37.tar.xz
Adds support for LADSPA (Linux Audio Developer's Simple Plugin API) plugins.
Compilation is optional and can be controled by configure. You need to have the LADSPA SDK installed in order to have it autodetected by configure. Manual page is updated. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14218 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'help')
-rw-r--r--help/help_mp-en.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/help/help_mp-en.h b/help/help_mp-en.h
index f0699c1369..7c6f71cf74 100644
--- a/help/help_mp-en.h
+++ b/help/help_mp-en.h
@@ -1024,3 +1024,25 @@ static char help_text[]=
// ao_plugin.c
#define MSGTR_AO_PLUGIN_InvalidPlugin "[AO PLUGIN] invalid plugin: %s\n"
+
+// ======================= AF Audio Filters ================================
+
+// libaf
+
+// af_ladspa.c
+
+#define MSGTR_AF_LADSPA_AvailableLabels "available labels in"
+#define MSGTR_AF_LADSPA_WarnNoInputs "WARNING! This LADSPA plugin has no audio inputs.\n The incoming audio signal will be lost."
+#define MSGTR_AF_LADSPA_ErrMultiChannel "Multi-channel (>2) plugins are not supported (yet).\n Use only mono and stereo plugins."
+#define MSGTR_AF_LADSPA_ErrNoOutputs "This LADSPA plugin has no audio outputs."
+#define MSGTR_AF_LADSPA_ErrInOutDiff "The number of audio inputs and audio outputs of the LADSPA plugin differ."
+#define MSGTR_AF_LADSPA_ErrFailedToLoad "failed to load"
+#define MSGTR_AF_LADSPA_ErrNoDescriptor "Couldn't find ladspa_descriptor() function in the specified library file."
+#define MSGTR_AF_LADSPA_ErrLabelNotFound "Couldn't find label in plugin library."
+#define MSGTR_AF_LADSPA_ErrNoSuboptions "No suboptions specified"
+#define MSGTR_AF_LADSPA_ErrNoLibFile "No library file specified"
+#define MSGTR_AF_LADSPA_ErrNoLabel "No filter label specified"
+#define MSGTR_AF_LADSPA_ErrNotEnoughControls "Not enough controls specified on the command line"
+#define MSGTR_AF_LADSPA_ErrControlBelow "%s: Input control #%d is below lower boundary of %0.4f.\n"
+#define MSGTR_AF_LADSPA_ErrControlAbove "%s: Input control #%d is above upper boundary of %0.4f.\n"
+