hlssink: port to 1.0

This commit is contained in:
Alessandro Decina 2012-11-10 14:26:46 +01:00
parent 8cc1400488
commit 48431d76e6
4 changed files with 5 additions and 9 deletions

BIN
gst/hls/.gsthlsdemux.c.swp Normal file

Binary file not shown.

BIN
gst/hls/.gsthlssink.c.swp Normal file

Binary file not shown.

View file

@ -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

View file

@ -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;
}