mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
4ec81ff7fa
Original commit message from CVS: reviewed by: Edward Hervey <edward@fluendo.com> * ext/ffmpeg/Makefile.am: * ext/ffmpeg/gstffmpeg.c: (plugin_init): * ext/ffmpeg/gstffmpegdeinterlace.c: (gst_ffmpegdeinterlace_base_init), (gst_ffmpegdeinterlace_class_init), (gst_ffmpegdeinterlace_sink_setcaps), (gst_ffmpegdeinterlace_init), (gst_ffmpegdeinterlace_chain), (gst_ffmpegdeinterlace_register): ffdeinterlace port to 0.10. Could be made a subclass of GstBaseTransform later on...
24 lines
710 B
Makefile
24 lines
710 B
Makefile
plugin_LTLIBRARIES = libgstffmpeg.la
|
|
|
|
libgstffmpeg_la_SOURCES = gstffmpeg.c \
|
|
gstffmpegcodecmap.c \
|
|
gstffmpegdec.c \
|
|
gstffmpegenc.c \
|
|
gstffmpegdeinterlace.c
|
|
# gstffmpegdemux.c \
|
|
# gstffmpegmux.c \
|
|
# gstffmpegprotocol.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_LIBS)
|
|
libgstffmpeg_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gstffmpeg.h \
|
|
gstffmpegcodecmap.h
|