diff options
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 44ce20fff..dbf8fb738 100644 --- a/Makefile.am +++ b/Makefile.am @@ -776,6 +776,15 @@ libtag_a_SOURCES += \ src/tag/Aiff.cxx src/tag/Aiff.hxx endif +# ffmpeg + +if HAVE_FFMPEG +noinst_LIBRARIES += libffmpeg.a +libffmpeg_a_SOURCES = \ + src/lib/ffmpeg/Domain.cxx src/lib/ffmpeg/Domain.hxx +FFMPEG_LIBS2 = libffmpeg.a $(FFMPEG_LIBS) +endif + # decoder plugins libdecoder_a_SOURCES = \ @@ -825,7 +834,7 @@ DECODER_LIBS = \ $(MPG123_LIBS) \ $(MP4V2_LIBS) \ $(OPUS_LIBS) \ - $(FFMPEG_LIBS) \ + $(FFMPEG_LIBS2) \ $(MPCDEC_LIBS) \ $(ADPLUG_LIBS) \ $(FAAD_LIBS) @@ -1104,7 +1113,7 @@ INPUT_LIBS = \ $(SMBCLIENT_LIBS) \ $(NFS_LIBS) \ $(CDIO_PARANOIA_LIBS) \ - $(FFMPEG_LIBS) \ + $(FFMPEG_LIBS2) \ $(DESPOTIFY_LIBS) \ $(MMS_LIBS) |