mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-12 04:11:31 +00:00
5312e1f777
Original commit message from CVS: Patch by: Michal Benes <michal dot benes at xeris dot cz> * ext/ffmpeg/Makefile.am: * ext/ffmpeg/gstffmpeg.c: (plugin_init): * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_codecid): * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_base_init), (gst_ffmpegmux_init), (gst_ffmpegmux_finalize), (gst_ffmpegmux_request_new_pad), (gst_ffmpegmux_setcaps), (gst_ffmpegmux_collected), (gst_ffmpegmux_change_state), (gst_ffmpegmux_register): Port of FFMpeg muxers to 0.10. Still needs some loving in gstffmpegcodecmap to have them all supported with correct input formats. Closes #332339
27 lines
770 B
Makefile
27 lines
770 B
Makefile
plugin_LTLIBRARIES = libgstffmpeg.la
|
|
|
|
libgstffmpeg_la_SOURCES = gstffmpeg.c \
|
|
gstffmpegprotocol.c \
|
|
gstffmpegcodecmap.c \
|
|
gstffmpegenc.c \
|
|
gstffmpegdec.c \
|
|
gstffmpegcfg.c \
|
|
gstffmpegdemux.c \
|
|
gstffmpegmux.c \
|
|
gstffmpegdeinterlace.c \
|
|
gstffmpegscale.c
|
|
|
|
libgstffmpeg_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) \
|
|
-I $(top_srcdir)/gst-libs/ext/ffmpeg/libavformat \
|
|
-I $(top_srcdir)/gst-libs/ext/ffmpeg/libavutil \
|
|
-I $(top_srcdir)/gst-libs/ext/ffmpeg/libavcodec
|
|
libgstffmpeg_la_LIBADD = \
|
|
$(top_builddir)/gst-libs/ext/ffmpeg/libavformat/libavformat.la \
|
|
$(GST_BASE_LIBS)
|
|
libgstffmpeg_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gstffmpeg.h \
|
|
gstffmpegcodecmap.h \
|
|
gstffmpegenc.h \
|
|
gstffmpegcfg.h
|