2003-06-07 00:41:32 +00:00
|
|
|
plugin_LTLIBRARIES = libgstffmpeg.la
|
2001-12-23 13:25:04 +00:00
|
|
|
|
2002-11-06 23:53:46 +00:00
|
|
|
libgstffmpeg_la_SOURCES = gstffmpeg.c \
|
2002-11-25 21:37:26 +00:00
|
|
|
gstffmpegcodecmap.c \
|
2002-11-06 23:53:46 +00:00
|
|
|
gstffmpegdec.c \
|
2006-01-20 14:17:16 +00:00
|
|
|
gstffmpegenc.c \
|
ext/ffmpeg/: Welcome the demuxers to 0.10 :)
Original commit message from CVS:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_base_init),
(gst_ffmpegdemux_init), (gst_ffmpegdemux_stream_from_pad),
(gst_ffmpegdemux_handle_seek), (gst_ffmpegdemux_src_event),
(gst_ffmpegdemux_src_query_list), (gst_ffmpegdemux_src_query),
(gst_ffmpegdemux_add), (gst_ffmpegdemux_open),
(gst_ffmpegdemux_loop), (gst_ffmpegdemux_sink_activate),
(gst_ffmpegdemux_sink_activate_pull),
(gst_ffmpegdemux_change_state), (gst_ffmpegdemux_register):
* ext/ffmpeg/gstffmpegprotocol.c: (gst_ffmpegdata_open),
(gst_ffmpegdata_peek), (gst_ffmpegdata_read),
(gst_ffmpegdata_write), (gst_ffmpegdata_seek),
(gst_ffmpegdata_close):
Welcome the demuxers to 0.10 :)
For the time being the demuxers work only pull-based.
Seeking, querying works.
2006-02-10 19:42:19 +00:00
|
|
|
gstffmpegdeinterlace.c \
|
|
|
|
gstffmpegdemux.c \
|
|
|
|
gstffmpegprotocol.c
|
Backport BRANCH-THREADED to HEAD, fix a bit.
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.
2005-08-05 15:29:56 +00:00
|
|
|
# gstffmpegmux.c \
|
2006-01-20 14:17:16 +00:00
|
|
|
# gstffmpegscale.c
|
2002-11-06 23:53:46 +00:00
|
|
|
|
2005-11-22 23:12:51 +00:00
|
|
|
libgstffmpeg_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) \
|
2004-03-11 18:18:36 +00:00
|
|
|
-I $(top_srcdir)/gst-libs/ext/ffmpeg/libavformat \
|
2005-10-23 16:07:46 +00:00
|
|
|
-I $(top_srcdir)/gst-libs/ext/ffmpeg/libavutil \
|
2004-03-11 18:18:36 +00:00
|
|
|
-I $(top_srcdir)/gst-libs/ext/ffmpeg/libavcodec
|
2002-12-26 10:53:21 +00:00
|
|
|
libgstffmpeg_la_LIBADD = \
|
2005-11-22 23:12:51 +00:00
|
|
|
$(top_builddir)/gst-libs/ext/ffmpeg/libavformat/libavformat.la \
|
|
|
|
$(GST_LIBS)
|
2002-12-26 10:53:21 +00:00
|
|
|
libgstffmpeg_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
2001-12-23 13:25:04 +00:00
|
|
|
|
2004-12-18 20:59:37 +00:00
|
|
|
noinst_HEADERS = \
|
|
|
|
gstffmpeg.h \
|
|
|
|
gstffmpegcodecmap.h
|