rtp: fix dead code and check for impossible values
[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) {
918         /* VPS, SPS, PPS, SEI, ... terminate an access unit */
919         complete = TRUE;
920       }
921       GST_DEBUG_OBJECT (depayload, "start %d, complete %d", start, complete);
922
923       if (complete && rtph265depay->picture_start)
924         outbuf = gst_rtp_h265_complete_au (rtph265depay, &out_timestamp,
925             &out_keyframe);
926     }
927     /* add to adapter */
928     gst_buffer_unmap (nal, &map);
929
930     GST_DEBUG_OBJECT (depayload, "adding NAL to picture adapter");
931     gst_adapter_push (rtph265depay->picture_adapter, nal);
932     rtph265depay->last_ts = in_timestamp;
933     rtph265depay->last_keyframe |= keyframe;
934     rtph265depay->picture_start |= start;
935
936     if (marker)
937       outbuf = gst_rtp_h265_complete_au (rtph265depay, &out_timestamp,
938           &out_keyframe);
939   } else {
940     /* no merge, output is input nal */
941     GST_DEBUG_OBJECT (depayload, "using NAL as output");
942     outbuf = nal;
943     gst_buffer_unmap (nal, &map);
944   }
945
946   if (outbuf) {
947     /* prepend codec_data */
948     if (rtph265depay->codec_data) {
949       GST_DEBUG_OBJECT (depayload, "prepending codec_data");
950       outbuf = gst_buffer_append (rtph265depay->codec_data, outbuf);
951       rtph265depay->codec_data = NULL;
952       out_keyframe = TRUE;
953     }
954     outbuf = gst_buffer_make_writable (outbuf);
955
956     GST_BUFFER_TIMESTAMP (outbuf) = out_timestamp;
957
958     if (out_keyframe)
959       GST_BUFFER_FLAG_UNSET (outbuf, GST_BUFFER_FLAG_DELTA_UNIT);
960     else
961       GST_BUFFER_FLAG_SET (outbuf, GST_BUFFER_FLAG_DELTA_UNIT);
962   }
963
964   return outbuf;
965
966   /* ERRORS */
967 short_nal:
968   {
969     GST_WARNING_OBJECT (depayload, "dropping short NAL");
970     gst_buffer_unmap (nal, &map);
971     gst_buffer_unref (nal);
972     return NULL;
973   }
974 }
975
976 static GstBuffer *
977 gst_rtp_h265_push_fragmentation_unit (GstRtpH265Depay * rtph265depay,
978     gboolean send)
979 {
980   guint outsize;
981   GstMapInfo map;
982   GstBuffer *outbuf;
983
984   outsize = gst_adapter_available (rtph265depay->adapter);
985   outbuf = gst_adapter_take_buffer (rtph265depay->adapter, outsize);
986
987   gst_buffer_map (outbuf, &map, GST_MAP_WRITE);
988   GST_DEBUG_OBJECT (rtph265depay, "output %d bytes", outsize);
989
990   if (rtph265depay->byte_stream) {
991     memcpy (map.data, sync_bytes, sizeof (sync_bytes));
992   } else {
993     goto not_implemented;
994   }
995   gst_buffer_unmap (outbuf, &map);
996
997   rtph265depay->current_fu_type = 0;
998
999   outbuf = gst_rtp_h265_depay_handle_nal (rtph265depay, outbuf,
1000       rtph265depay->fu_timestamp, rtph265depay->fu_marker);
1001
1002   if (send && outbuf) {
1003     gst_rtp_base_depayload_push (GST_RTP_BASE_DEPAYLOAD (rtph265depay), outbuf);
1004     outbuf = NULL;
1005   }
1006   return outbuf;
1007
1008 not_implemented:
1009   {
1010     GST_ERROR_OBJECT (rtph265depay,
1011         ("Only bytestream format is currently supported."));
1012     gst_buffer_unmap (outbuf, &map);
1013     return NULL;
1014   }
1015 }
1016
1017 static GstBuffer *
1018 gst_rtp_h265_depay_process (GstRTPBaseDepayload * depayload, GstBuffer * buf)
1019 {
1020   GstRtpH265Depay *rtph265depay;
1021   GstBuffer *outbuf = NULL;
1022   guint8 nal_unit_type;
1023   GstRTPBuffer rtp = { NULL };
1024
1025   rtph265depay = GST_RTP_H265_DEPAY (depayload);
1026
1027   /* flush remaining data on discont */
1028   if (GST_BUFFER_IS_DISCONT (buf)) {
1029     gst_adapter_clear (rtph265depay->adapter);
1030     rtph265depay->wait_start = TRUE;
1031     rtph265depay->current_fu_type = 0;
1032   }
1033
1034   {
1035     gint payload_len;
1036     guint8 *payload;
1037     guint header_len;
1038     GstMapInfo map;
1039     guint outsize, nalu_size;
1040     GstClockTime timestamp;
1041     gboolean marker;
1042     gboolean donl_present = FALSE;
1043     guint8 nuh_layer_id, nuh_temporal_id_plus1;
1044     guint8 S, E;
1045     guint16 nal_header;
1046
1047     timestamp = GST_BUFFER_TIMESTAMP (buf);
1048
1049     gst_rtp_buffer_map (buf, GST_MAP_READ, &rtp);
1050
1051     payload_len = gst_rtp_buffer_get_payload_len (&rtp);
1052     payload = gst_rtp_buffer_get_payload (&rtp);
1053     marker = gst_rtp_buffer_get_marker (&rtp);
1054
1055     GST_DEBUG_OBJECT (rtph265depay, "receiving %d bytes", payload_len);
1056
1057     if (payload_len == 0)
1058       goto empty_packet;
1059
1060     /* +---------------+---------------+
1061      * |0|1|2|3|4|5|6|7|0|1|2|3|4|5|6|7|
1062      * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1063      * |F|   Type    |  LayerId  | TID |
1064      * +-------------+-----------------+
1065      *
1066      * F must be 0.
1067      *
1068      */
1069     nal_unit_type = (payload[0] >> 1) & 0x3f;
1070     nuh_layer_id = ((payload[0] & 0x01) << 5) | (payload[1] >> 3);      /* should be zero for now but this could change in future HEVC extensions */
1071     nuh_temporal_id_plus1 = payload[1] & 0x03;
1072
1073     /* At least two byte header with type */
1074     header_len = 2;
1075
1076     GST_DEBUG_OBJECT (rtph265depay,
1077         "NAL header nal_unit_type %d, nuh_temporal_id_plus1 %d", nal_unit_type,
1078         nuh_temporal_id_plus1);
1079
1080     GST_FIXME_OBJECT (rtph265depay, "Assuming DONL field is not present");
1081
1082     /* FIXME - assuming DONL field is not present for now */
1083     /*donl_present = (tx-mode == "MST") || (sprop-max-don-diff > 0); */
1084
1085     /* If FU unit was being processed, but the current nal is of a different
1086      * type.  Assume that the remote payloader is buggy (didn't set the end bit
1087      * when the FU ended) and send out what we gathered thusfar */
1088     if (G_UNLIKELY (rtph265depay->current_fu_type != 0 &&
1089             nal_unit_type != rtph265depay->current_fu_type))
1090       gst_rtp_h265_push_fragmentation_unit (rtph265depay, TRUE);
1091
1092     switch (nal_unit_type) {
1093       case 48:
1094       {
1095         GST_DEBUG_OBJECT (rtph265depay, "Processing aggregation packet");
1096
1097         /* Aggregation packet (section 4.7) */
1098
1099         /*  An example of an AP packet containing two aggregation units
1100            without the DONL and DOND fields
1101
1102            0                   1                   2                   3
1103            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
1104            +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1105            |                          RTP Header                           |
1106            +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1107            |   PayloadHdr (Type=48)        |         NALU 1 Size           |
1108            +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1109            |          NALU 1 HDR           |                               |
1110            +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+         NALU 1 Data           |
1111            |                   . . .                                       |
1112            |                                                               |
1113            +               +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1114            |  . . .        | NALU 2 Size                   | NALU 2 HDR    |
1115            +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1116            | NALU 2 HDR    |                                               |
1117            +-+-+-+-+-+-+-+-+              NALU 2 Data                      |
1118            |                   . . .                                       |
1119            |                               +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1120            |                               :...OPTIONAL RTP padding        |
1121            +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1122          */
1123
1124         /* strip headers */
1125         payload += header_len;
1126         payload_len -= header_len;
1127
1128         rtph265depay->wait_start = FALSE;
1129
1130         if (donl_present)
1131           goto not_implemented_donl_present;
1132
1133         while (payload_len > 2) {
1134
1135           nalu_size = (payload[0] << 8) | payload[1];
1136
1137           /* dont include nalu_size */
1138           if (nalu_size > (payload_len - 2))
1139             nalu_size = payload_len - 2;
1140
1141           outsize = nalu_size + sizeof (sync_bytes);
1142           outbuf = gst_buffer_new_and_alloc (outsize);
1143
1144           gst_buffer_map (outbuf, &map, GST_MAP_WRITE);
1145           if (rtph265depay->byte_stream) {
1146             memcpy (map.data, sync_bytes, sizeof (sync_bytes));
1147           } else {
1148             goto not_implemented;
1149           }
1150
1151           /* strip NALU size */
1152           payload += 2;
1153           payload_len -= 2;
1154
1155           memcpy (map.data + sizeof (sync_bytes), payload, nalu_size);
1156           gst_buffer_unmap (outbuf, &map);
1157
1158           gst_adapter_push (rtph265depay->adapter, outbuf);
1159
1160           payload += nalu_size;
1161           payload_len -= nalu_size;
1162         }
1163
1164         outsize = gst_adapter_available (rtph265depay->adapter);
1165         outbuf = gst_adapter_take_buffer (rtph265depay->adapter, outsize);
1166
1167         outbuf = gst_rtp_h265_depay_handle_nal (rtph265depay, outbuf, timestamp,
1168             marker);
1169         break;
1170       }
1171       case 49:
1172       {
1173         GST_DEBUG_OBJECT (rtph265depay, "Processing Fragmentation Unit");
1174
1175         /* Fragmentation units (FUs)  Section 4.8 */
1176
1177         /*    The structure of a Fragmentation Unit (FU)
1178          *
1179          *    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
1180          +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1181          |    PayloadHdr (Type=49)       |   FU header   | DONL (cond)   |
1182          +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-|
1183          | DONL (cond)   |                                               |
1184          |-+-+-+-+-+-+-+-+                                               |
1185          |                         FU payload                            |
1186          |                                                               |
1187          |                               +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1188          |                               :...OPTIONAL RTP padding        |
1189          +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
1190          *
1191          *
1192          */
1193
1194         /* strip headers */
1195         payload += header_len;
1196         payload_len -= header_len;
1197
1198         /* processing FU header */
1199         S = (payload[0] & 0x80) == 0x80;
1200         E = (payload[0] & 0x40) == 0x40;
1201
1202         GST_DEBUG_OBJECT (rtph265depay,
1203             "FU header with S %d, E %d, nal_unit_type %d", S, E,
1204             payload[0] & 0x3f);
1205
1206         if (rtph265depay->wait_start && !S)
1207           goto waiting_start;
1208
1209         if (donl_present)
1210           goto not_implemented_donl_present;
1211
1212         if (S) {
1213
1214           GST_DEBUG_OBJECT (rtph265depay, "Start of Fragmentation Unit");
1215
1216           /* If a new FU unit started, while still processing an older one.
1217            * Assume that the remote payloader is buggy (doesn't set the end
1218            * bit) and send out what we've gathered thusfar */
1219           if (G_UNLIKELY (rtph265depay->current_fu_type != 0))
1220             gst_rtp_h265_push_fragmentation_unit (rtph265depay, TRUE);
1221
1222           rtph265depay->current_fu_type = nal_unit_type;
1223           rtph265depay->fu_timestamp = timestamp;
1224
1225           rtph265depay->wait_start = FALSE;
1226
1227           /* reconstruct NAL header */
1228           nal_header =
1229               ((payload[0] & 0x3f) << 9) | (nuh_layer_id << 3) |
1230               nuh_temporal_id_plus1;
1231
1232           /* go back one byte so we can copy the payload + two bytes more in the front which
1233            * will be overwritten by the nal_header
1234            */
1235           payload -= 1;
1236           payload_len += 1;
1237
1238           nalu_size = payload_len;
1239           outsize = nalu_size + sizeof (sync_bytes);
1240           outbuf = gst_buffer_new_and_alloc (outsize);
1241
1242           gst_buffer_map (outbuf, &map, GST_MAP_WRITE);
1243           memcpy (map.data + sizeof (sync_bytes), payload, nalu_size);
1244           map.data[sizeof (sync_bytes)] = nal_header >> 8;
1245           map.data[sizeof (sync_bytes) + 1] = nal_header & 0xff;
1246           gst_buffer_unmap (outbuf, &map);
1247
1248           GST_DEBUG_OBJECT (rtph265depay, "queueing %d bytes", outsize);
1249
1250           /* and assemble in the adapter */
1251           gst_adapter_push (rtph265depay->adapter, outbuf);
1252         } else {
1253
1254           GST_DEBUG_OBJECT (rtph265depay,
1255               "Following part of Fragmentation Unit");
1256
1257           /* strip off FU header byte */
1258           payload += 1;
1259           payload_len -= 1;
1260
1261           outsize = payload_len;
1262           outbuf = gst_buffer_new_and_alloc (outsize);
1263           gst_buffer_fill (outbuf, 0, payload, outsize);
1264
1265           GST_DEBUG_OBJECT (rtph265depay, "queueing %d bytes", outsize);
1266
1267           /* and assemble in the adapter */
1268           gst_adapter_push (rtph265depay->adapter, outbuf);
1269         }
1270
1271         outbuf = NULL;
1272         rtph265depay->fu_marker = marker;
1273
1274         /* if NAL unit ends, flush the adapter */
1275         if (E) {
1276           outbuf = gst_rtp_h265_push_fragmentation_unit (rtph265depay, FALSE);
1277           GST_DEBUG_OBJECT (rtph265depay, "End of Fragmentation Unit");
1278         }
1279         break;
1280       }
1281       case 50:
1282         goto not_implemented;   /* PACI packets  Section 4.9 */
1283       default:
1284       {
1285         rtph265depay->wait_start = FALSE;
1286
1287         /* All other cases: Single NAL unit packet   Section 4.6 */
1288         /* the entire payload is the output buffer */
1289
1290         if (donl_present)
1291           goto not_implemented_donl_present;
1292
1293         nalu_size = payload_len;
1294         outsize = nalu_size + sizeof (sync_bytes);
1295         outbuf = gst_buffer_new_and_alloc (outsize);
1296
1297         gst_buffer_map (outbuf, &map, GST_MAP_WRITE);
1298         if (rtph265depay->byte_stream) {
1299           memcpy (map.data, sync_bytes, sizeof (sync_bytes));
1300         } else {
1301           goto not_implemented;
1302         }
1303         memcpy (map.data + sizeof (sync_bytes), payload, nalu_size);
1304         gst_buffer_unmap (outbuf, &map);
1305
1306         outbuf = gst_rtp_h265_depay_handle_nal (rtph265depay, outbuf, timestamp,
1307             marker);
1308         break;
1309       }
1310     }
1311     gst_rtp_buffer_unmap (&rtp);
1312   }
1313
1314   return outbuf;
1315
1316   /* ERRORS */
1317 empty_packet:
1318   {
1319     GST_DEBUG_OBJECT (rtph265depay, "empty packet");
1320     gst_rtp_buffer_unmap (&rtp);
1321     return NULL;
1322   }
1323 waiting_start:
1324   {
1325     GST_DEBUG_OBJECT (rtph265depay, "waiting for start");
1326     gst_rtp_buffer_unmap (&rtp);
1327     return NULL;
1328   }
1329 not_implemented_donl_present:
1330   {
1331     GST_ELEMENT_ERROR (rtph265depay, STREAM, FORMAT,
1332         (NULL), ("DONL field present not supported yet"));
1333     gst_rtp_buffer_unmap (&rtp);
1334     return NULL;
1335   }
1336 not_implemented:
1337   {
1338     GST_ELEMENT_ERROR (rtph265depay, STREAM, FORMAT,
1339         (NULL), ("NAL unit type %d not supported yet", nal_unit_type));
1340     gst_rtp_buffer_unmap (&rtp);
1341     return NULL;
1342   }
1343 }
1344
1345 static gboolean
1346 gst_rtp_h265_depay_handle_event (GstRTPBaseDepayload * depay, GstEvent * event)
1347 {
1348   GstRtpH265Depay *rtph265depay;
1349
1350   rtph265depay = GST_RTP_H265_DEPAY (depay);
1351
1352   switch (GST_EVENT_TYPE (event)) {
1353     case GST_EVENT_FLUSH_STOP:
1354       gst_rtp_h265_depay_reset (rtph265depay);
1355       break;
1356     default:
1357       break;
1358   }
1359
1360   return
1361       GST_RTP_BASE_DEPAYLOAD_CLASS (parent_class)->handle_event (depay, event);
1362 }
1363
1364 static GstStateChangeReturn
1365 gst_rtp_h265_depay_change_state (GstElement * element,
1366     GstStateChange transition)
1367 {
1368   GstRtpH265Depay *rtph265depay;
1369   GstStateChangeReturn ret;
1370
1371   rtph265depay = GST_RTP_H265_DEPAY (element);
1372
1373   switch (transition) {
1374     case GST_STATE_CHANGE_NULL_TO_READY:
1375       break;
1376     case GST_STATE_CHANGE_READY_TO_PAUSED:
1377       gst_rtp_h265_depay_reset (rtph265depay);
1378       break;
1379     default:
1380       break;
1381   }
1382
1383   ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
1384
1385   switch (transition) {
1386     case GST_STATE_CHANGE_READY_TO_NULL:
1387       break;
1388     default:
1389       break;
1390   }
1391   return ret;
1392 }
1393
1394 gboolean
1395 gst_rtp_h265_depay_plugin_init (GstPlugin * plugin)
1396 {
1397   GST_DEBUG_CATEGORY_INIT (rtph265depay_debug, "rtph265depay", 0,
1398       "H265 Video RTP Depayloader");
1399
1400   return gst_element_register (plugin, "rtph265depay",
1401       GST_RANK_SECONDARY, GST_TYPE_RTP_H265_DEPAY);
1402 }