comparison cfg-mencoder.h @ 11375:3544f1823f6b

mencoder lavc audio encoding support
author ranma
date Mon, 03 Nov 2003 16:35:40 +0000
parents 835822ce4bb1
children 6afc2d6f5a08
comparison
equal deleted inserted replaced
11374:e00d3351b912 11375:3544f1823f6b
106 #ifdef HAVE_MP3LAME 106 #ifdef HAVE_MP3LAME
107 {"mp3lame", &out_audio_codec, CONF_TYPE_FLAG, 0, 0, ACODEC_VBRMP3, NULL}, 107 {"mp3lame", &out_audio_codec, CONF_TYPE_FLAG, 0, 0, ACODEC_VBRMP3, NULL},
108 #else 108 #else
109 {"mp3lame", "MPlayer was compiled without libmp3lame support!\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL}, 109 {"mp3lame", "MPlayer was compiled without libmp3lame support!\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
110 #endif 110 #endif
111 #ifdef USE_LIBAVCODEC
112 {"lavc", &out_audio_codec, CONF_TYPE_FLAG, 0, 0, ACODEC_LAVC, NULL},
113 #else
114 {"lavc", "MPlayer was compiled without libavcodec! See README or DOCS!\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
115 #endif
111 {"help", "\nAvailable codecs:\n" 116 {"help", "\nAvailable codecs:\n"
112 " copy - frame copy, without re-encoding (useful for AC3)\n" 117 " copy - frame copy, without re-encoding (useful for AC3)\n"
113 " pcm - uncompressed PCM audio\n" 118 " pcm - uncompressed PCM audio\n"
114 #ifdef HAVE_MP3LAME 119 #ifdef HAVE_MP3LAME
115 " mp3lame - cbr/abr/vbr MP3 using libmp3lame\n" 120 " mp3lame - cbr/abr/vbr MP3 using libmp3lame\n"
121 #endif
122 #ifdef USE_LIBAVCODEC
123 " lavc - ffmpeg audio encoder (mp2, ac3, ...)\n"
116 #endif 124 #endif
117 "\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL}, 125 "\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
118 {NULL, NULL, 0, 0, 0, 0, NULL} 126 {NULL, NULL, 0, 0, 0, 0, NULL}
119 }; 127 };
120 128