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