mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
rtp: move VP8 payloader and depayloader from -bad
Spec is still in draft state, but should hopefully not change much now. Besides, we announce things as VP8-DRAFT-IETF-01 in our caps, so even if things change in incompatible ways it should not break anything. https://bugzilla.gnome.org/show_bug.cgi?id=687263
This commit is contained in:
parent
44efab8e3d
commit
321acd14dc
3 changed files with 18 additions and 22 deletions
|
@ -1,6 +1,7 @@
|
|||
plugin_LTLIBRARIES = libgstrtp.la
|
||||
|
||||
libgstrtp_la_SOURCES = \
|
||||
dboolhuff.c \
|
||||
fnv1hash.c \
|
||||
gstrtp.c \
|
||||
gstrtpchannels.c \
|
||||
|
@ -70,10 +71,13 @@ libgstrtp_la_SOURCES = \
|
|||
gstrtptheorapay.c \
|
||||
gstrtpvorbisdepay.c \
|
||||
gstrtpvorbispay.c \
|
||||
gstrtpvp8depay.c \
|
||||
gstrtpvp8pay.c \
|
||||
gstrtpvrawdepay.c \
|
||||
gstrtpvrawpay.c
|
||||
|
||||
libgstrtp_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
||||
libgstrtp_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) \
|
||||
$(GST_CFLAGS) -Dvp8_norm=gst_rtpvp8_vp8_norm
|
||||
libgstrtp_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
||||
-lgstaudio-@GST_API_VERSION@ \
|
||||
-lgstvideo-@GST_API_VERSION@ \
|
||||
|
@ -86,6 +90,7 @@ libgstrtp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|||
libgstrtp_la_LIBTOOLFLAGS = --tag=disable-static
|
||||
|
||||
noinst_HEADERS = \
|
||||
dboolhuff.h \
|
||||
fnv1hash.h \
|
||||
gstrtpchannels.h \
|
||||
gstrtpL16depay.h \
|
||||
|
@ -154,9 +159,13 @@ noinst_HEADERS = \
|
|||
gstrtptheorapay.h \
|
||||
gstrtpvorbisdepay.h \
|
||||
gstrtpvorbispay.h \
|
||||
gstrtpvp8depay.c \
|
||||
gstrtpvp8pay.c \
|
||||
gstrtpvrawdepay.h \
|
||||
gstrtpvrawpay.h
|
||||
|
||||
EXTRA_DIST = dboolhuff.LICENSE
|
||||
|
||||
Android.mk: Makefile.am $(BUILT_SOURCES)
|
||||
androgenizer \
|
||||
-:PROJECT libgstrtp -:SHARED libgstrtp \
|
||||
|
|
|
@ -87,6 +87,8 @@
|
|||
#include "gstrtptheorapay.h"
|
||||
#include "gstrtpvorbisdepay.h"
|
||||
#include "gstrtpvorbispay.h"
|
||||
#include "gstrtpvp8depay.h"
|
||||
#include "gstrtpvp8pay.h"
|
||||
#include "gstrtpvrawdepay.h"
|
||||
#include "gstrtpvrawpay.h"
|
||||
|
||||
|
@ -291,6 +293,12 @@ plugin_init (GstPlugin * plugin)
|
|||
if (!gst_rtp_vorbis_pay_plugin_init (plugin))
|
||||
return FALSE;
|
||||
|
||||
if (!gst_rtp_vp8_depay_plugin_init (plugin))
|
||||
return FALSE;
|
||||
|
||||
if (!gst_rtp_vp8_pay_plugin_init (plugin))
|
||||
return FALSE;
|
||||
|
||||
if (!gst_rtp_vraw_depay_plugin_init (plugin))
|
||||
return FALSE;
|
||||
|
||||
|
|
|
@ -1,21 +0,0 @@
|
|||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "gstrtpvp8pay.h"
|
||||
#include "gstrtpvp8depay.h"
|
||||
|
||||
static gboolean
|
||||
plugin_init (GstPlugin *plugin)
|
||||
{
|
||||
gst_rtp_vp8_depay_plugin_init (plugin);
|
||||
gst_rtp_vp8_pay_plugin_init (plugin);
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
||||
GST_VERSION_MINOR,
|
||||
rtpvp8,
|
||||
"rtpvp8",
|
||||
plugin_init, VERSION, GST_LICENSE, GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)
|
Loading…
Reference in a new issue