mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-22 22:16:22 +00:00
hlssink: port to 1.0
This commit is contained in:
parent
8cc1400488
commit
48431d76e6
4 changed files with 5 additions and 9 deletions
BIN
gst/hls/.gsthlsdemux.c.swp
Normal file
BIN
gst/hls/.gsthlsdemux.c.swp
Normal file
Binary file not shown.
BIN
gst/hls/.gsthlssink.c.swp
Normal file
BIN
gst/hls/.gsthlssink.c.swp
Normal file
Binary file not shown.
|
@ -2,18 +2,18 @@
|
|||
plugin_LTLIBRARIES = libgstfragmented.la
|
||||
|
||||
# FIXME: hlssink
|
||||
# gsthlssink.c
|
||||
# gstm3u8playlist.c
|
||||
libgstfragmented_la_SOURCES = \
|
||||
m3u8.c \
|
||||
gsthlsdemux.c \
|
||||
gstfragment.c \
|
||||
gsturidownloader.c \
|
||||
gstfragmentedplugin.c
|
||||
gstfragmentedplugin.c \
|
||||
gsthlssink.c \
|
||||
gstm3u8playlist.c
|
||||
|
||||
libgstfragmented_la_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(SOUP_CFLAGS) $(GIO_CFLAGS)
|
||||
# $(GST_PLUGINS_BAD_CFLAGS) -lgstpbutils-$(GST_MAJORMINOR) -lgstvideo-$(GST_MAJORMINOR)
|
||||
libgstfragmented_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) $(SOUP_LIBS) $(GIO_LIBS) $(LIBM)
|
||||
libgstfragmented_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) $(SOUP_LIBS) $(GIO_LIBS) $(LIBM) \
|
||||
-lgstpbutils-$(GST_API_VERSION) -lgstvideo-$(GST_API_VERSION)
|
||||
libgstfragmented_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -no-undefined
|
||||
libgstfragmented_la_LIBTOOLFLAGS = --tag=disable-static
|
||||
|
||||
|
|
|
@ -6,9 +6,7 @@
|
|||
|
||||
#include "gstfragmented.h"
|
||||
#include "gsthlsdemux.h"
|
||||
#if 0
|
||||
#include "gsthlssink.h"
|
||||
#endif
|
||||
|
||||
GST_DEBUG_CATEGORY (fragmented_debug);
|
||||
|
||||
|
@ -21,10 +19,8 @@ fragmented_init (GstPlugin * plugin)
|
|||
GST_TYPE_HLS_DEMUX) || FALSE)
|
||||
return FALSE;
|
||||
|
||||
#if 0
|
||||
if (!gst_hls_sink_plugin_init (plugin))
|
||||
return FALSE;
|
||||
#endif
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue