diff options
author | Eric Wong <normalperson@yhbt.net> | 2008-03-20 05:27:04 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2008-03-20 05:27:04 +0000 |
commit | 7c69161913273d3a724f3798335d367c43247feb (patch) | |
tree | 8325a2ce134f04ebe8a1940f11a30ecd6b520e6d /src | |
parent | 7d574703ad45f4e11425598ef59deef20dc654e9 (diff) | |
download | mpd-7c69161913273d3a724f3798335d367c43247feb.tar.gz mpd-7c69161913273d3a724f3798335d367c43247feb.tar.xz mpd-7c69161913273d3a724f3798335d367c43247feb.zip |
inputPlugins: add .oga suffix support for Ogg containers
From <http://wiki.xiph.org/index.php/MIME_Types_and_File_Extensions>:
> .oga - audio/ogg
>
> * Ogg Audio Profile (audio in Ogg container)
> * Applications supporting .oga, .ogv SHOULD support decoding
> from muxed Ogg streams
> * Covers Ogg FLAC, Ghost, and OggPCM
> * Although they share the same MIME type, Vorbis and Speex
> use different file extensions.
> * SHOULD contain a Skeleton logical bitstream.
> * Vorbis and Speex may use .oga, but it is not the
> prefered(sic) method of distributing these files because of
> backwards-compatibility issues.
Thanks to Qball and Rasi for the patch.
git-svn-id: https://svn.musicpd.org/mpd/trunk@7191 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src')
-rw-r--r-- | src/inputPlugins/oggflac_plugin.c | 2 | ||||
-rw-r--r-- | src/inputPlugins/oggvorbis_plugin.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/inputPlugins/oggflac_plugin.c b/src/inputPlugins/oggflac_plugin.c index 6b8a682d5..15536ab9a 100644 --- a/src/inputPlugins/oggflac_plugin.c +++ b/src/inputPlugins/oggflac_plugin.c @@ -390,7 +390,7 @@ fail: return ret; } -static const char *oggflac_Suffixes[] = { "ogg", NULL }; +static const char *oggflac_Suffixes[] = { "ogg", "oga",NULL }; static const char *oggflac_mime_types[] = { "audio/x-flac+ogg", "application/ogg", "application/x-ogg", diff --git a/src/inputPlugins/oggvorbis_plugin.c b/src/inputPlugins/oggvorbis_plugin.c index a2648ce62..3bcc505f8 100644 --- a/src/inputPlugins/oggvorbis_plugin.c +++ b/src/inputPlugins/oggvorbis_plugin.c @@ -383,7 +383,7 @@ static unsigned int oggvorbis_try_decode(InputStream * inStream) return (ogg_stream_type_detect(inStream) == VORBIS) ? 1 : 0; } -static const char *oggvorbis_Suffixes[] = { "ogg", NULL }; +static const char *oggvorbis_Suffixes[] = { "ogg","oga", NULL }; static const char *oggvorbis_MimeTypes[] = { "application/ogg", "audio/x-vorbis+ogg", "application/x-ogg", |