summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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