mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
slurp in ffmpeg a) please test b) please help me figure out how to portably link in a .a file in our .so plugin
Original commit message from CVS: slurp in ffmpeg a) please test b) please help me figure out how to portably link in a .a file in our .so plugin
This commit is contained in:
parent
0d32d395f1
commit
63c54e2350
2 changed files with 9 additions and 4 deletions
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit 79e6940e7ff1a6cbf959a1f7a0a3d1ed3f90d3ee
|
||||
Subproject commit 4a7bc52a893bdd9fefa9fabe460c827822a9e0f2
|
|
@ -11,8 +11,13 @@ libgstffmpeg_la_SOURCES = gstffmpeg.c \
|
|||
gstffmpegprotocol.c \
|
||||
gstffmpegtypes.c
|
||||
|
||||
libgstffmpeg_la_CFLAGS = $(GST_CFLAGS) $(FFMPEG_CFLAGS)
|
||||
libgstffmpeg_la_LIBADD =
|
||||
libgstffmpeg_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(FFMPEG_LIBS)
|
||||
libgstffmpeg_la_CFLAGS = $(GST_CFLAGS) \
|
||||
-I $(top_builddir)/gst-libs/ext/ffmpeg/ffmpeg/libavcodec \
|
||||
-I $(top_builddir)/gst-libs/ext/ffmpeg/ffmpeg/libavformat
|
||||
libgstffmpeg_la_LIBADD = \
|
||||
$(top_builddir)/gst-libs/ext/ffmpeg/ffmpeg/libavcodec/libavcodec.a \
|
||||
$(top_builddir)/gst-libs/ext/ffmpeg/ffmpeg/libavformat/libavformat.a
|
||||
|
||||
libgstffmpeg_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
|
||||
noinst_HEADERS =
|
||||
|
|
Loading…
Reference in a new issue