diff options
author | Max Kellermann <max@duempel.org> | 2013-07-30 08:52:47 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-07-30 08:52:47 +0200 |
commit | 7a3aac1843a9c84cd87512ef4e9bbc2def727591 (patch) | |
tree | e157029112d436ca4b915bf726441f49b83ac471 /src/EncoderList.cxx | |
parent | da1f4b3ede750c83039bcd21647569bde00a2992 (diff) | |
download | mpd-7a3aac1843a9c84cd87512ef4e9bbc2def727591.tar.gz mpd-7a3aac1843a9c84cd87512ef4e9bbc2def727591.tar.xz mpd-7a3aac1843a9c84cd87512ef4e9bbc2def727591.zip |
encoder/lame,twolame: convert to C++
Diffstat (limited to 'src/EncoderList.cxx')
-rw-r--r-- | src/EncoderList.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/EncoderList.cxx b/src/EncoderList.cxx index a07f41afa..e89140f47 100644 --- a/src/EncoderList.cxx +++ b/src/EncoderList.cxx @@ -25,12 +25,11 @@ #include "encoder/VorbisEncoderPlugin.hxx" #include "encoder/OpusEncoderPlugin.hxx" #include "encoder/FlacEncoderPlugin.hxx" +#include "encoder/LameEncoderPlugin.hxx" +#include "encoder/TwolameEncoderPlugin.hxx" #include <string.h> -extern const struct encoder_plugin lame_encoder_plugin; -extern const struct encoder_plugin twolame_encoder_plugin; - const struct encoder_plugin *const encoder_plugins[] = { &null_encoder_plugin, #ifdef ENABLE_VORBIS_ENCODER |