diff options
author | Max Kellermann <max@duempel.org> | 2010-05-18 20:48:52 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2010-05-18 21:20:31 +0200 |
commit | fa2ff849c5fbcdc20b70379af300f2c1293ed5ea (patch) | |
tree | 1bc204de5d9a0c0653a9b761aff0274f85d29a66 /Makefile.am | |
parent | 6b2b91ff01050ca79256026e5f92ba6da93fc5cf (diff) |
input/ffmpeg: new input plugin using libavformat's "avio" library
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 86b0246fa..d9f32f468 100644 --- a/Makefile.am +++ b/Makefile.am @@ -101,6 +101,7 @@ mpd_headers = \ src/input_registry.h \ src/input_stream.h \ src/input/file_input_plugin.h \ + src/input/ffmpeg_input_plugin.h \ src/input/curl_input_plugin.h \ src/input/rewind_input_plugin.h \ src/input/mms_input_plugin.h \ @@ -590,10 +591,12 @@ endif INPUT_CFLAGS = \ $(CURL_CFLAGS) \ + $(FFMPEG_CFLAGS) \ $(MMS_CFLAGS) INPUT_LIBS = \ $(CURL_LIBS) \ + $(FFMPEG_LIBS) \ $(MMS_LIBS) INPUT_SRC = \ @@ -608,6 +611,10 @@ INPUT_SRC += src/input/curl_input_plugin.c \ src/icy_metadata.c endif +if HAVE_FFMPEG +INPUT_SRC += src/input/ffmpeg_input_plugin.c +endif + if ENABLE_MMS INPUT_SRC += src/input/mms_input_plugin.c endif |