diff options
author | Max Kellermann <max@duempel.org> | 2012-10-01 20:15:15 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2012-10-02 00:45:24 +0200 |
commit | d793b7c03ff7444b0aab485e5895573b4a4ff0a1 (patch) | |
tree | 94d3bc20c57b90045ea67bfb866f42ae671f6b24 /src/encoder/OpusEncoderPlugin.hxx | |
parent | 9a715267ad1a86de4c522ff6ed5fd11827132c77 (diff) | |
download | mpd-d793b7c03ff7444b0aab485e5895573b4a4ff0a1.tar.gz mpd-d793b7c03ff7444b0aab485e5895573b4a4ff0a1.tar.xz mpd-d793b7c03ff7444b0aab485e5895573b4a4ff0a1.zip |
encoder/opus: new encoder plugin for the Opus codec
Diffstat (limited to 'src/encoder/OpusEncoderPlugin.hxx')
-rw-r--r-- | src/encoder/OpusEncoderPlugin.hxx | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/encoder/OpusEncoderPlugin.hxx b/src/encoder/OpusEncoderPlugin.hxx new file mode 100644 index 000000000..f54377202 --- /dev/null +++ b/src/encoder/OpusEncoderPlugin.hxx @@ -0,0 +1,25 @@ +/* + * Copyright (C) 2003-2012 The Music Player Daemon Project + * http://www.musicpd.org + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +#ifndef MPD_ENCODER_OPUS_H +#define MPD_ENCODER_OPUS_H + +extern const struct encoder_plugin opus_encoder_plugin; + +#endif |