2012-11-01 21:09:56 +00:00
|
|
|
/* gstrtpvp8depay.c - Source for GstRtpVP8Depay
|
2010-05-16 16:23:17 +00:00
|
|
|
* Copyright (C) 2011 Sjoerd Simons <sjoerd@luon.net>
|
2011-09-23 22:58:30 +00:00
|
|
|
* Copyright (C) 2011 Collabora Ltd.
|
|
|
|
* Contact: Youness Alaoui <youness.alaoui@collabora.co.uk>
|
2010-05-16 16:23:17 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "gstrtpvp8depay.h"
|
2015-08-04 17:59:17 +00:00
|
|
|
#include "gstrtputils.h"
|
2010-05-16 16:23:17 +00:00
|
|
|
|
2015-04-07 22:00:53 +00:00
|
|
|
#include <gst/video/video.h>
|
|
|
|
|
2015-04-01 23:30:27 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2010-05-16 16:23:17 +00:00
|
|
|
GST_DEBUG_CATEGORY_STATIC (gst_rtp_vp8_depay_debug);
|
|
|
|
#define GST_CAT_DEFAULT gst_rtp_vp8_depay_debug
|
|
|
|
|
2012-11-01 21:09:56 +00:00
|
|
|
static void gst_rtp_vp8_depay_dispose (GObject * object);
|
|
|
|
static GstBuffer *gst_rtp_vp8_depay_process (GstRTPBaseDepayload * depayload,
|
2015-07-12 13:27:15 +00:00
|
|
|
GstRTPBuffer * rtp);
|
2015-04-01 23:30:27 +00:00
|
|
|
static GstStateChangeReturn gst_rtp_vp8_depay_change_state (GstElement *
|
|
|
|
element, GstStateChange transition);
|
|
|
|
static gboolean gst_rtp_vp8_depay_handle_event (GstRTPBaseDepayload * depay,
|
|
|
|
GstEvent * event);
|
2012-11-01 21:09:56 +00:00
|
|
|
|
2012-01-25 09:45:51 +00:00
|
|
|
G_DEFINE_TYPE (GstRtpVP8Depay, gst_rtp_vp8_depay, GST_TYPE_RTP_BASE_DEPAYLOAD);
|
2010-05-16 16:23:17 +00:00
|
|
|
|
|
|
|
static GstStaticPadTemplate gst_rtp_vp8_depay_src_template =
|
|
|
|
GST_STATIC_PAD_TEMPLATE ("src",
|
|
|
|
GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_STATIC_CAPS ("video/x-vp8"));
|
|
|
|
|
|
|
|
static GstStaticPadTemplate gst_rtp_vp8_depay_sink_template =
|
|
|
|
GST_STATIC_PAD_TEMPLATE ("sink",
|
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_STATIC_CAPS ("application/x-rtp, "
|
|
|
|
"clock-rate = (int) 90000,"
|
|
|
|
"media = (string) \"video\","
|
2014-11-01 14:14:31 +00:00
|
|
|
"encoding-name = (string) { \"VP8\", \"VP8-DRAFT-IETF-01\" }"));
|
2010-05-16 16:23:17 +00:00
|
|
|
|
|
|
|
static void
|
2012-01-25 09:45:51 +00:00
|
|
|
gst_rtp_vp8_depay_init (GstRtpVP8Depay * self)
|
2010-05-16 16:23:17 +00:00
|
|
|
{
|
|
|
|
self->adapter = gst_adapter_new ();
|
|
|
|
self->started = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-01-25 09:45:51 +00:00
|
|
|
gst_rtp_vp8_depay_class_init (GstRtpVP8DepayClass * gst_rtp_vp8_depay_class)
|
2010-05-16 16:23:17 +00:00
|
|
|
{
|
2012-01-25 09:45:51 +00:00
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (gst_rtp_vp8_depay_class);
|
|
|
|
GstElementClass *element_class = GST_ELEMENT_CLASS (gst_rtp_vp8_depay_class);
|
|
|
|
GstRTPBaseDepayloadClass *depay_class =
|
|
|
|
(GstRTPBaseDepayloadClass *) (gst_rtp_vp8_depay_class);
|
|
|
|
|
2010-05-16 16:23:17 +00:00
|
|
|
|
2016-03-04 01:30:12 +00:00
|
|
|
gst_element_class_add_static_pad_template (element_class,
|
|
|
|
&gst_rtp_vp8_depay_sink_template);
|
|
|
|
gst_element_class_add_static_pad_template (element_class,
|
|
|
|
&gst_rtp_vp8_depay_src_template);
|
2010-05-16 16:23:17 +00:00
|
|
|
|
2012-10-17 16:34:26 +00:00
|
|
|
gst_element_class_set_static_metadata (element_class, "RTP VP8 depayloader",
|
2010-05-16 16:23:17 +00:00
|
|
|
"Codec/Depayloader/Network/RTP",
|
|
|
|
"Extracts VP8 video from RTP packets)",
|
|
|
|
"Sjoerd Simons <sjoerd@luon.net>");
|
|
|
|
|
|
|
|
object_class->dispose = gst_rtp_vp8_depay_dispose;
|
|
|
|
|
2015-04-01 23:30:27 +00:00
|
|
|
element_class->change_state = gst_rtp_vp8_depay_change_state;
|
|
|
|
|
2015-07-12 13:27:15 +00:00
|
|
|
depay_class->process_rtp_packet = gst_rtp_vp8_depay_process;
|
2015-04-01 23:30:27 +00:00
|
|
|
depay_class->handle_event = gst_rtp_vp8_depay_handle_event;
|
2010-05-16 16:23:17 +00:00
|
|
|
|
|
|
|
GST_DEBUG_CATEGORY_INIT (gst_rtp_vp8_depay_debug, "rtpvp8depay", 0,
|
|
|
|
"VP8 Video RTP Depayloader");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_rtp_vp8_depay_dispose (GObject * object)
|
|
|
|
{
|
|
|
|
GstRtpVP8Depay *self = GST_RTP_VP8_DEPAY (object);
|
|
|
|
|
|
|
|
if (self->adapter != NULL)
|
|
|
|
g_object_unref (self->adapter);
|
|
|
|
self->adapter = NULL;
|
|
|
|
|
|
|
|
/* release any references held by the object here */
|
|
|
|
|
2012-01-25 09:45:51 +00:00
|
|
|
if (G_OBJECT_CLASS (gst_rtp_vp8_depay_parent_class)->dispose)
|
|
|
|
G_OBJECT_CLASS (gst_rtp_vp8_depay_parent_class)->dispose (object);
|
2010-05-16 16:23:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static GstBuffer *
|
2015-07-12 13:27:15 +00:00
|
|
|
gst_rtp_vp8_depay_process (GstRTPBaseDepayload * depay, GstRTPBuffer * rtp)
|
2010-05-16 16:23:17 +00:00
|
|
|
{
|
|
|
|
GstRtpVP8Depay *self = GST_RTP_VP8_DEPAY (depay);
|
|
|
|
GstBuffer *payload;
|
|
|
|
guint8 *data;
|
2014-06-19 13:25:01 +00:00
|
|
|
guint hdrsize;
|
2012-01-25 09:45:51 +00:00
|
|
|
guint size;
|
2010-05-16 16:23:17 +00:00
|
|
|
|
2015-07-12 13:27:15 +00:00
|
|
|
if (G_UNLIKELY (GST_BUFFER_IS_DISCONT (rtp->buffer))) {
|
2010-05-16 16:23:17 +00:00
|
|
|
GST_LOG_OBJECT (self, "Discontinuity, flushing adapter");
|
|
|
|
gst_adapter_clear (self->adapter);
|
|
|
|
self->started = FALSE;
|
|
|
|
}
|
|
|
|
|
2015-07-12 13:27:15 +00:00
|
|
|
size = gst_rtp_buffer_get_payload_len (rtp);
|
2012-01-25 09:45:51 +00:00
|
|
|
|
2011-01-23 17:02:38 +00:00
|
|
|
/* At least one header and one vp8 byte */
|
2010-05-16 16:23:17 +00:00
|
|
|
if (G_UNLIKELY (size < 2))
|
|
|
|
goto too_small;
|
|
|
|
|
2015-07-12 13:27:15 +00:00
|
|
|
data = gst_rtp_buffer_get_payload (rtp);
|
2010-05-16 16:23:17 +00:00
|
|
|
|
|
|
|
if (G_UNLIKELY (!self->started)) {
|
|
|
|
/* Check if this is the start of a VP8 frame, otherwise bail */
|
2011-09-23 22:58:30 +00:00
|
|
|
/* S=1 and PartID= 0 */
|
2014-06-20 08:59:14 +00:00
|
|
|
if ((data[0] & 0x17) != 0x10)
|
2012-01-25 09:45:51 +00:00
|
|
|
goto done;
|
2010-05-16 16:23:17 +00:00
|
|
|
|
|
|
|
self->started = TRUE;
|
|
|
|
}
|
|
|
|
|
2014-06-19 13:25:01 +00:00
|
|
|
hdrsize = 1;
|
2011-09-23 22:58:30 +00:00
|
|
|
/* Check X optional header */
|
|
|
|
if ((data[0] & 0x80) != 0) {
|
2014-06-19 13:25:01 +00:00
|
|
|
hdrsize++;
|
2011-09-23 22:58:30 +00:00
|
|
|
/* Check I optional header */
|
|
|
|
if ((data[1] & 0x80) != 0) {
|
2014-06-19 13:25:01 +00:00
|
|
|
if (G_UNLIKELY (size < 3))
|
2010-05-16 16:23:17 +00:00
|
|
|
goto too_small;
|
2014-06-19 13:25:01 +00:00
|
|
|
hdrsize++;
|
2011-09-23 22:58:30 +00:00
|
|
|
/* Check for 16 bits PictureID */
|
|
|
|
if ((data[2] & 0x80) != 0)
|
2014-06-19 13:25:01 +00:00
|
|
|
hdrsize++;
|
2010-05-16 16:23:17 +00:00
|
|
|
}
|
2011-09-23 22:58:30 +00:00
|
|
|
/* Check L optional header */
|
|
|
|
if ((data[1] & 0x40) != 0)
|
2014-06-19 13:25:01 +00:00
|
|
|
hdrsize++;
|
2012-03-01 17:59:55 +00:00
|
|
|
/* Check T or K optional headers */
|
|
|
|
if ((data[1] & 0x20) != 0 || (data[1] & 0x10) != 0)
|
2014-06-19 13:25:01 +00:00
|
|
|
hdrsize++;
|
2010-05-16 16:23:17 +00:00
|
|
|
}
|
2014-06-19 13:25:01 +00:00
|
|
|
GST_DEBUG_OBJECT (depay, "hdrsize %u, size %u", hdrsize, size);
|
2010-05-16 16:23:17 +00:00
|
|
|
|
2014-06-19 13:25:01 +00:00
|
|
|
if (G_UNLIKELY (hdrsize >= size))
|
2010-05-16 16:23:17 +00:00
|
|
|
goto too_small;
|
|
|
|
|
2015-07-12 13:27:15 +00:00
|
|
|
payload = gst_rtp_buffer_get_payload_subbuffer (rtp, hdrsize, -1);
|
2010-05-16 16:23:17 +00:00
|
|
|
gst_adapter_push (self->adapter, payload);
|
|
|
|
|
|
|
|
/* Marker indicates that it was the last rtp packet for this frame */
|
2015-07-12 13:27:15 +00:00
|
|
|
if (gst_rtp_buffer_get_marker (rtp)) {
|
2010-05-16 16:23:17 +00:00
|
|
|
GstBuffer *out;
|
2015-06-30 12:06:20 +00:00
|
|
|
guint8 header[10];
|
2013-08-07 10:14:38 +00:00
|
|
|
|
2015-07-21 11:31:05 +00:00
|
|
|
if (gst_adapter_available (self->adapter) < 10)
|
|
|
|
goto too_small;
|
2015-06-30 12:06:20 +00:00
|
|
|
gst_adapter_copy (self->adapter, &header, 0, 10);
|
2010-05-16 16:23:17 +00:00
|
|
|
|
|
|
|
out = gst_adapter_take_buffer (self->adapter,
|
|
|
|
gst_adapter_available (self->adapter));
|
|
|
|
|
|
|
|
self->started = FALSE;
|
2013-08-07 10:14:38 +00:00
|
|
|
|
|
|
|
/* mark keyframes */
|
|
|
|
out = gst_buffer_make_writable (out);
|
2015-08-04 17:59:17 +00:00
|
|
|
/* Filter away all metas that are not sensible to copy */
|
2017-05-24 11:57:10 +00:00
|
|
|
gst_rtp_drop_non_video_meta (self, out);
|
2015-06-30 12:06:20 +00:00
|
|
|
if ((header[0] & 0x01)) {
|
2013-08-07 10:14:38 +00:00
|
|
|
GST_BUFFER_FLAG_SET (out, GST_BUFFER_FLAG_DELTA_UNIT);
|
2015-04-01 23:30:27 +00:00
|
|
|
|
|
|
|
if (!self->caps_sent) {
|
|
|
|
gst_buffer_unref (out);
|
|
|
|
out = NULL;
|
2015-04-07 22:00:53 +00:00
|
|
|
GST_INFO_OBJECT (self, "Dropping inter-frame before intra-frame");
|
|
|
|
gst_pad_push_event (GST_RTP_BASE_DEPAYLOAD_SINKPAD (depay),
|
|
|
|
gst_video_event_new_upstream_force_key_unit (GST_CLOCK_TIME_NONE,
|
|
|
|
TRUE, 0));
|
2015-04-01 23:30:27 +00:00
|
|
|
}
|
|
|
|
} else {
|
2015-06-30 12:06:20 +00:00
|
|
|
guint profile, width, height;
|
2015-04-01 23:30:27 +00:00
|
|
|
|
2013-08-07 10:14:38 +00:00
|
|
|
GST_BUFFER_FLAG_UNSET (out, GST_BUFFER_FLAG_DELTA_UNIT);
|
|
|
|
|
2015-06-30 12:06:20 +00:00
|
|
|
profile = (header[0] & 0x0e) >> 1;
|
|
|
|
width = GST_READ_UINT16_LE (header + 6) & 0x3fff;
|
|
|
|
height = GST_READ_UINT16_LE (header + 8) & 0x3fff;
|
|
|
|
|
|
|
|
if (G_UNLIKELY (self->last_width != width ||
|
|
|
|
self->last_height != height || self->last_profile != profile)) {
|
|
|
|
gchar profile_str[3];
|
|
|
|
GstCaps *srccaps;
|
|
|
|
|
|
|
|
snprintf (profile_str, 3, "%u", profile);
|
|
|
|
srccaps = gst_caps_new_simple ("video/x-vp8",
|
|
|
|
"framerate", GST_TYPE_FRACTION, 0, 1,
|
|
|
|
"height", G_TYPE_INT, height,
|
|
|
|
"width", G_TYPE_INT, width,
|
|
|
|
"profile", G_TYPE_STRING, profile_str, NULL);
|
|
|
|
|
|
|
|
gst_pad_set_caps (GST_RTP_BASE_DEPAYLOAD_SRCPAD (depay), srccaps);
|
|
|
|
gst_caps_unref (srccaps);
|
|
|
|
|
|
|
|
self->caps_sent = TRUE;
|
|
|
|
self->last_width = width;
|
|
|
|
self->last_height = height;
|
|
|
|
self->last_profile = profile;
|
2015-04-01 23:30:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-16 16:23:17 +00:00
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
2012-01-25 09:45:51 +00:00
|
|
|
done:
|
2010-05-16 16:23:17 +00:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
too_small:
|
|
|
|
GST_LOG_OBJECT (self, "Invalid rtp packet (too small), ignoring");
|
|
|
|
gst_adapter_clear (self->adapter);
|
|
|
|
self->started = FALSE;
|
2012-01-25 09:45:51 +00:00
|
|
|
|
|
|
|
goto done;
|
2010-05-16 16:23:17 +00:00
|
|
|
}
|
|
|
|
|
2015-04-01 23:30:27 +00:00
|
|
|
static GstStateChangeReturn
|
|
|
|
gst_rtp_vp8_depay_change_state (GstElement * element, GstStateChange transition)
|
|
|
|
{
|
|
|
|
GstRtpVP8Depay *self = GST_RTP_VP8_DEPAY (element);
|
|
|
|
|
|
|
|
switch (transition) {
|
|
|
|
case GST_STATE_CHANGE_READY_TO_PAUSED:
|
|
|
|
self->last_profile = -1;
|
|
|
|
self->last_height = -1;
|
|
|
|
self->last_width = -1;
|
|
|
|
self->caps_sent = FALSE;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
GST_ELEMENT_CLASS (gst_rtp_vp8_depay_parent_class)->change_state (element,
|
|
|
|
transition);
|
|
|
|
}
|
|
|
|
|
2010-05-16 16:23:17 +00:00
|
|
|
static gboolean
|
2015-04-01 23:30:27 +00:00
|
|
|
gst_rtp_vp8_depay_handle_event (GstRTPBaseDepayload * depay, GstEvent * event)
|
2010-05-16 16:23:17 +00:00
|
|
|
{
|
2015-04-01 23:30:27 +00:00
|
|
|
GstRtpVP8Depay *self = GST_RTP_VP8_DEPAY (depay);
|
2010-05-16 16:23:17 +00:00
|
|
|
|
2015-04-01 23:30:27 +00:00
|
|
|
switch (GST_EVENT_TYPE (event)) {
|
|
|
|
case GST_EVENT_FLUSH_STOP:
|
|
|
|
self->last_profile = -1;
|
|
|
|
self->last_height = -1;
|
|
|
|
self->last_width = -1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2010-05-16 16:23:17 +00:00
|
|
|
|
2015-04-01 23:30:27 +00:00
|
|
|
return
|
|
|
|
GST_RTP_BASE_DEPAYLOAD_CLASS
|
|
|
|
(gst_rtp_vp8_depay_parent_class)->handle_event (depay, event);
|
2010-05-16 16:23:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
gst_rtp_vp8_depay_plugin_init (GstPlugin * plugin)
|
|
|
|
{
|
|
|
|
return gst_element_register (plugin, "rtpvp8depay",
|
|
|
|
GST_RANK_MARGINAL, GST_TYPE_RTP_VP8_DEPAY);
|
|
|
|
}
|