mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-23 06:26:23 +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
|
plugin_LTLIBRARIES = libgstfragmented.la
|
||||||
|
|
||||||
# FIXME: hlssink
|
# FIXME: hlssink
|
||||||
# gsthlssink.c
|
|
||||||
# gstm3u8playlist.c
|
|
||||||
libgstfragmented_la_SOURCES = \
|
libgstfragmented_la_SOURCES = \
|
||||||
m3u8.c \
|
m3u8.c \
|
||||||
gsthlsdemux.c \
|
gsthlsdemux.c \
|
||||||
gstfragment.c \
|
gstfragment.c \
|
||||||
gsturidownloader.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)
|
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_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -no-undefined
|
||||||
libgstfragmented_la_LIBTOOLFLAGS = --tag=disable-static
|
libgstfragmented_la_LIBTOOLFLAGS = --tag=disable-static
|
||||||
|
|
||||||
|
|
|
@ -6,9 +6,7 @@
|
||||||
|
|
||||||
#include "gstfragmented.h"
|
#include "gstfragmented.h"
|
||||||
#include "gsthlsdemux.h"
|
#include "gsthlsdemux.h"
|
||||||
#if 0
|
|
||||||
#include "gsthlssink.h"
|
#include "gsthlssink.h"
|
||||||
#endif
|
|
||||||
|
|
||||||
GST_DEBUG_CATEGORY (fragmented_debug);
|
GST_DEBUG_CATEGORY (fragmented_debug);
|
||||||
|
|
||||||
|
@ -21,10 +19,8 @@ fragmented_init (GstPlugin * plugin)
|
||||||
GST_TYPE_HLS_DEMUX) || FALSE)
|
GST_TYPE_HLS_DEMUX) || FALSE)
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
#if 0
|
|
||||||
if (!gst_hls_sink_plugin_init (plugin))
|
if (!gst_hls_sink_plugin_init (plugin))
|
||||||
return FALSE;
|
return FALSE;
|
||||||
#endif
|
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue