1 /*
2  * gstrtpvp8pay.c - Source for GstRtpVP8Pay
3  * Copyright (C) 2011 Sjoerd Simons <sjoerd@luon.net>
4  * Copyright (C) 2011 Collabora Ltd.
5  *   Contact: Youness Alaoui <youness.alaoui@collabora.co.uk>
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20  */
21 
22 #ifdef HAVE_CONFIG_H
23 # include "config.h"
24 #endif
25 
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <string.h>
29 
30 #include <gst/base/gstbitreader.h>
31 #include <gst/rtp/gstrtppayloads.h>
32 #include <gst/rtp/gstrtpbuffer.h>
33 #include <gst/video/video.h>
34 #include "dboolhuff.h"
35 #include "gstrtpvp8pay.h"
36 #include "gstrtputils.h"
37 
38 GST_DEBUG_CATEGORY_STATIC (gst_rtp_vp8_pay_debug);
39 #define GST_CAT_DEFAULT gst_rtp_vp8_pay_debug
40 
41 #define DEFAULT_PICTURE_ID_MODE VP8_PAY_NO_PICTURE_ID
42 
43 enum
44 {
45   PROP_0,
46   PROP_PICTURE_ID_MODE
47 };
48 
49 #define GST_TYPE_RTP_VP8_PAY_PICTURE_ID_MODE (gst_rtp_vp8_pay_picture_id_mode_get_type())
50 static GType
gst_rtp_vp8_pay_picture_id_mode_get_type(void)51 gst_rtp_vp8_pay_picture_id_mode_get_type (void)
52 {
53   static GType mode_type = 0;
54   static const GEnumValue modes[] = {
55     {VP8_PAY_NO_PICTURE_ID, "No Picture ID", "none"},
56     {VP8_PAY_PICTURE_ID_7BITS, "7-bit Picture ID", "7-bit"},
57     {VP8_PAY_PICTURE_ID_15BITS, "15-bit Picture ID", "15-bit"},
58     {0, NULL, NULL},
59   };
60 
61   if (!mode_type) {
62     mode_type = g_enum_register_static ("GstVP8RTPPayMode", modes);
63   }
64   return mode_type;
65 }
66 
67 static void gst_rtp_vp8_pay_get_property (GObject * object, guint prop_id,
68     GValue * value, GParamSpec * pspec);
69 static void gst_rtp_vp8_pay_set_property (GObject * object, guint prop_id,
70     const GValue * value, GParamSpec * pspec);
71 
72 static GstFlowReturn gst_rtp_vp8_pay_handle_buffer (GstRTPBasePayload * payload,
73     GstBuffer * buffer);
74 static gboolean gst_rtp_vp8_pay_sink_event (GstRTPBasePayload * payload,
75     GstEvent * event);
76 static gboolean gst_rtp_vp8_pay_set_caps (GstRTPBasePayload * payload,
77     GstCaps * caps);
78 
79 G_DEFINE_TYPE (GstRtpVP8Pay, gst_rtp_vp8_pay, GST_TYPE_RTP_BASE_PAYLOAD);
80 
81 static GstStaticPadTemplate gst_rtp_vp8_pay_src_template =
82 GST_STATIC_PAD_TEMPLATE ("src",
83     GST_PAD_SRC,
84     GST_PAD_ALWAYS,
85     GST_STATIC_CAPS ("application/x-rtp, "
86         "payload = (int) " GST_RTP_PAYLOAD_DYNAMIC_STRING ","
87         "clock-rate = (int) 90000, encoding-name = (string) { \"VP8\", \"VP8-DRAFT-IETF-01\" }"));
88 
89 static GstStaticPadTemplate gst_rtp_vp8_pay_sink_template =
90 GST_STATIC_PAD_TEMPLATE ("sink",
91     GST_PAD_SINK,
92     GST_PAD_ALWAYS,
93     GST_STATIC_CAPS ("video/x-vp8"));
94 
95 static void
gst_rtp_vp8_pay_init(GstRtpVP8Pay * obj)96 gst_rtp_vp8_pay_init (GstRtpVP8Pay * obj)
97 {
98   obj->picture_id_mode = DEFAULT_PICTURE_ID_MODE;
99   if (obj->picture_id_mode == VP8_PAY_PICTURE_ID_7BITS)
100     obj->picture_id = g_random_int_range (0, G_MAXUINT8) & 0x7F;
101   else if (obj->picture_id_mode == VP8_PAY_PICTURE_ID_15BITS)
102     obj->picture_id = g_random_int_range (0, G_MAXUINT16) & 0x7FFF;
103 }
104 
105 static void
gst_rtp_vp8_pay_class_init(GstRtpVP8PayClass * gst_rtp_vp8_pay_class)106 gst_rtp_vp8_pay_class_init (GstRtpVP8PayClass * gst_rtp_vp8_pay_class)
107 {
108   GObjectClass *gobject_class = G_OBJECT_CLASS (gst_rtp_vp8_pay_class);
109   GstElementClass *element_class = GST_ELEMENT_CLASS (gst_rtp_vp8_pay_class);
110   GstRTPBasePayloadClass *pay_class =
111       GST_RTP_BASE_PAYLOAD_CLASS (gst_rtp_vp8_pay_class);
112 
113   gobject_class->set_property = gst_rtp_vp8_pay_set_property;
114   gobject_class->get_property = gst_rtp_vp8_pay_get_property;
115 
116   g_object_class_install_property (gobject_class, PROP_PICTURE_ID_MODE,
117       g_param_spec_enum ("picture-id-mode", "Picture ID Mode",
118           "The picture ID mode for payloading",
119           GST_TYPE_RTP_VP8_PAY_PICTURE_ID_MODE, DEFAULT_PICTURE_ID_MODE,
120           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
121 
122   gst_element_class_add_static_pad_template (element_class,
123       &gst_rtp_vp8_pay_sink_template);
124   gst_element_class_add_static_pad_template (element_class,
125       &gst_rtp_vp8_pay_src_template);
126 
127   gst_element_class_set_static_metadata (element_class, "RTP VP8 payloader",
128       "Codec/Payloader/Network/RTP",
129       "Puts VP8 video in RTP packets", "Sjoerd Simons <sjoerd@luon.net>");
130 
131   pay_class->handle_buffer = gst_rtp_vp8_pay_handle_buffer;
132   pay_class->sink_event = gst_rtp_vp8_pay_sink_event;
133   pay_class->set_caps = gst_rtp_vp8_pay_set_caps;
134 
135   GST_DEBUG_CATEGORY_INIT (gst_rtp_vp8_pay_debug, "rtpvp8pay", 0,
136       "VP8 Video RTP Payloader");
137 }
138 
139 static void
gst_rtp_vp8_pay_set_property(GObject * object,guint prop_id,const GValue * value,GParamSpec * pspec)140 gst_rtp_vp8_pay_set_property (GObject * object,
141     guint prop_id, const GValue * value, GParamSpec * pspec)
142 {
143   GstRtpVP8Pay *rtpvp8pay = GST_RTP_VP8_PAY (object);
144 
145   switch (prop_id) {
146     case PROP_PICTURE_ID_MODE:
147       rtpvp8pay->picture_id_mode = g_value_get_enum (value);
148       if (rtpvp8pay->picture_id_mode == VP8_PAY_PICTURE_ID_7BITS)
149         rtpvp8pay->picture_id = g_random_int_range (0, G_MAXUINT8) & 0x7F;
150       else if (rtpvp8pay->picture_id_mode == VP8_PAY_PICTURE_ID_15BITS)
151         rtpvp8pay->picture_id = g_random_int_range (0, G_MAXUINT16) & 0x7FFF;
152       break;
153     default:
154       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
155       break;
156   }
157 }
158 
159 static void
gst_rtp_vp8_pay_get_property(GObject * object,guint prop_id,GValue * value,GParamSpec * pspec)160 gst_rtp_vp8_pay_get_property (GObject * object,
161     guint prop_id, GValue * value, GParamSpec * pspec)
162 {
163   GstRtpVP8Pay *rtpvp8pay = GST_RTP_VP8_PAY (object);
164 
165   switch (prop_id) {
166     case PROP_PICTURE_ID_MODE:
167       g_value_set_enum (value, rtpvp8pay->picture_id_mode);
168       break;
169     default:
170       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
171       break;
172   }
173 }
174 
175 static gboolean
gst_rtp_vp8_pay_parse_frame(GstRtpVP8Pay * self,GstBuffer * buffer,gsize buffer_size)176 gst_rtp_vp8_pay_parse_frame (GstRtpVP8Pay * self, GstBuffer * buffer,
177     gsize buffer_size)
178 {
179   GstMapInfo map = GST_MAP_INFO_INIT;
180   GstBitReader reader;
181   guint8 *data;
182   gsize size;
183   int i;
184   gboolean keyframe;
185   guint32 partition0_size;
186   guint8 version;
187   guint8 tmp8 = 0;
188   guint8 partitions;
189   guint offset;
190   BOOL_DECODER bc;
191   guint8 *pdata;
192 
193   if (G_UNLIKELY (buffer_size < 3))
194     goto error;
195 
196   if (!gst_buffer_map (buffer, &map, GST_MAP_READ) || !map.data)
197     goto error;
198 
199   data = map.data;
200   size = map.size;
201 
202   gst_bit_reader_init (&reader, data, size);
203 
204   self->is_keyframe = keyframe = ((data[0] & 0x1) == 0);
205   version = (data[0] >> 1) & 0x7;
206 
207   if (G_UNLIKELY (version > 3)) {
208     GST_ERROR_OBJECT (self, "Unknown VP8 version %u", version);
209     goto error;
210   }
211 
212   /* keyframe, version and show_frame use 5 bits */
213   partition0_size = data[2] << 11 | data[1] << 3 | (data[0] >> 5);
214 
215   /* Include the uncompressed data blob in the first partition */
216   offset = keyframe ? 10 : 3;
217   partition0_size += offset;
218 
219   if (!gst_bit_reader_skip (&reader, 24))
220     goto error;
221 
222   if (keyframe) {
223     /* check start tag: 0x9d 0x01 0x2a */
224     if (!gst_bit_reader_get_bits_uint8 (&reader, &tmp8, 8) || tmp8 != 0x9d)
225       goto error;
226 
227     if (!gst_bit_reader_get_bits_uint8 (&reader, &tmp8, 8) || tmp8 != 0x01)
228       goto error;
229 
230     if (!gst_bit_reader_get_bits_uint8 (&reader, &tmp8, 8) || tmp8 != 0x2a)
231       goto error;
232 
233     /* Skip horizontal size code (16 bits) vertical size code (16 bits) */
234     if (!gst_bit_reader_skip (&reader, 32))
235       goto error;
236   }
237 
238   offset = keyframe ? 10 : 3;
239   vp8dx_start_decode (&bc, data + offset, size - offset);
240 
241   if (keyframe) {
242     /* color space (1 bit) and clamping type (1 bit) */
243     vp8dx_decode_bool (&bc, 0x80);
244     vp8dx_decode_bool (&bc, 0x80);
245   }
246 
247   /* segmentation_enabled */
248   if (vp8dx_decode_bool (&bc, 0x80)) {
249     guint8 update_mb_segmentation_map = vp8dx_decode_bool (&bc, 0x80);
250     guint8 update_segment_feature_data = vp8dx_decode_bool (&bc, 0x80);
251 
252     if (update_segment_feature_data) {
253       /* skip segment feature mode */
254       vp8dx_decode_bool (&bc, 0x80);
255 
256       /* quantizer update */
257       for (i = 0; i < 4; i++) {
258         /* skip flagged quantizer value (7 bits) and sign (1 bit) */
259         if (vp8dx_decode_bool (&bc, 0x80))
260           vp8_decode_value (&bc, 8);
261       }
262 
263       /* loop filter update */
264       for (i = 0; i < 4; i++) {
265         /* skip flagged lf update value (6 bits) and sign (1 bit) */
266         if (vp8dx_decode_bool (&bc, 0x80))
267           vp8_decode_value (&bc, 7);
268       }
269     }
270 
271     if (update_mb_segmentation_map) {
272       /* segment prob update */
273       for (i = 0; i < 3; i++) {
274         /* skip flagged segment prob */
275         if (vp8dx_decode_bool (&bc, 0x80))
276           vp8_decode_value (&bc, 8);
277       }
278     }
279   }
280 
281   /* skip filter type (1 bit), loop filter level (6 bits) and
282    * sharpness level (3 bits) */
283   vp8_decode_value (&bc, 1);
284   vp8_decode_value (&bc, 6);
285   vp8_decode_value (&bc, 3);
286 
287   /* loop_filter_adj_enabled */
288   if (vp8dx_decode_bool (&bc, 0x80)) {
289 
290     /* delta update */
291     if (vp8dx_decode_bool (&bc, 0x80)) {
292 
293       for (i = 0; i < 8; i++) {
294         /* 8 updates, 1 bit indicate whether there is one and if follow by a
295          * 7 bit update */
296         if (vp8dx_decode_bool (&bc, 0x80))
297           vp8_decode_value (&bc, 7);
298       }
299     }
300   }
301 
302   if (vp8dx_bool_error (&bc))
303     goto error;
304 
305   tmp8 = vp8_decode_value (&bc, 2);
306 
307   partitions = 1 << tmp8;
308 
309   /* Check if things are still sensible */
310   if (partition0_size + (partitions - 1) * 3 >= size)
311     goto error;
312 
313   /* partition data is right after the mode partition */
314   pdata = data + partition0_size;
315 
316   /* Set up mapping */
317   self->n_partitions = partitions + 1;
318   self->partition_offset[0] = 0;
319   self->partition_size[0] = partition0_size + (partitions - 1) * 3;
320 
321   self->partition_offset[1] = self->partition_size[0];
322   for (i = 1; i < partitions; i++) {
323     guint psize = (pdata[2] << 16 | pdata[1] << 8 | pdata[0]);
324 
325     pdata += 3;
326     self->partition_size[i] = psize;
327     self->partition_offset[i + 1] = self->partition_offset[i] + psize;
328   }
329 
330   /* Check that our partition offsets and sizes don't go outsize the buffer
331    * size. */
332   if (self->partition_offset[i] >= size)
333     goto error;
334 
335   self->partition_size[i] = size - self->partition_offset[i];
336 
337   self->partition_offset[i + 1] = size;
338 
339   gst_buffer_unmap (buffer, &map);
340   return TRUE;
341 
342 error:
343   GST_DEBUG ("Failed to parse frame");
344   if (map.memory != NULL) {
345     gst_buffer_unmap (buffer, &map);
346   }
347   return FALSE;
348 }
349 
350 static guint
gst_rtp_vp8_offset_to_partition(GstRtpVP8Pay * self,guint offset)351 gst_rtp_vp8_offset_to_partition (GstRtpVP8Pay * self, guint offset)
352 {
353   int i;
354 
355   for (i = 1; i < self->n_partitions; i++) {
356     if (offset < self->partition_offset[i])
357       return i - 1;
358   }
359 
360   return i - 1;
361 }
362 
363 static gsize
gst_rtp_vp8_calc_header_len(GstRtpVP8Pay * self)364 gst_rtp_vp8_calc_header_len (GstRtpVP8Pay * self)
365 {
366   switch (self->picture_id_mode) {
367     case VP8_PAY_PICTURE_ID_7BITS:
368       return 3;
369     case VP8_PAY_PICTURE_ID_15BITS:
370       return 4;
371     case VP8_PAY_NO_PICTURE_ID:
372     default:
373       return 1;
374   }
375 }
376 
377 /* When growing the vp8 header keep max payload len calculation in sync */
378 static GstBuffer *
gst_rtp_vp8_create_header_buffer(GstRtpVP8Pay * self,guint8 partid,gboolean start,gboolean mark,GstBuffer * in)379 gst_rtp_vp8_create_header_buffer (GstRtpVP8Pay * self, guint8 partid,
380     gboolean start, gboolean mark, GstBuffer * in)
381 {
382   GstBuffer *out;
383   guint8 *p;
384   GstRTPBuffer rtpbuffer = GST_RTP_BUFFER_INIT;
385 
386   out = gst_rtp_buffer_new_allocate (gst_rtp_vp8_calc_header_len (self), 0, 0);
387   gst_rtp_buffer_map (out, GST_MAP_READWRITE, &rtpbuffer);
388   p = gst_rtp_buffer_get_payload (&rtpbuffer);
389   /* X=0,R=0,N=0,S=start,PartID=partid */
390   p[0] = (start << 4) | partid;
391   if (self->picture_id_mode != VP8_PAY_NO_PICTURE_ID) {
392     /* Enable X=1 */
393     p[0] |= 0x80;
394     /* X: I=1,L=0,T=0,K=0,RSV=0 */
395     p[1] = 0x80;
396     if (self->picture_id_mode == VP8_PAY_PICTURE_ID_7BITS) {
397       /* I: 7 bit picture_id */
398       p[2] = self->picture_id & 0x7F;
399     } else {
400       /* I: 15 bit picture_id */
401       p[2] = 0x80 | ((self->picture_id & 0x7FFF) >> 8);
402       p[3] = self->picture_id & 0xFF;
403     }
404   }
405 
406   gst_rtp_buffer_set_marker (&rtpbuffer, mark);
407 
408   gst_rtp_buffer_unmap (&rtpbuffer);
409 
410   GST_BUFFER_DURATION (out) = GST_BUFFER_DURATION (in);
411   GST_BUFFER_PTS (out) = GST_BUFFER_PTS (in);
412 
413   return out;
414 }
415 
416 static guint
gst_rtp_vp8_payload_next(GstRtpVP8Pay * self,GstBufferList * list,guint offset,GstBuffer * buffer,gsize buffer_size,gsize max_payload_len)417 gst_rtp_vp8_payload_next (GstRtpVP8Pay * self, GstBufferList * list,
418     guint offset, GstBuffer * buffer, gsize buffer_size, gsize max_payload_len)
419 {
420   guint partition;
421   GstBuffer *header;
422   GstBuffer *sub;
423   GstBuffer *out;
424   gboolean mark;
425   gsize remaining;
426   gsize available;
427 
428   remaining = buffer_size - offset;
429   available = max_payload_len;
430   if (available > remaining)
431     available = remaining;
432 
433   partition = gst_rtp_vp8_offset_to_partition (self, offset);
434   g_assert (partition < self->n_partitions);
435 
436   mark = (remaining == available);
437   /* whole set of partitions, payload them and done */
438   header = gst_rtp_vp8_create_header_buffer (self, partition,
439       offset == self->partition_offset[partition], mark, buffer);
440   sub = gst_buffer_copy_region (buffer, GST_BUFFER_COPY_ALL, offset, available);
441 
442   gst_rtp_copy_video_meta (self, header, buffer);
443 
444   out = gst_buffer_append (header, sub);
445 
446   gst_buffer_list_insert (list, -1, out);
447 
448   return available;
449 }
450 
451 
452 static GstFlowReturn
gst_rtp_vp8_pay_handle_buffer(GstRTPBasePayload * payload,GstBuffer * buffer)453 gst_rtp_vp8_pay_handle_buffer (GstRTPBasePayload * payload, GstBuffer * buffer)
454 {
455   GstRtpVP8Pay *self = GST_RTP_VP8_PAY (payload);
456   GstFlowReturn ret;
457   GstBufferList *list;
458   gsize size, max_paylen;
459   guint offset, mtu, vp8_hdr_len;
460 
461   size = gst_buffer_get_size (buffer);
462 
463   if (G_UNLIKELY (!gst_rtp_vp8_pay_parse_frame (self, buffer, size))) {
464     GST_ELEMENT_ERROR (self, STREAM, ENCODE, (NULL),
465         ("Failed to parse VP8 frame"));
466     return GST_FLOW_ERROR;
467   }
468 
469   mtu = GST_RTP_BASE_PAYLOAD_MTU (payload);
470   vp8_hdr_len = gst_rtp_vp8_calc_header_len (self);
471   max_paylen = gst_rtp_buffer_calc_payload_len (mtu - vp8_hdr_len, 0, 0);
472 
473   list = gst_buffer_list_new_sized ((size / max_paylen) + 1);
474 
475   offset = 0;
476   while (offset < size) {
477     offset +=
478         gst_rtp_vp8_payload_next (self, list, offset, buffer, size, max_paylen);
479   }
480 
481   ret = gst_rtp_base_payload_push_list (payload, list);
482 
483   /* Incremenent and wrap the picture id if it overflows */
484   if ((self->picture_id_mode == VP8_PAY_PICTURE_ID_7BITS &&
485           ++self->picture_id >= 0x80) ||
486       (self->picture_id_mode == VP8_PAY_PICTURE_ID_15BITS &&
487           ++self->picture_id >= 0x8000))
488     self->picture_id = 0;
489 
490   gst_buffer_unref (buffer);
491 
492   return ret;
493 }
494 
495 static gboolean
gst_rtp_vp8_pay_sink_event(GstRTPBasePayload * payload,GstEvent * event)496 gst_rtp_vp8_pay_sink_event (GstRTPBasePayload * payload, GstEvent * event)
497 {
498   GstRtpVP8Pay *self = GST_RTP_VP8_PAY (payload);
499 
500   if (GST_EVENT_TYPE (event) == GST_EVENT_FLUSH_START) {
501     if (self->picture_id_mode == VP8_PAY_PICTURE_ID_7BITS)
502       self->picture_id = g_random_int_range (0, G_MAXUINT8) & 0x7F;
503     else if (self->picture_id_mode == VP8_PAY_PICTURE_ID_15BITS)
504       self->picture_id = g_random_int_range (0, G_MAXUINT16) & 0x7FFF;
505   }
506 
507   return GST_RTP_BASE_PAYLOAD_CLASS (gst_rtp_vp8_pay_parent_class)->sink_event
508       (payload, event);
509 }
510 
511 static gboolean
gst_rtp_vp8_pay_set_caps(GstRTPBasePayload * payload,GstCaps * caps)512 gst_rtp_vp8_pay_set_caps (GstRTPBasePayload * payload, GstCaps * caps)
513 {
514   GstCaps *src_caps;
515   const char *encoding_name = "VP8";
516 
517   src_caps = gst_pad_get_allowed_caps (GST_RTP_BASE_PAYLOAD_SRCPAD (payload));
518   if (src_caps) {
519     GstStructure *s;
520     const GValue *value;
521 
522     s = gst_caps_get_structure (src_caps, 0);
523 
524     if (gst_structure_has_field (s, "encoding-name")) {
525       GValue default_value = G_VALUE_INIT;
526 
527       g_value_init (&default_value, G_TYPE_STRING);
528       g_value_set_static_string (&default_value, encoding_name);
529 
530       value = gst_structure_get_value (s, "encoding-name");
531       if (!gst_value_can_intersect (&default_value, value))
532         encoding_name = "VP8-DRAFT-IETF-01";
533     }
534   }
535 
536   gst_rtp_base_payload_set_options (payload, "video", TRUE,
537       encoding_name, 90000);
538 
539   return gst_rtp_base_payload_set_outcaps (payload, NULL);
540 }
541 
542 gboolean
gst_rtp_vp8_pay_plugin_init(GstPlugin * plugin)543 gst_rtp_vp8_pay_plugin_init (GstPlugin * plugin)
544 {
545   return gst_element_register (plugin, "rtpvp8pay",
546       GST_RANK_MARGINAL, GST_TYPE_RTP_VP8_PAY);
547 }
548