rtph265depay: prevent trying to get 0 bytes from adapter
[platform/upstream/gst-plugins-good.git] / gst / rtp / gstrtph265depay.c
1 /* GStreamer
2  * Copyright (C) <2006> Wim Taymans <wim.taymans@gmail.com>
3  * Copyright (C) <2014> Jurgen Slowack <jurgenslowack@gmail.com>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
18  * Boston, MA 02110-1301, USA.
19  */
20
21 #ifdef HAVE_CONFIG_H
22 #  include "config.h"
23 #endif
24
25 #include <stdio.h>
26 #include <string.h>
27
28 #include <gst/base/gstbitreader.h>
29 #include <gst/rtp/gstrtpbuffer.h>
30 #include "gstrtph265depay.h"
31
32 GST_DEBUG_CATEGORY_STATIC (rtph265depay_debug);
33 #define GST_CAT_DEFAULT (rtph265depay_debug)
34
35 /* This is what we'll default to when downstream hasn't
36  * expressed a restriction or preference via caps */
37 #define DEFAULT_BYTE_STREAM   TRUE
38 #define DEFAULT_ACCESS_UNIT   FALSE
39
40 /* 3 zero bytes syncword */
41 static const guint8 sync_bytes[] = { 0, 0, 0, 1 };
42
43 static GstStaticPadTemplate gst_rtp_h265_depay_src_template =
44     GST_STATIC_PAD_TEMPLATE ("src",
45     GST_PAD_SRC,
46     GST_PAD_ALWAYS,
47     GST_STATIC_CAPS (
48         /* FIXME - hvc1 and hev1 formats are not supported yet */
49         /*"video/x-h265, "
50            "stream-format = (string) hvc1, alignment = (string) au; "
51            "video/x-h265, "
52            "stream-format = (string) hev1, alignment = (string) au; " */
53         "video/x-h265, "
54         "stream-format = (string) byte-stream, alignment = (string) { nal, au }")
55     );
56
57 static GstStaticPadTemplate gst_rtp_h265_depay_sink_template =
58 GST_STATIC_PAD_TEMPLATE ("sink",
59     GST_PAD_SINK,
60     GST_PAD_ALWAYS,
61     GST_STATIC_CAPS ("application/x-rtp, "
62         "media = (string) \"video\", "
63         "clock-rate = (int) 90000, " "encoding-name = (string) \"H265\"")
64         /** optional parameters **/
65     /* "profile-space = (int) [ 0, 3 ], " */
66     /* "profile-id = (int) [ 0, 31 ], " */
67     /* "tier-flag = (int) [ 0, 1 ], " */
68     /* "level-id = (int) [ 0, 255 ], " */
69     /* "interop-constraints = (string) ANY, " */
70     /* "profile-compatibility-indicator = (string) ANY, " */
71     /* "sprop-sub-layer-id = (int) [ 0, 6 ], " */
72     /* "recv-sub-layer-id = (int) [ 0, 6 ], " */
73     /* "max-recv-level-id = (int) [ 0, 255 ], " */
74     /* "tx-mode = (string) {MST , SST}, " */
75     /* "sprop-vps = (string) ANY, " */
76     /* "sprop-sps = (string) ANY, " */
77     /* "sprop-pps = (string) ANY, " */
78     /* "sprop-sei = (string) ANY, " */
79     /* "max-lsr = (int) ANY, " *//* MUST be in the range of MaxLumaSR to 16 * MaxLumaSR, inclusive */
80     /* "max-lps = (int) ANY, " *//* MUST be in the range of MaxLumaPS to 16 * MaxLumaPS, inclusive */
81     /* "max-cpb = (int) ANY, " *//* MUST be in the range of MaxCPB to 16 * MaxCPB, inclusive */
82     /* "max-dpb = (int) [1, 16], " */
83     /* "max-br = (int) ANY, " *//* MUST be in the range of MaxBR to 16 * MaxBR, inclusive, for the highest level */
84     /* "max-tr = (int) ANY, " *//* MUST be in the range of MaxTileRows to 16 * MaxTileRows, inclusive, for the highest level */
85     /* "max-tc = (int) ANY, " *//* MUST be in the range of MaxTileCols to 16 * MaxTileCols, inclusive, for the highest level */
86     /* "max-fps = (int) ANY, " */
87     /* "sprop-max-don-diff = (int) [0, 32767], " */
88     /* "sprop-depack-buf-nalus = (int) [0, 32767], " */
89     /* "sprop-depack-buf-nalus = (int) [0, 4294967295], " */
90     /* "depack-buf-cap = (int) [1, 4294967295], " */
91     /* "sprop-segmentation-id = (int) [0, 3], " */
92     /* "sprop-spatial-segmentation-idc = (string) ANY, " */
93     /* "dec-parallel-cap = (string) ANY, " */
94     );
95
96 #define gst_rtp_h265_depay_parent_class parent_class
97 G_DEFINE_TYPE (GstRtpH265Depay, gst_rtp_h265_depay,
98     GST_TYPE_RTP_BASE_DEPAYLOAD);
99
100 static void gst_rtp_h265_depay_finalize (GObject * object);
101
102 static GstStateChangeReturn gst_rtp_h265_depay_change_state (GstElement *
103     element, GstStateChange transition);
104
105 static GstBuffer *gst_rtp_h265_depay_process (GstRTPBaseDepayload * depayload,
106     GstBuffer * buf);
107 static gboolean gst_rtp_h265_depay_setcaps (GstRTPBaseDepayload * filter,
108     GstCaps * caps);
109 static gboolean gst_rtp_h265_depay_handle_event (GstRTPBaseDepayload * depay,
110     GstEvent * event);
111
112 static void
113 gst_rtp_h265_depay_class_init (GstRtpH265DepayClass * klass)
114 {
115   GObjectClass *gobject_class;
116   GstElementClass *gstelement_class;
117   GstRTPBaseDepayloadClass *gstrtpbasedepayload_class;
118
119   gobject_class = (GObjectClass *) klass;
120   gstelement_class = (GstElementClass *) klass;
121   gstrtpbasedepayload_class = (GstRTPBaseDepayloadClass *) klass;
122
123   gobject_class->finalize = gst_rtp_h265_depay_finalize;
124
125   gst_element_class_add_pad_template (gstelement_class,
126       gst_static_pad_template_get (&gst_rtp_h265_depay_src_template));
127   gst_element_class_add_pad_template (gstelement_class,
128       gst_static_pad_template_get (&gst_rtp_h265_depay_sink_template));
129
130   gst_element_class_set_static_metadata (gstelement_class,
131       "RTP H265 depayloader", "Codec/Depayloader/Network/RTP",
132       "Extracts H265 video from RTP packets (draft-ietf-payload-rtp-h265-03.txt)",
133       "Jurgen Slowack <jurgenslowack@gmail.com>");
134   gstelement_class->change_state = gst_rtp_h265_depay_change_state;
135
136   gstrtpbasedepayload_class->process = gst_rtp_h265_depay_process;
137   gstrtpbasedepayload_class->set_caps = gst_rtp_h265_depay_setcaps;
138   gstrtpbasedepayload_class->handle_event = gst_rtp_h265_depay_handle_event;
139 }
140
141 static void
142 gst_rtp_h265_depay_init (GstRtpH265Depay * rtph265depay)
143 {
144   rtph265depay->adapter = gst_adapter_new ();
145   rtph265depay->picture_adapter = gst_adapter_new ();
146   rtph265depay->byte_stream = DEFAULT_BYTE_STREAM;
147   rtph265depay->stream_format = (gchar *) g_malloc (10);
148   rtph265depay->merge = DEFAULT_ACCESS_UNIT;
149   rtph265depay->vps = g_ptr_array_new_with_free_func (
150       (GDestroyNotify) gst_buffer_unref);
151   rtph265depay->sps = g_ptr_array_new_with_free_func (
152       (GDestroyNotify) gst_buffer_unref);
153   rtph265depay->pps = g_ptr_array_new_with_free_func (
154       (GDestroyNotify) gst_buffer_unref);
155 }
156
157 static void
158 gst_rtp_h265_depay_reset (GstRtpH265Depay * rtph265depay)
159 {
160   gst_adapter_clear (rtph265depay->adapter);
161   rtph265depay->wait_start = TRUE;
162   gst_adapter_clear (rtph265depay->picture_adapter);
163   rtph265depay->picture_start = FALSE;
164   rtph265depay->last_keyframe = FALSE;
165   rtph265depay->last_ts = 0;
166   rtph265depay->current_fu_type = 0;
167   rtph265depay->new_codec_data = FALSE;
168   g_ptr_array_set_size (rtph265depay->vps, 0);
169   g_ptr_array_set_size (rtph265depay->sps, 0);
170   g_ptr_array_set_size (rtph265depay->pps, 0);
171 }
172
173 static void
174 gst_rtp_h265_depay_finalize (GObject * object)
175 {
176   GstRtpH265Depay *rtph265depay;
177
178   rtph265depay = GST_RTP_H265_DEPAY (object);
179
180   if (rtph265depay->codec_data)
181     gst_buffer_unref (rtph265depay->codec_data);
182
183   g_free (rtph265depay->stream_format);
184
185   g_object_unref (rtph265depay->adapter);
186   g_object_unref (rtph265depay->picture_adapter);
187
188   g_ptr_array_free (rtph265depay->vps, TRUE);
189   g_ptr_array_free (rtph265depay->sps, TRUE);
190   g_ptr_array_free (rtph265depay->pps, TRUE);
191
192   G_OBJECT_CLASS (parent_class)->finalize (object);
193 }
194
195 static void
196 gst_rtp_h265_depay_negotiate (GstRtpH265Depay * rtph265depay)
197 {
198   GstCaps *caps;
199   gint byte_stream = -1;
200   gint merge = -1;
201
202   caps =
203       gst_pad_get_allowed_caps (GST_RTP_BASE_DEPAYLOAD_SRCPAD (rtph265depay));
204
205   GST_DEBUG_OBJECT (rtph265depay, "allowed caps: %" GST_PTR_FORMAT, caps);
206
207   if (caps) {
208     if (gst_caps_get_size (caps) > 0) {
209       GstStructure *s = gst_caps_get_structure (caps, 0);
210       const gchar *str = NULL;
211
212       if ((str = gst_structure_get_string (s, "stream-format"))) {
213
214         strcpy (rtph265depay->stream_format, str);
215
216         if (strcmp (str, "hev1") == 0) {
217           byte_stream = FALSE;
218         } else if (strcmp (str, "hvc1") == 0) {
219           byte_stream = FALSE;
220         } else if (strcmp (str, "byte-stream") == 0) {
221           byte_stream = TRUE;
222         } else {
223           GST_DEBUG_OBJECT (rtph265depay, "unknown stream-format: %s", str);
224         }
225       }
226
227       if ((str = gst_structure_get_string (s, "alignment"))) {
228         if (strcmp (str, "au") == 0) {
229           merge = TRUE;
230         } else if (strcmp (str, "nal") == 0) {
231           merge = FALSE;
232         } else {
233           GST_DEBUG_OBJECT (rtph265depay, "unknown alignment: %s", str);
234         }
235       }
236     }
237     gst_caps_unref (caps);
238   }
239
240   if (byte_stream != -1) {
241     GST_DEBUG_OBJECT (rtph265depay, "downstream requires byte-stream %d",
242         byte_stream);
243     rtph265depay->byte_stream = byte_stream;
244   } else {
245     GST_DEBUG_OBJECT (rtph265depay, "defaulting to byte-stream %d",
246         DEFAULT_BYTE_STREAM);
247     strcpy (rtph265depay->stream_format, "byte-stream");
248     rtph265depay->byte_stream = DEFAULT_BYTE_STREAM;
249   }
250   if (merge != -1) {
251     GST_DEBUG_OBJECT (rtph265depay, "downstream requires merge %d", merge);
252     rtph265depay->merge = merge;
253   } else {
254     GST_DEBUG_OBJECT (rtph265depay, "defaulting to merge %d",
255         DEFAULT_ACCESS_UNIT);
256     rtph265depay->merge = DEFAULT_ACCESS_UNIT;
257   }
258 }
259
260 /* Stolen from bad/gst/mpegtsdemux/payloader_parsers.c */
261 /* variable length Exp-Golomb parsing according to H.265 spec section 9.2*/
262 static gboolean
263 read_golomb (GstBitReader * br, guint32 * value)
264 {
265   guint8 b, leading_zeros = -1;
266   *value = 1;
267
268   for (b = 0; !b; leading_zeros++) {
269     if (!gst_bit_reader_get_bits_uint8 (br, &b, 1))
270       return FALSE;
271     *value *= 2;
272   }
273
274   *value = (*value >> 1) - 1;
275   if (leading_zeros > 0) {
276     guint32 tmp = 0;
277     if (!gst_bit_reader_get_bits_uint32 (br, &tmp, leading_zeros))
278       return FALSE;
279     *value += tmp;
280   }
281
282   return TRUE;
283 }
284
285 static gboolean
286 parse_sps (GstMapInfo * map, guint32 * sps_id)
287 {                               /* To parse seq_parameter_set_id */
288   GstBitReader br = GST_BIT_READER_INIT (map->data + 15,
289       map->size - 15);
290
291   if (map->size < 16)
292     return FALSE;
293
294   if (!read_golomb (&br, sps_id))
295     return FALSE;
296
297   return TRUE;
298 }
299
300 static gboolean
301 parse_pps (GstMapInfo * map, guint32 * sps_id, guint32 * pps_id)
302 {                               /* To parse picture_parameter_set_id */
303   GstBitReader br = GST_BIT_READER_INIT (map->data + 2,
304       map->size - 2);
305
306   if (map->size < 3)
307     return FALSE;
308
309   if (!read_golomb (&br, pps_id))
310     return FALSE;
311   if (!read_golomb (&br, sps_id))
312     return FALSE;
313
314   return TRUE;
315 }
316
317
318 static gboolean
319 gst_rtp_h265_set_src_caps (GstRtpH265Depay * rtph265depay)
320 {
321   gboolean res;
322   GstCaps *srccaps;
323
324   if (!rtph265depay->byte_stream &&
325       (!rtph265depay->new_codec_data ||
326           rtph265depay->vps->len == 0 || rtph265depay->sps->len == 0
327           || rtph265depay->pps->len == 0))
328     return TRUE;
329
330   srccaps = gst_caps_new_simple ("video/x-h265",
331       "stream-format", G_TYPE_STRING,
332       rtph265depay->stream_format,
333       "alignment", G_TYPE_STRING, rtph265depay->merge ? "au" : "nal", NULL);
334
335   if (!rtph265depay->byte_stream) {
336
337     GstBuffer *codec_data;
338     gint i = 0;
339     gint len;
340     guint num_vps = rtph265depay->vps->len;
341     guint num_sps = rtph265depay->sps->len;
342     guint num_pps = rtph265depay->pps->len;
343     GstMapInfo map, nalmap;
344     guint8 *data;
345     gint nl;
346     guint8 num_arrays = 0;
347     guint new_size;
348     GstBitReader br;
349     guint32 tmp;
350     guint8 tmp8 = 0;
351     guint32 max_sub_layers_minus1, temporal_id_nesting_flag, chroma_format_idc,
352         bit_depth_luma_minus8, bit_depth_chroma_minus8,
353         min_spatial_segmentation_idc;
354
355     /* Fixme: Current implementation is not embedding SEI in codec_data */
356
357     if (num_sps == 0)
358       return FALSE;
359
360     /* start with 23 bytes header */
361     len = 23;
362
363     num_arrays = (num_vps > 0) + (num_sps > 0) + (num_pps > 0);
364     len += num_arrays;
365
366     /* add size of vps, sps & pps */
367     for (i = 0; i < num_vps; i++)
368       len += 2 + gst_buffer_get_size (g_ptr_array_index (rtph265depay->vps, i));
369     for (i = 0; i < num_sps; i++)
370       len += 2 + gst_buffer_get_size (g_ptr_array_index (rtph265depay->sps, i));
371     for (i = 0; i < num_pps; i++)
372       len += 2 + gst_buffer_get_size (g_ptr_array_index (rtph265depay->pps, i));
373
374     GST_DEBUG_OBJECT (rtph265depay,
375         "constructing codec_data: num_vps =%d num_sps=%d, num_pps=%d", num_vps,
376         num_sps, num_pps);
377
378     codec_data = gst_buffer_new_and_alloc (len);
379     g_debug ("alloc_len: %u", len);
380     gst_buffer_map (codec_data, &map, GST_MAP_READWRITE);
381     data = map.data;
382
383     memset (data, 0, map.size);
384
385     /* Parsing sps to get the info required further on */
386
387     gst_buffer_map (g_ptr_array_index (rtph265depay->sps, 0), &nalmap,
388         GST_MAP_READ);
389
390     max_sub_layers_minus1 = ((nalmap.data[2]) >> 1) & 0x07;
391     temporal_id_nesting_flag = nalmap.data[2] & 0x01;
392
393     gst_bit_reader_init (&br, nalmap.data + 15, nalmap.size - 15);
394
395     read_golomb (&br, &tmp);    /* sps_seq_parameter_set_id */
396     read_golomb (&br, &chroma_format_idc);      /* chroma_format_idc */
397
398     if (chroma_format_idc == 3)
399
400       gst_bit_reader_get_bits_uint8 (&br, &tmp8, 1);    /* separate_colour_plane_flag */
401
402     read_golomb (&br, &tmp);    /* pic_width_in_luma_samples */
403     read_golomb (&br, &tmp);    /* pic_height_in_luma_samples */
404
405     gst_bit_reader_get_bits_uint8 (&br, &tmp8, 1);      /* conformance_window_flag */
406     if (tmp8) {
407       read_golomb (&br, &tmp);  /* conf_win_left_offset */
408       read_golomb (&br, &tmp);  /* conf_win_right_offset */
409       read_golomb (&br, &tmp);  /* conf_win_top_offset */
410       read_golomb (&br, &tmp);  /* conf_win_bottom_offset */
411     }
412
413     read_golomb (&br, &bit_depth_luma_minus8);  /* bit_depth_luma_minus8 */
414     read_golomb (&br, &bit_depth_chroma_minus8);        /* bit_depth_chroma_minus8 */
415
416     GST_DEBUG_OBJECT (rtph265depay,
417         "Ignoring min_spatial_segmentation for now (assuming zero)");
418
419     min_spatial_segmentation_idc = 0;   /* NOTE - we ignore this for now, but in a perfect world, we should continue parsing to obtain the real value */
420
421     nl = nalmap.size;
422
423     gst_buffer_unmap (g_ptr_array_index (rtph265depay->sps, 0), &nalmap);
424
425     /* HEVCDecoderConfigurationVersion = 1 */
426     data[0] = 1;
427
428     /* Copy from profile_tier_level (Rec. ITU-T H.265 (04/2013) section 7.3.3
429      *
430      * profile_space | tier_flat | profile_idc |
431      * profile_compatibility_flags | constraint_indicator_flags |
432      * level_idc | progressive_source_flag | interlaced_source_flag
433      * non_packed_constraint_flag | frame_only_constraint_flag
434      * reserved_zero_44bits | level_idc */
435     gst_buffer_map (g_ptr_array_index (rtph265depay->sps, 0), &nalmap,
436         GST_MAP_READ);
437     for (i = 0; i < 12; i++)
438       data[i + 1] = nalmap.data[i];
439     gst_buffer_unmap (g_ptr_array_index (rtph265depay->sps, 0), &nalmap);
440
441     /* min_spatial_segmentation_idc */
442     GST_WRITE_UINT16_BE (data + 13, min_spatial_segmentation_idc);
443     data[13] |= 0xf0;
444     data[15] = 0xfc;            /* keeping parrallelismType as zero (unknown) */
445     data[16] = 0xfc | chroma_format_idc;
446     data[17] = 0xf8 | bit_depth_luma_minus8;
447     data[18] = 0xf8 | bit_depth_chroma_minus8;
448     data[19] = 0x00;            /* keep avgFrameRate as unspecified */
449     data[20] = 0x00;            /* keep avgFrameRate as unspecified */
450     /* constFrameRate(2 bits): 0, stream may or may not be of constant framerate
451      * numTemporalLayers (3 bits): number of temporal layers, value from SPS
452      * TemporalIdNested (1 bit): sps_temporal_id_nesting_flag from SPS
453      * lengthSizeMinusOne (2 bits): plus 1 indicates the length of the NALUnitLength */
454     data[21] =
455         0x00 | ((max_sub_layers_minus1 +
456             1) << 3) | (temporal_id_nesting_flag << 2) | (nl - 1);
457     GST_WRITE_UINT8 (data + 22, num_arrays);    /* numOfArrays */
458
459     data += 23;
460
461     /* copy all VPS */
462     if (num_vps > 0) {
463       /* array_completeness | reserved_zero bit | nal_unit_type */
464       data[0] = 0x00 | 0x20;
465       data++;
466
467       GST_WRITE_UINT16_BE (data, num_vps);
468       data += 2;
469
470       for (i = 0; i < num_vps; i++) {
471         gsize nal_size =
472             gst_buffer_get_size (g_ptr_array_index (rtph265depay->vps, i));
473         GST_WRITE_UINT16_BE (data, nal_size);
474         gst_buffer_extract (g_ptr_array_index (rtph265depay->vps, i), 0,
475             data + 2, nal_size);
476         data += 2 + nal_size;
477         GST_DEBUG_OBJECT (rtph265depay, "Copied VPS %d of length %u", i,
478             (guint) nal_size);
479       }
480     }
481
482     /* copy all SPS */
483     if (num_sps > 0) {
484       /* array_completeness | reserved_zero bit | nal_unit_type */
485       data[0] = 0x00 | 0x21;
486       data++;
487
488       GST_WRITE_UINT16_BE (data, num_sps);
489       data += 2;
490
491       for (i = 0; i < num_sps; i++) {
492         gsize nal_size =
493             gst_buffer_get_size (g_ptr_array_index (rtph265depay->sps, i));
494         GST_WRITE_UINT16_BE (data, nal_size);
495         gst_buffer_extract (g_ptr_array_index (rtph265depay->sps, i), 0,
496             data + 2, nal_size);
497         data += 2 + nal_size;
498         GST_DEBUG_OBJECT (rtph265depay, "Copied SPS %d of length %u", i,
499             (guint) nal_size);
500       }
501     }
502
503     /* copy all PPS */
504     if (num_pps > 0) {
505       /* array_completeness | reserved_zero bit | nal_unit_type */
506       data[0] = 0x00 | 0x22;
507       data++;
508
509       GST_WRITE_UINT16_BE (data, num_pps);
510       data += 2;
511
512       for (i = 0; i < num_pps; i++) {
513         gsize nal_size =
514             gst_buffer_get_size (g_ptr_array_index (rtph265depay->pps, i));
515         GST_WRITE_UINT16_BE (data, nal_size);
516         gst_buffer_extract (g_ptr_array_index (rtph265depay->pps, i), 0,
517             data + 2, nal_size);
518         data += 2 + nal_size;
519         GST_DEBUG_OBJECT (rtph265depay, "Copied PPS %d of length %u", i,
520             (guint) nal_size);
521       }
522     }
523
524     new_size = data - map.data;
525     gst_buffer_unmap (codec_data, &map);
526     gst_buffer_set_size (codec_data, new_size);
527
528     gst_caps_set_simple (srccaps,
529         "codec_data", GST_TYPE_BUFFER, codec_data, NULL);
530     gst_buffer_unref (codec_data);
531   }
532
533   res = gst_pad_set_caps (GST_RTP_BASE_DEPAYLOAD_SRCPAD (rtph265depay),
534       srccaps);
535   gst_caps_unref (srccaps);
536
537   if (res)
538     rtph265depay->new_codec_data = FALSE;
539
540   return res;
541 }
542
543 gboolean
544 gst_rtp_h265_add_vps_sps_pps (GstElement * rtph265, GPtrArray * vps_array,
545     GPtrArray * sps_array, GPtrArray * pps_array, GstBuffer * nal)
546 {
547   GstMapInfo map;
548   guchar type;
549   guint i;
550
551   gst_buffer_map (nal, &map, GST_MAP_READ);
552
553   type = (map.data[0] >> 1) & 0x3f;
554
555   if (type == GST_H265_VPS_NUT) {
556     guint32 vps_id = (map.data[2] >> 4) & 0x0f;
557
558     for (i = 0; i < vps_array->len; i++) {
559       GstBuffer *vps = g_ptr_array_index (vps_array, i);
560       GstMapInfo vpsmap;
561       guint32 tmp_vps_id;
562
563       gst_buffer_map (vps, &vpsmap, GST_MAP_READ);
564       tmp_vps_id = (vpsmap.data[2] >> 4) & 0x0f;
565
566       if (vps_id == tmp_vps_id) {
567         if (map.size == vpsmap.size &&
568             memcmp (map.data, vpsmap.data, vpsmap.size) == 0) {
569           GST_LOG_OBJECT (rtph265, "Unchanged VPS %u, not updating", vps_id);
570           gst_buffer_unmap (vps, &vpsmap);
571           goto drop;
572         } else {
573           gst_buffer_unmap (vps, &vpsmap);
574           g_ptr_array_remove_index_fast (vps_array, i);
575           g_ptr_array_add (vps_array, nal);
576           GST_LOG_OBJECT (rtph265, "Modified VPS %u, replacing", vps_id);
577           goto done;
578         }
579       }
580       gst_buffer_unmap (vps, &vpsmap);
581     }
582     GST_LOG_OBJECT (rtph265, "Adding new VPS %u", vps_id);
583     g_ptr_array_add (vps_array, nal);
584   } else if (type == GST_H265_SPS_NUT) {
585     guint32 sps_id;
586
587     if (!parse_sps (&map, &sps_id)) {
588       GST_WARNING_OBJECT (rtph265, "Invalid SPS,"
589           " can't parse seq_parameter_set_id");
590       goto drop;
591     }
592
593     for (i = 0; i < sps_array->len; i++) {
594       GstBuffer *sps = g_ptr_array_index (sps_array, i);
595       GstMapInfo spsmap;
596       guint32 tmp_sps_id;
597
598       gst_buffer_map (sps, &spsmap, GST_MAP_READ);
599       parse_sps (&spsmap, &tmp_sps_id);
600
601       if (sps_id == tmp_sps_id) {
602         if (map.size == spsmap.size &&
603             memcmp (map.data, spsmap.data, spsmap.size) == 0) {
604           GST_LOG_OBJECT (rtph265, "Unchanged SPS %u, not updating", sps_id);
605           gst_buffer_unmap (sps, &spsmap);
606           goto drop;
607         } else {
608           gst_buffer_unmap (sps, &spsmap);
609           g_ptr_array_remove_index_fast (sps_array, i);
610           g_ptr_array_add (sps_array, nal);
611           GST_LOG_OBJECT (rtph265, "Modified SPS %u, replacing", sps_id);
612           goto done;
613         }
614       }
615       gst_buffer_unmap (sps, &spsmap);
616     }
617     GST_LOG_OBJECT (rtph265, "Adding new SPS %u", sps_id);
618     g_ptr_array_add (sps_array, nal);
619   } else if (type == GST_H265_PPS_NUT) {
620     guint32 sps_id;
621     guint32 pps_id;
622
623     if (!parse_pps (&map, &sps_id, &pps_id)) {
624       GST_WARNING_OBJECT (rtph265, "Invalid PPS,"
625           " can't parse seq_parameter_set_id or pic_parameter_set_id");
626       goto drop;
627     }
628
629     for (i = 0; i < pps_array->len; i++) {
630       GstBuffer *pps = g_ptr_array_index (pps_array, i);
631       GstMapInfo ppsmap;
632       guint32 tmp_sps_id;
633       guint32 tmp_pps_id;
634
635
636       gst_buffer_map (pps, &ppsmap, GST_MAP_READ);
637       parse_pps (&ppsmap, &tmp_sps_id, &tmp_pps_id);
638
639       if (sps_id == tmp_sps_id && pps_id == tmp_pps_id) {
640         if (map.size == ppsmap.size &&
641             memcmp (map.data, ppsmap.data, ppsmap.size) == 0) {
642           GST_LOG_OBJECT (rtph265, "Unchanged PPS %u:%u, not updating", sps_id,
643               pps_id);
644           gst_buffer_unmap (pps, &ppsmap);
645           goto drop;
646         } else {
647           gst_buffer_unmap (pps, &ppsmap);
648           g_ptr_array_remove_index_fast (pps_array, i);
649           g_ptr_array_add (pps_array, nal);
650           GST_LOG_OBJECT (rtph265, "Modified PPS %u:%u, replacing",
651               sps_id, pps_id);
652           goto done;
653         }
654       }
655       gst_buffer_unmap (pps, &ppsmap);
656     }
657     GST_LOG_OBJECT (rtph265, "Adding new PPS %u:%i", sps_id, pps_id);
658     g_ptr_array_add (pps_array, nal);
659   } else {
660     goto drop;
661   }
662
663 done:
664   gst_buffer_unmap (nal, &map);
665
666   return TRUE;
667
668 drop:
669   gst_buffer_unmap (nal, &map);
670   gst_buffer_unref (nal);
671
672   return FALSE;
673 }
674
675
676 static void
677 gst_rtp_h265_depay_add_vps_sps_pps (GstRtpH265Depay * rtph265depay,
678     GstBuffer * nal)
679 {
680   if (gst_rtp_h265_add_vps_sps_pps (GST_ELEMENT (rtph265depay),
681           rtph265depay->vps, rtph265depay->sps, rtph265depay->pps, nal))
682     rtph265depay->new_codec_data = TRUE;
683 }
684
685 static gboolean
686 gst_rtp_h265_depay_setcaps (GstRTPBaseDepayload * depayload, GstCaps * caps)
687 {
688   gint clock_rate;
689   GstStructure *structure = gst_caps_get_structure (caps, 0);
690   GstRtpH265Depay *rtph265depay;
691   const gchar *ps;
692   GstBuffer *codec_data;
693   GstMapInfo map;
694   guint8 *ptr;
695
696   rtph265depay = GST_RTP_H265_DEPAY (depayload);
697
698   if (!gst_structure_get_int (structure, "clock-rate", &clock_rate))
699     clock_rate = 90000;
700   depayload->clock_rate = clock_rate;
701
702   /* Base64 encoded, comma separated config NALs */
703   ps = gst_structure_get_string (structure, "sprop-parameter-sets");
704
705   /* negotiate with downstream w.r.t. output format and alignment */
706   gst_rtp_h265_depay_negotiate (rtph265depay);
707
708   if (rtph265depay->byte_stream && ps != NULL) {
709     /* for bytestream we only need the parameter sets but we don't error out
710      * when they are not there, we assume they are in the stream. */
711     gchar **params;
712     guint len, total;
713     gint i;
714
715     params = g_strsplit (ps, ",", 0);
716
717     /* count total number of bytes in base64. Also include the sync bytes in
718      * front of the params. */
719     len = 0;
720     for (i = 0; params[i]; i++) {
721       len += strlen (params[i]);
722       len += sizeof (sync_bytes);
723     }
724     /* we seriously overshoot the length, but it's fine. */
725     codec_data = gst_buffer_new_and_alloc (len);
726
727     gst_buffer_map (codec_data, &map, GST_MAP_WRITE);
728     ptr = map.data;
729     total = 0;
730     for (i = 0; params[i]; i++) {
731       guint save = 0;
732       gint state = 0;
733
734       GST_DEBUG_OBJECT (depayload, "decoding param %d (%s)", i, params[i]);
735       memcpy (ptr, sync_bytes, sizeof (sync_bytes));
736       ptr += sizeof (sync_bytes);
737       len =
738           g_base64_decode_step (params[i], strlen (params[i]), ptr, &state,
739           &save);
740       GST_DEBUG_OBJECT (depayload, "decoded %d bytes", len);
741       total += len + sizeof (sync_bytes);
742       ptr += len;
743     }
744     gst_buffer_unmap (codec_data, &map);
745     gst_buffer_resize (codec_data, 0, total);
746     g_strfreev (params);
747
748     /* keep the codec_data, we need to send it as the first buffer. We cannot
749      * push it in the adapter because the adapter might be flushed on discont.
750      */
751     if (rtph265depay->codec_data)
752       gst_buffer_unref (rtph265depay->codec_data);
753     rtph265depay->codec_data = codec_data;
754   } else if (!rtph265depay->byte_stream) {
755     gchar **params;
756     gint i;
757
758     if (ps == NULL)
759       goto incomplete_caps;
760
761     params = g_strsplit (ps, ",", 0);
762
763     GST_DEBUG_OBJECT (depayload, "we have %d params", g_strv_length (params));
764
765     /* start with 23 bytes header */
766     for (i = 0; params[i]; i++) {
767       GstBuffer *nal;
768       GstMapInfo nalmap;
769       gsize nal_len;
770       guint save = 0;
771       gint state = 0;
772
773       nal_len = strlen (params[i]);
774       nal = gst_buffer_new_and_alloc (nal_len);
775       gst_buffer_map (nal, &nalmap, GST_MAP_READWRITE);
776
777       nal_len =
778           g_base64_decode_step (params[i], nal_len, nalmap.data, &state, &save);
779
780       GST_DEBUG_OBJECT (depayload, "adding param %d as %s", i,
781           (((nalmap.data[0] >> 1) & 0x3f) ==
782               32) ? "VPS" : (((nalmap.data[0] >> 1) & 0x3f) ==
783               33) ? "SPS" : "PPS");
784
785       gst_buffer_unmap (nal, &nalmap);
786       gst_buffer_set_size (nal, nal_len);
787
788       gst_rtp_h265_depay_add_vps_sps_pps (rtph265depay, nal);
789     }
790     g_strfreev (params);
791
792     if (rtph265depay->sps->len == 0 || rtph265depay->pps->len == 0)
793       goto incomplete_caps;
794   }
795
796   return gst_rtp_h265_set_src_caps (rtph265depay);
797
798   /* ERRORS */
799 incomplete_caps:
800   {
801     GST_DEBUG_OBJECT (depayload, "we have incomplete caps,"
802         " doing setcaps later");
803     return TRUE;
804   }
805 }
806
807 static GstBuffer *
808 gst_rtp_h265_complete_au (GstRtpH265Depay * rtph265depay,
809     GstClockTime * out_timestamp, gboolean * out_keyframe)
810 {
811   guint outsize;
812   GstBuffer *outbuf;
813
814   /* we had a picture in the adapter and we completed it */
815   GST_DEBUG_OBJECT (rtph265depay, "taking completed AU");
816   outsize = gst_adapter_available (rtph265depay->picture_adapter);
817   outbuf = gst_adapter_take_buffer (rtph265depay->picture_adapter, outsize);
818
819   *out_timestamp = rtph265depay->last_ts;
820   *out_keyframe = rtph265depay->last_keyframe;
821
822   rtph265depay->last_keyframe = FALSE;
823   rtph265depay->picture_start = FALSE;
824
825   return outbuf;
826 }
827
828 /* VPS/SPS/PPS/RADL/TSA/RASL/IDR/CRA is considered key, all others DELTA;
829  * so downstream waiting for keyframe can pick up at VPS/SPS/PPS/IDR */
830
831 #define NAL_TYPE_IS_PARAMETER_SET(nt) (         ((nt) == GST_H265_VPS_NUT)\
832                                                                                 ||  ((nt) == GST_H265_SPS_NUT)\
833                                                                                 ||  ((nt) == GST_H265_PPS_NUT)                          )
834
835 #define NAL_TYPE_IS_CODED_SLICE_SEGMENT(nt) (           ((nt) == GST_H265_NAL_SLICE_TRAIL_N)\
836                                                                                                 ||      ((nt) == GST_H265_NAL_SLICE_TRAIL_R)\
837                                                                                                 ||  ((nt) == GST_H265_NAL_SLICE_TSA_N)\
838                                                                                                 ||  ((nt) == GST_H265_NAL_SLICE_TSA_R)\
839                                                                                                 ||  ((nt) == GST_H265_NAL_SLICE_STSA_N)\
840                                                                                                 ||  ((nt) == GST_H265_NAL_SLICE_STSA_R)\
841                                                                                                 ||  ((nt) == GST_H265_NAL_SLICE_RASL_N)\
842                                                                                                 ||  ((nt) == GST_H265_NAL_SLICE_RASL_R)\
843                                                                                                 ||  ((nt) == GST_H265_NAL_SLICE_BLA_W_LP)\
844                                                                                                 ||  ((nt) == GST_H265_NAL_SLICE_BLA_W_RADL)\
845                                                                                                 ||  ((nt) == GST_H265_NAL_SLICE_BLA_N_LP)\
846                                                                                                 ||  ((nt) == GST_H265_NAL_SLICE_IDR_W_RADL)\
847                                                                                                 ||  ((nt) == GST_H265_NAL_SLICE_IDR_N_LP)\
848                                                                                                 ||  ((nt) == GST_H265_NAL_SLICE_CRA_NUT)                )
849
850 #define NAL_TYPE_IS_KEY(nt) (NAL_TYPE_IS_PARAMETER_SET(nt) || NAL_TYPE_IS_CODED_SLICE_SEGMENT(nt))
851
852 static GstBuffer *
853 gst_rtp_h265_depay_handle_nal (GstRtpH265Depay * rtph265depay, GstBuffer * nal,
854     GstClockTime in_timestamp, gboolean marker)
855 {
856   GstRTPBaseDepayload *depayload = GST_RTP_BASE_DEPAYLOAD (rtph265depay);
857   gint nal_type;
858   GstMapInfo map;
859   GstBuffer *outbuf = NULL;
860   GstClockTime out_timestamp;
861   gboolean keyframe, out_keyframe;
862
863   gst_buffer_map (nal, &map, GST_MAP_READ);
864   if (G_UNLIKELY (map.size < 5))
865     goto short_nal;
866
867   nal_type = (map.data[4] >> 1) & 0x3f;
868   GST_DEBUG_OBJECT (rtph265depay, "handle NAL type %d (RTP marker bit %d)",
869       nal_type, marker);
870
871   keyframe = NAL_TYPE_IS_KEY (nal_type);
872
873   out_keyframe = keyframe;
874   out_timestamp = in_timestamp;
875
876   if (!rtph265depay->byte_stream) {
877     if (NAL_TYPE_IS_PARAMETER_SET (nal_type)) {
878       gst_rtp_h265_depay_add_vps_sps_pps (rtph265depay,
879           gst_buffer_copy_region (nal, GST_BUFFER_COPY_ALL,
880               4, gst_buffer_get_size (nal) - 4));
881       gst_buffer_unmap (nal, &map);
882       gst_buffer_unref (nal);
883       return NULL;
884     } else if (rtph265depay->sps->len == 0 || rtph265depay->pps->len == 0) {
885       /* Down push down any buffer in non-bytestream mode if the SPS/PPS haven't
886        * go through yet
887        */
888       gst_pad_push_event (GST_RTP_BASE_DEPAYLOAD_SINKPAD (depayload),
889           gst_event_new_custom (GST_EVENT_CUSTOM_UPSTREAM,
890               gst_structure_new ("GstForceKeyUnit",
891                   "all-headers", G_TYPE_BOOLEAN, TRUE, NULL)));
892       gst_buffer_unmap (nal, &map);
893       gst_buffer_unref (nal);
894       return NULL;
895     }
896
897     if (rtph265depay->new_codec_data &&
898         rtph265depay->sps->len > 0 && rtph265depay->pps->len > 0)
899       gst_rtp_h265_set_src_caps (rtph265depay);
900   }
901
902   if (rtph265depay->merge) {
903     gboolean start = FALSE, complete = FALSE;
904
905     /* marker bit isn't mandatory so in the following code we try to detect
906      * an AU boundary (see H.265 spec section 7.4.2.4.4) */
907     if (!marker) {
908
909       if (NAL_TYPE_IS_CODED_SLICE_SEGMENT (nal_type)) {
910         /* A NAL unit (X) ends an access unit if the next-occurring VCL NAL unit (Y) has the high-order bit of the first byte after its NAL unit header equal to 1 */
911         start = TRUE;
912         if (((map.data[6] >> 7) & 0x01) == 1) {
913           complete = TRUE;
914         }
915         complete = TRUE;
916       } else if ((nal_type >= 32 && nal_type <= 35)
917           || nal_type == 39 || (nal_type >= 41 && nal_type <= 44)
918           || (nal_type >= 48 && nal_type <= 55)) {
919         /* VPS, SPS, PPS, SEI, ... terminate an access unit */
920         complete = TRUE;
921       }
922       GST_DEBUG_OBJECT (depayload, "start %d, complete %d", start, complete);
923
924       if (complete && rtph265depay->picture_start)
925         outbuf = gst_rtp_h265_complete_au (rtph265depay, &out_timestamp,
926             &out_keyframe);
927     }
928     /* add to adapter */
929     gst_buffer_unmap (nal, &map);
930
931     GST_DEBUG_OBJECT (depayload, "adding NAL to picture adapter");
932     gst_adapter_push (rtph265depay->picture_adapter, nal);
933     rtph265depay->last_ts = in_timestamp;
934     rtph265depay->last_keyframe |= keyframe;
935     rtph265depay->picture_start |= start;
936
937     if (marker)
938       outbuf = gst_rtp_h265_complete_au (rtph265depay, &out_timestamp,
939           &out_keyframe);
940   } else {
941     /* no merge, output is input nal */
942     GST_DEBUG_OBJECT (depayload, "using NAL as output");
943     outbuf = nal;
944     gst_buffer_unmap (nal, &map);
945   }
946
947   if (outbuf) {
948     /* prepend codec_data */
949     if (rtph265depay->codec_data) {
950       GST_DEBUG_OBJECT (depayload, "prepending codec_data");
951       outbuf = gst_buffer_append (rtph265depay->codec_data, outbuf);
952       rtph265depay->codec_data = NULL;
953       out_keyframe = TRUE;
954     }
955     outbuf = gst_buffer_make_writable (outbuf);
956
957     GST_BUFFER_TIMESTAMP (outbuf) = out_timestamp;
958
959     if (out_keyframe)
960       GST_BUFFER_FLAG_UNSET (outbuf, GST_BUFFER_FLAG_DELTA_UNIT);
961     else
962       GST_BUFFER_FLAG_SET (outbuf, GST_BUFFER_FLAG_DELTA_UNIT);
963   }
964
965   return outbuf;
966
967   /* ERRORS */
968 short_nal:
969   {
970     GST_WARNING_OBJECT (depayload, "dropping short NAL");
971     gst_buffer_unmap (nal, &map);
972     gst_buffer_unref (nal);
973     return NULL;
974   }
975 }
976
977 static GstBuffer *
978 gst_rtp_h265_push_fragmentation_unit (GstRtpH265Depay * rtph265depay,
979     gboolean send)
980 {
981   guint outsize;
982   GstMapInfo map;
983   GstBuffer *outbuf;
984
985   outsize = gst_adapter_available (rtph265depay->adapter);
986   outbuf = gst_adapter_take_buffer (rtph265depay->adapter, outsize);
987
988   gst_buffer_map (outbuf, &map, GST_MAP_WRITE);
989   GST_DEBUG_OBJECT (rtph265depay, "output %d bytes", outsize);
990
991   if (rtph265depay->byte_stream) {
992     memcpy (map.data, sync_bytes, sizeof (sync_bytes));
993   } else {
994     goto not_implemented;
995   }
996   gst_buffer_unmap (outbuf, &map);
997
998   rtph265depay->current_fu_type = 0;
999
1000   outbuf = gst_rtp_h265_depay_handle_nal (rtph265depay, outbuf,
1001       rtph265depay->fu_timestamp, rtph265depay->fu_marker);
1002
1003   if (send && outbuf) {
1004     gst_rtp_base_depayload_push (GST_RTP_BASE_DEPAYLOAD (rtph265depay), outbuf);
1005     outbuf = NULL;
1006   }
1007   return outbuf;
1008
1009 not_implemented:
1010   {
1011     GST_ERROR_OBJECT (rtph265depay,
1012         ("Only bytestream format is currently supported."));
1013     gst_buffer_unmap (outbuf, &map);
1014     return NULL;
1015   }
1016 }
1017
1018 static GstBuffer *
1019 gst_rtp_h265_depay_process (GstRTPBaseDepayload * depayload, GstBuffer * buf)
1020 {
1021   GstRtpH265Depay *rtph265depay;
1022   GstBuffer *outbuf = NULL;
1023   guint8 nal_unit_type;
1024   GstRTPBuffer rtp = { NULL };
1025
1026   rtph265depay = GST_RTP_H265_DEPAY (depayload);
1027
1028   /* flush remaining data on discont */
1029   if (GST_BUFFER_IS_DISCONT (buf)) {
1030     gst_adapter_clear (rtph265depay->adapter);
1031     rtph265depay->wait_start = TRUE;
1032     rtph265depay->current_fu_type = 0;
1033   }
1034
1035   {
1036     gint payload_len;
1037     guint8 *payload;
1038     guint header_len;
1039     GstMapInfo map;
1040     guint outsize, nalu_size;
1041     GstClockTime timestamp;
1042     gboolean marker;
1043     guint8 nuh_layer_id, nuh_temporal_id_plus1;
1044     guint8 S, E;
1045     guint16 nal_header;
1046 #if 0
1047     gboolean donl_present = FALSE;
1048 #endif
1049
1050     timestamp = GST_BUFFER_TIMESTAMP (buf);
1051
1052     gst_rtp_buffer_map (buf, GST_MAP_READ, &rtp);
1053
1054     payload_len = gst_rtp_buffer_get_payload_len (&rtp);
1055     payload = gst_rtp_buffer_get_payload (&rtp);
1056     marker = gst_rtp_buffer_get_marker (&rtp);
1057
1058     GST_DEBUG_OBJECT (rtph265depay, "receiving %d bytes", payload_len);
1059
1060     if (payload_len == 0)
1061       goto empty_packet;
1062
1063     /* +---------------+---------------+
1064      * |0|1|2|3|4|5|6|7|0|1|2|3|4|5|6|7|
1065      * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1066      * |F|   Type    |  LayerId  | TID |
1067      * +-------------+-----------------+
1068      *
1069      * F must be 0.
1070      *
1071      */
1072     nal_unit_type = (payload[0] >> 1) & 0x3f;
1073     nuh_layer_id = ((payload[0] & 0x01) << 5) | (payload[1] >> 3);      /* should be zero for now but this could change in future HEVC extensions */
1074     nuh_temporal_id_plus1 = payload[1] & 0x03;
1075
1076     /* At least two byte header with type */
1077     header_len = 2;
1078
1079     GST_DEBUG_OBJECT (rtph265depay,
1080         "NAL header nal_unit_type %d, nuh_temporal_id_plus1 %d", nal_unit_type,
1081         nuh_temporal_id_plus1);
1082
1083     GST_FIXME_OBJECT (rtph265depay, "Assuming DONL field is not present");
1084
1085     /* FIXME - assuming DONL field is not present for now */
1086     /*donl_present = (tx-mode == "MST") || (sprop-max-don-diff > 0); */
1087
1088     /* If FU unit was being processed, but the current nal is of a different
1089      * type.  Assume that the remote payloader is buggy (didn't set the end bit
1090      * when the FU ended) and send out what we gathered thusfar */
1091     if (G_UNLIKELY (rtph265depay->current_fu_type != 0 &&
1092             nal_unit_type != rtph265depay->current_fu_type))
1093       gst_rtp_h265_push_fragmentation_unit (rtph265depay, TRUE);
1094
1095     switch (nal_unit_type) {
1096       case 48:
1097       {
1098         GST_DEBUG_OBJECT (rtph265depay, "Processing aggregation packet");
1099
1100         /* Aggregation packet (section 4.7) */
1101
1102         /*  An example of an AP packet containing two aggregation units
1103            without the DONL and DOND fields
1104
1105            0                   1                   2                   3
1106            0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
1107            +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1108            |                          RTP Header                           |
1109            +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1110            |   PayloadHdr (Type=48)        |         NALU 1 Size           |
1111            +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1112            |          NALU 1 HDR           |                               |
1113            +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+         NALU 1 Data           |
1114            |                   . . .                                       |
1115            |                                                               |
1116            +               +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1117            |  . . .        | NALU 2 Size                   | NALU 2 HDR    |
1118            +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1119            | NALU 2 HDR    |                                               |
1120            +-+-+-+-+-+-+-+-+              NALU 2 Data                      |
1121            |                   . . .                                       |
1122            |                               +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1123            |                               :...OPTIONAL RTP padding        |
1124            +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1125          */
1126
1127         /* strip headers */
1128         payload += header_len;
1129         payload_len -= header_len;
1130
1131         rtph265depay->wait_start = FALSE;
1132
1133 #if 0
1134         if (donl_present)
1135           goto not_implemented_donl_present;
1136 #endif
1137
1138         while (payload_len > 2) {
1139
1140           nalu_size = (payload[0] << 8) | payload[1];
1141
1142           /* dont include nalu_size */
1143           if (nalu_size > (payload_len - 2))
1144             nalu_size = payload_len - 2;
1145
1146           outsize = nalu_size + sizeof (sync_bytes);
1147           outbuf = gst_buffer_new_and_alloc (outsize);
1148
1149           gst_buffer_map (outbuf, &map, GST_MAP_WRITE);
1150           if (rtph265depay->byte_stream) {
1151             memcpy (map.data, sync_bytes, sizeof (sync_bytes));
1152           } else {
1153             goto not_implemented;
1154           }
1155
1156           /* strip NALU size */
1157           payload += 2;
1158           payload_len -= 2;
1159
1160           memcpy (map.data + sizeof (sync_bytes), payload, nalu_size);
1161           gst_buffer_unmap (outbuf, &map);
1162
1163           gst_adapter_push (rtph265depay->adapter, outbuf);
1164
1165           payload += nalu_size;
1166           payload_len -= nalu_size;
1167         }
1168
1169         outsize = gst_adapter_available (rtph265depay->adapter);
1170         if (outsize > 0) {
1171           outbuf = gst_adapter_take_buffer (rtph265depay->adapter, outsize);
1172           outbuf =
1173               gst_rtp_h265_depay_handle_nal (rtph265depay, outbuf, timestamp,
1174               marker);
1175         }
1176         break;
1177       }
1178       case 49:
1179       {
1180         GST_DEBUG_OBJECT (rtph265depay, "Processing Fragmentation Unit");
1181
1182         /* Fragmentation units (FUs)  Section 4.8 */
1183
1184         /*    The structure of a Fragmentation Unit (FU)
1185          *
1186          *    0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
1187          +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1188          |    PayloadHdr (Type=49)       |   FU header   | DONL (cond)   |
1189          +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-|
1190          | DONL (cond)   |                                               |
1191          |-+-+-+-+-+-+-+-+                                               |
1192          |                         FU payload                            |
1193          |                                                               |
1194          |                               +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1195          |                               :...OPTIONAL RTP padding        |
1196          +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1197          *
1198          *
1199          */
1200
1201         /* strip headers */
1202         payload += header_len;
1203         payload_len -= header_len;
1204
1205         /* processing FU header */
1206         S = (payload[0] & 0x80) == 0x80;
1207         E = (payload[0] & 0x40) == 0x40;
1208
1209         GST_DEBUG_OBJECT (rtph265depay,
1210             "FU header with S %d, E %d, nal_unit_type %d", S, E,
1211             payload[0] & 0x3f);
1212
1213         if (rtph265depay->wait_start && !S)
1214           goto waiting_start;
1215
1216 #if 0
1217         if (donl_present)
1218           goto not_implemented_donl_present;
1219 #endif
1220
1221         if (S) {
1222
1223           GST_DEBUG_OBJECT (rtph265depay, "Start of Fragmentation Unit");
1224
1225           /* If a new FU unit started, while still processing an older one.
1226            * Assume that the remote payloader is buggy (doesn't set the end
1227            * bit) and send out what we've gathered thusfar */
1228           if (G_UNLIKELY (rtph265depay->current_fu_type != 0))
1229             gst_rtp_h265_push_fragmentation_unit (rtph265depay, TRUE);
1230
1231           rtph265depay->current_fu_type = nal_unit_type;
1232           rtph265depay->fu_timestamp = timestamp;
1233
1234           rtph265depay->wait_start = FALSE;
1235
1236           /* reconstruct NAL header */
1237           nal_header =
1238               ((payload[0] & 0x3f) << 9) | (nuh_layer_id << 3) |
1239               nuh_temporal_id_plus1;
1240
1241           /* go back one byte so we can copy the payload + two bytes more in the front which
1242            * will be overwritten by the nal_header
1243            */
1244           payload -= 1;
1245           payload_len += 1;
1246
1247           nalu_size = payload_len;
1248           outsize = nalu_size + sizeof (sync_bytes);
1249           outbuf = gst_buffer_new_and_alloc (outsize);
1250
1251           gst_buffer_map (outbuf, &map, GST_MAP_WRITE);
1252           memcpy (map.data + sizeof (sync_bytes), payload, nalu_size);
1253           map.data[sizeof (sync_bytes)] = nal_header >> 8;
1254           map.data[sizeof (sync_bytes) + 1] = nal_header & 0xff;
1255           gst_buffer_unmap (outbuf, &map);
1256
1257           GST_DEBUG_OBJECT (rtph265depay, "queueing %d bytes", outsize);
1258
1259           /* and assemble in the adapter */
1260           gst_adapter_push (rtph265depay->adapter, outbuf);
1261         } else {
1262
1263           GST_DEBUG_OBJECT (rtph265depay,
1264               "Following part of Fragmentation Unit");
1265
1266           /* strip off FU header byte */
1267           payload += 1;
1268           payload_len -= 1;
1269
1270           outsize = payload_len;
1271           outbuf = gst_buffer_new_and_alloc (outsize);
1272           gst_buffer_fill (outbuf, 0, payload, outsize);
1273
1274           GST_DEBUG_OBJECT (rtph265depay, "queueing %d bytes", outsize);
1275
1276           /* and assemble in the adapter */
1277           gst_adapter_push (rtph265depay->adapter, outbuf);
1278         }
1279
1280         outbuf = NULL;
1281         rtph265depay->fu_marker = marker;
1282
1283         /* if NAL unit ends, flush the adapter */
1284         if (E) {
1285           outbuf = gst_rtp_h265_push_fragmentation_unit (rtph265depay, FALSE);
1286           GST_DEBUG_OBJECT (rtph265depay, "End of Fragmentation Unit");
1287         }
1288         break;
1289       }
1290       case 50:
1291         goto not_implemented;   /* PACI packets  Section 4.9 */
1292       default:
1293       {
1294         rtph265depay->wait_start = FALSE;
1295
1296         /* All other cases: Single NAL unit packet   Section 4.6 */
1297         /* the entire payload is the output buffer */
1298
1299 #if 0
1300         if (donl_present)
1301           goto not_implemented_donl_present;
1302 #endif
1303
1304         nalu_size = payload_len;
1305         outsize = nalu_size + sizeof (sync_bytes);
1306         outbuf = gst_buffer_new_and_alloc (outsize);
1307
1308         gst_buffer_map (outbuf, &map, GST_MAP_WRITE);
1309         if (rtph265depay->byte_stream) {
1310           memcpy (map.data, sync_bytes, sizeof (sync_bytes));
1311         } else {
1312           goto not_implemented;
1313         }
1314         memcpy (map.data + sizeof (sync_bytes), payload, nalu_size);
1315         gst_buffer_unmap (outbuf, &map);
1316
1317         outbuf = gst_rtp_h265_depay_handle_nal (rtph265depay, outbuf, timestamp,
1318             marker);
1319         break;
1320       }
1321     }
1322     gst_rtp_buffer_unmap (&rtp);
1323   }
1324
1325   return outbuf;
1326
1327   /* ERRORS */
1328 empty_packet:
1329   {
1330     GST_DEBUG_OBJECT (rtph265depay, "empty packet");
1331     gst_rtp_buffer_unmap (&rtp);
1332     return NULL;
1333   }
1334 waiting_start:
1335   {
1336     GST_DEBUG_OBJECT (rtph265depay, "waiting for start");
1337     gst_rtp_buffer_unmap (&rtp);
1338     return NULL;
1339   }
1340 #if 0
1341 not_implemented_donl_present:
1342   {
1343     GST_ELEMENT_ERROR (rtph265depay, STREAM, FORMAT,
1344         (NULL), ("DONL field present not supported yet"));
1345     gst_rtp_buffer_unmap (&rtp);
1346     return NULL;
1347   }
1348 #endif
1349 not_implemented:
1350   {
1351     GST_ELEMENT_ERROR (rtph265depay, STREAM, FORMAT,
1352         (NULL), ("NAL unit type %d not supported yet", nal_unit_type));
1353     gst_rtp_buffer_unmap (&rtp);
1354     return NULL;
1355   }
1356 }
1357
1358 static gboolean
1359 gst_rtp_h265_depay_handle_event (GstRTPBaseDepayload * depay, GstEvent * event)
1360 {
1361   GstRtpH265Depay *rtph265depay;
1362
1363   rtph265depay = GST_RTP_H265_DEPAY (depay);
1364
1365   switch (GST_EVENT_TYPE (event)) {
1366     case GST_EVENT_FLUSH_STOP:
1367       gst_rtp_h265_depay_reset (rtph265depay);
1368       break;
1369     default:
1370       break;
1371   }
1372
1373   return
1374       GST_RTP_BASE_DEPAYLOAD_CLASS (parent_class)->handle_event (depay, event);
1375 }
1376
1377 static GstStateChangeReturn
1378 gst_rtp_h265_depay_change_state (GstElement * element,
1379     GstStateChange transition)
1380 {
1381   GstRtpH265Depay *rtph265depay;
1382   GstStateChangeReturn ret;
1383
1384   rtph265depay = GST_RTP_H265_DEPAY (element);
1385
1386   switch (transition) {
1387     case GST_STATE_CHANGE_NULL_TO_READY:
1388       break;
1389     case GST_STATE_CHANGE_READY_TO_PAUSED:
1390       gst_rtp_h265_depay_reset (rtph265depay);
1391       break;
1392     default:
1393       break;
1394   }
1395
1396   ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
1397
1398   switch (transition) {
1399     case GST_STATE_CHANGE_READY_TO_NULL:
1400       break;
1401     default:
1402       break;
1403   }
1404   return ret;
1405 }
1406
1407 gboolean
1408 gst_rtp_h265_depay_plugin_init (GstPlugin * plugin)
1409 {
1410   GST_DEBUG_CATEGORY_INIT (rtph265depay_debug, "rtph265depay", 0,
1411       "H265 Video RTP Depayloader");
1412
1413   return gst_element_register (plugin, "rtph265depay",
1414       GST_RANK_SECONDARY, GST_TYPE_RTP_H265_DEPAY);
1415 }