summaryrefslogtreecommitdiffstats
path: root/libmpcodecs
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-12-16 20:02:26 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-12-16 20:02:26 +0000
commit8e1126d26ecfbb799d802ac6009e850eea50ce88 (patch)
tree0ac04b9201b0b8f9f46424feb69c3516a7a14672 /libmpcodecs
parentc66f1237a5dde62473279b987153e62d2aa08f06 (diff)
downloadmpv-8e1126d26ecfbb799d802ac6009e850eea50ce88.tar.bz2
mpv-8e1126d26ecfbb799d802ac6009e850eea50ce88.tar.xz
Simplify: get rid of useless lame_presets_longinfo_dm function.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21638 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpcodecs')
-rw-r--r--libmpcodecs/ae_lame.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/libmpcodecs/ae_lame.c b/libmpcodecs/ae_lame.c
index 0c3022f372..aa99972570 100644
--- a/libmpcodecs/ae_lame.c
+++ b/libmpcodecs/ae_lame.c
@@ -213,7 +213,7 @@ static int lame_presets_set( lame_t gfp, int fast, int cbr, const char* preset_
if (strcmp(preset_name, "help") == 0) {
mp_msg(MSGT_MENCODER, MSGL_FATAL, MSGTR_LameVersion, get_lame_version(), get_lame_url());
- lame_presets_longinfo_dm(stderr);
+ mp_msg(MSGT_MENCODER, MSGL_FATAL, MSGTR_LamePresetsLongInfo);
return -1;
}
@@ -319,12 +319,3 @@ static int lame_presets_set( lame_t gfp, int fast, int cbr, const char* preset_
return -1;
}
#endif
-
-#ifdef HAVE_MP3LAME_PRESET
-/* lame_presets_longinfo_dm
- taken out of presets_longinfo_dm in lame-3.93.1/frontend/parse.c and modified */
-static void lame_presets_longinfo_dm ( FILE* msgfp )
-{
- mp_msg(MSGT_MENCODER, MSGL_FATAL, MSGTR_LamePresetsLongInfo);
-}
-#endif