mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
0b42844a3c
Original commit message from CVS: * gst/flv/Makefile.am: * gst/flv/gstflvdemux.c: (plugin_init): * gst/flv/gstflvmux.c: (gst_flv_mux_base_init), (gst_flv_mux_class_init), (gst_flv_mux_init), (gst_flv_mux_finalize), (gst_flv_mux_reset), (gst_flv_mux_handle_src_event), (gst_flv_mux_handle_sink_event), (gst_flv_mux_video_pad_setcaps), (gst_flv_mux_audio_pad_setcaps), (gst_flv_mux_request_new_pad), (gst_flv_mux_release_pad), (gst_flv_mux_write_header), (gst_flv_mux_write_buffer), (gst_flv_mux_collected), (gst_flv_mux_change_state): * gst/flv/gstflvmux.h: Add first version of a FLV muxer. The only missing feature is writing of stream metadata.
8 lines
277 B
Makefile
8 lines
277 B
Makefile
plugin_LTLIBRARIES = libgstflv.la
|
|
|
|
libgstflv_la_CFLAGS = ${GST_CFLAGS}
|
|
libgstflv_la_LIBADD = $(GST_BASE_LIBS)
|
|
libgstflv_la_LDFLAGS = ${GST_PLUGIN_LDFLAGS}
|
|
libgstflv_la_SOURCES = gstflvdemux.c gstflvparse.c gstflvmux.c
|
|
|
|
noinst_HEADERS = gstflvdemux.h gstflvparse.h gstflvmux.h
|