mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 07:17:45 -04:00
support mp3 decoding over libavcodec
This commit is contained in:
parent
90f0dedf83
commit
fc11dd059b
9 changed files with 342 additions and 158 deletions
5
Makefile
5
Makefile
|
@ -110,7 +110,12 @@ endif
|
|||
|
||||
endif # USE_FRONTEND
|
||||
|
||||
OBJS += platform/common/mp3.o
|
||||
ifeq "$(HAVE_LIBAVCODEC)" "1"
|
||||
OBJS += platform/common/mp3_libavcodec.o
|
||||
else
|
||||
OBJS += platform/common/mp3_dummy.o
|
||||
endif
|
||||
|
||||
# zlib
|
||||
OBJS += zlib/gzio.o zlib/inffast.o zlib/inflate.o zlib/inftrees.o zlib/trees.o \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue