# HG changeset patch # User reimar # Date 1166299346 0 # Node ID 5cd2a00410196b4d41b809ac61bfbb295b394c97 # Parent 28ade900407d45d133720eed7f5e672112f78a84 Simplify: get rid of useless lame_presets_longinfo_dm function. diff -r 28ade900407d -r 5cd2a0041019 libmpcodecs/ae_lame.c --- a/libmpcodecs/ae_lame.c Sat Dec 16 19:59:37 2006 +0000 +++ b/libmpcodecs/ae_lame.c Sat Dec 16 20:02:26 2006 +0000 @@ -213,7 +213,7 @@ 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 @@ 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