diff options
author | Eric Wong <normalperson@yhbt.net> | 2007-09-17 11:30:37 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2007-09-17 11:30:37 +0000 |
commit | 3a03b89b48eb206c82878dc7743ffc412c30039b (patch) | |
tree | aa282cae4f01166a86d8268b6599682cfab1ece4 /src | |
parent | 1337f33c623d96e5be3d28bf76bb14d0b23b9d83 (diff) | |
download | mpd-3a03b89b48eb206c82878dc7743ffc412c30039b.tar.gz mpd-3a03b89b48eb206c82878dc7743ffc412c30039b.tar.xz mpd-3a03b89b48eb206c82878dc7743ffc412c30039b.zip |
inputPlugins/_ogg_common.c: fixup includes for new (1.1.4+ FLAC)
ogg_stream_type_detect may not be compiled correctly
when compiling FLAC (1.1.4+) without Vorbis
git-svn-id: https://svn.musicpd.org/mpd/trunk@6896 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src')
-rw-r--r-- | src/inputPlugins/_ogg_common.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/inputPlugins/_ogg_common.c b/src/inputPlugins/_ogg_common.c index c83e46103..09fc60c5a 100644 --- a/src/inputPlugins/_ogg_common.c +++ b/src/inputPlugins/_ogg_common.c @@ -21,10 +21,12 @@ #include "../inputPlugin.h" +#include "_flac_common.h" +#include "_ogg_common.h" + #if defined(HAVE_OGGFLAC) || defined(HAVE_OGGVORBIS) #include "../utils.h" -#include "_ogg_common.h" #include <string.h> |