mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-12 04:11:31 +00:00
6984879ed6
Original commit message from CVS: * configure.ac: * ext/ffmpeg/Makefile.am: * ext/ffmpeg/gstffmpeg.c: (plugin_init): * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid): * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init), (gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event), (gst_ffmpegdec_open), (gst_ffmpegdec_setcaps), (gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate), (gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event), (gst_ffmpegdec_chain), (gst_ffmpegdec_change_state), (gst_ffmpegdec_register): * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init), (gst_ffmpegenc_init), (gst_ffmpegenc_getcaps), (gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video), (gst_ffmpegenc_chain_audio): * ext/libpostproc/Makefile.am: Backport BRANCH-THREADED to HEAD, fix a bit.
25 lines
719 B
Makefile
25 lines
719 B
Makefile
plugin_LTLIBRARIES = libgstffmpeg.la
|
|
|
|
libgstffmpeg_la_SOURCES = gstffmpeg.c \
|
|
gstffmpegcodecmap.c \
|
|
gstffmpegdec.c \
|
|
gstffmpegenc.c
|
|
# gstffmpegdemux.c \
|
|
# gstffmpegmux.c \
|
|
# gstffmpegprotocol.c \
|
|
# gstffmpegcolorspace.c \
|
|
# gstffmpegscale.c \
|
|
# gstffmpegdeinterlace.c
|
|
|
|
libgstffmpeg_la_CFLAGS = $(GST_CFLAGS) \
|
|
-I $(top_srcdir)/gst-libs/ext/ffmpeg/libavformat \
|
|
-I $(top_srcdir)/gst-libs/ext/ffmpeg/libavcodec
|
|
libgstffmpeg_la_LIBADD = \
|
|
$(top_builddir)/gst-libs/ext/ffmpeg/libavformat/libavformat.la \
|
|
$(top_builddir)/gst-libs/ext/ffmpeg/libavcodec/libavcodec.la
|
|
|
|
libgstffmpeg_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gstffmpeg.h \
|
|
gstffmpegcodecmap.h
|