mirror of
https://github.com/owntone/owntone-server.git
synced 2025-11-12 23:01:44 -05:00
configure.in:
- Added support for optional Ogg/Vorbis support via the --enable-oggvorbis flag. Makefile.am: - Added conditional compilation of ogg.c dependant on whether Ogg/Vorbis support is enabled. mp3-scanner.c: - Added hook for Ogg/Vorbis support. - Commented out code which set the "item_kind" of ogg files differently. It now sets it the same as other audio files. They show up in iTunes now but they will not stream. ogg.c: - Initial check-in. - Code adapted from 'ogginfo' program. Does parsing of Ogg/Vorbis tags.
This commit is contained in:
@@ -18,16 +18,20 @@ if COND_REND_OSX
|
||||
ORENDSRC=rend-osx.c rend-unix.c
|
||||
endif
|
||||
|
||||
if COND_OGGVORBIS
|
||||
OGGVORBISSRC=ogg.c
|
||||
endif
|
||||
|
||||
mt_daapd_SOURCES = main.c daapd.h rend.h uici.c uici.h webserver.c \
|
||||
webserver.h configfile.c configfile.h err.c err.h restart.c restart.h \
|
||||
daap-proto.c daap-proto.h daap.c daap.h db-gdbm.c db-memory.h \
|
||||
mp3-scanner.h mp3-scanner.c playlist.c playlist.h \
|
||||
rend-unix.h lexer.l parser.y strcasestr.c strcasestr.h strsep.c \
|
||||
redblack.c redblack.h dynamic-art.c dynamic-art.h query.c query.h \
|
||||
$(PRENDSRC) $(ORENDSRC) $(HRENDSRC)
|
||||
$(PRENDSRC) $(ORENDSRC) $(HRENDSRC) $(OGGVORBISSRC)
|
||||
|
||||
EXTRA_DIST = mDNS.c mDNSClientAPI.h mDNSDebug.h mDNSPosix.c \
|
||||
mDNSUNP.c mDNSPlatformFunctions.h mDNSPosix.h mDNSUNP.h \
|
||||
rend-howl.c rend-posix.c rend-osx.c strcasestr.c strsep.c db-memory.c \
|
||||
db-gdbm.c strcasestr.h redblack.c redblack.h db-memory.c \
|
||||
parser.h
|
||||
parser.h ogg.c
|
||||
|
||||
Reference in New Issue
Block a user