Use new gst_element_class_set_static_metadata()
[platform/upstream/gstreamer.git] / gst / rtp / gstrtph263ppay.c
1 /* GStreamer
2  * Copyright (C) <2005> Wim Taymans <wim.taymans@gmail.com>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #ifdef HAVE_CONFIG_H
21 #  include "config.h"
22 #endif
23
24 #include <string.h>
25 #include <stdlib.h>
26 #include <stdio.h>
27
28 #include <gst/rtp/gstrtpbuffer.h>
29
30 #include "gstrtph263ppay.h"
31
32 #define DEFAULT_FRAGMENTATION_MODE   GST_FRAGMENTATION_MODE_NORMAL
33
34 enum
35 {
36   PROP_0,
37   PROP_FRAGMENTATION_MODE
38 };
39
40 #define GST_TYPE_FRAGMENTATION_MODE (gst_fragmentation_mode_get_type())
41 static GType
42 gst_fragmentation_mode_get_type (void)
43 {
44   static GType fragmentation_mode_type = 0;
45   static const GEnumValue fragmentation_mode[] = {
46     {GST_FRAGMENTATION_MODE_NORMAL, "Normal", "normal"},
47     {GST_FRAGMENTATION_MODE_SYNC, "Fragment at sync points", "sync"},
48     {0, NULL, NULL},
49   };
50
51   if (!fragmentation_mode_type) {
52     fragmentation_mode_type =
53         g_enum_register_static ("GstFragmentationMode", fragmentation_mode);
54   }
55   return fragmentation_mode_type;
56 }
57
58
59 GST_DEBUG_CATEGORY_STATIC (rtph263ppay_debug);
60 #define GST_CAT_DEFAULT rtph263ppay_debug
61
62 static GstStaticPadTemplate gst_rtp_h263p_pay_sink_template =
63 GST_STATIC_PAD_TEMPLATE ("sink",
64     GST_PAD_SINK,
65     GST_PAD_ALWAYS,
66     GST_STATIC_CAPS ("video/x-h263, " "variant = (string) \"itu\"")
67     );
68
69 /*
70  * We also return these in getcaps() as required by the SDP caps
71  *
72  * width = (int) [16, 4096]
73  * height = (int) [16, 4096]
74  * "annex-f = (boolean) {true, false},"
75  * "annex-i = (boolean) {true, false},"
76  * "annex-j = (boolean) {true, false},"
77  * "annex-l = (boolean) {true, false},"
78  * "annex-t = (boolean) {true, false},"
79  * "annex-v = (boolean) {true, false}")
80  */
81
82
83 static GstStaticPadTemplate gst_rtp_h263p_pay_src_template =
84     GST_STATIC_PAD_TEMPLATE ("src",
85     GST_PAD_SRC,
86     GST_PAD_ALWAYS,
87     GST_STATIC_CAPS ("application/x-rtp, "
88         "media = (string) \"video\", "
89         "payload = (int) " GST_RTP_PAYLOAD_DYNAMIC_STRING ", "
90         "clock-rate = (int) 90000, " "encoding-name = (string) \"H263-1998\"; "
91         "application/x-rtp, "
92         "media = (string) \"video\", "
93         "payload = (int) " GST_RTP_PAYLOAD_DYNAMIC_STRING ", "
94         "clock-rate = (int) 90000, " "encoding-name = (string) \"H263-2000\"")
95     );
96
97 static void gst_rtp_h263p_pay_finalize (GObject * object);
98
99 static void gst_rtp_h263p_pay_set_property (GObject * object, guint prop_id,
100     const GValue * value, GParamSpec * pspec);
101 static void gst_rtp_h263p_pay_get_property (GObject * object, guint prop_id,
102     GValue * value, GParamSpec * pspec);
103
104 static gboolean gst_rtp_h263p_pay_setcaps (GstRTPBasePayload * payload,
105     GstCaps * caps);
106 static GstCaps *gst_rtp_h263p_pay_sink_getcaps (GstRTPBasePayload * payload,
107     GstPad * pad, GstCaps * filter);
108 static GstFlowReturn gst_rtp_h263p_pay_handle_buffer (GstRTPBasePayload *
109     payload, GstBuffer * buffer);
110
111 #define gst_rtp_h263p_pay_parent_class parent_class
112 G_DEFINE_TYPE (GstRtpH263PPay, gst_rtp_h263p_pay, GST_TYPE_RTP_BASE_PAYLOAD);
113
114 static void
115 gst_rtp_h263p_pay_class_init (GstRtpH263PPayClass * klass)
116 {
117   GObjectClass *gobject_class;
118   GstElementClass *gstelement_class;
119   GstRTPBasePayloadClass *gstrtpbasepayload_class;
120
121   gobject_class = (GObjectClass *) klass;
122   gstelement_class = (GstElementClass *) klass;
123   gstrtpbasepayload_class = (GstRTPBasePayloadClass *) klass;
124
125   gobject_class->finalize = gst_rtp_h263p_pay_finalize;
126   gobject_class->set_property = gst_rtp_h263p_pay_set_property;
127   gobject_class->get_property = gst_rtp_h263p_pay_get_property;
128
129   gstrtpbasepayload_class->set_caps = gst_rtp_h263p_pay_setcaps;
130   gstrtpbasepayload_class->get_caps = gst_rtp_h263p_pay_sink_getcaps;
131   gstrtpbasepayload_class->handle_buffer = gst_rtp_h263p_pay_handle_buffer;
132
133   g_object_class_install_property (G_OBJECT_CLASS (klass),
134       PROP_FRAGMENTATION_MODE, g_param_spec_enum ("fragmentation-mode",
135           "Fragmentation Mode",
136           "Packet Fragmentation Mode", GST_TYPE_FRAGMENTATION_MODE,
137           DEFAULT_FRAGMENTATION_MODE,
138           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
139
140   gst_element_class_add_pad_template (gstelement_class,
141       gst_static_pad_template_get (&gst_rtp_h263p_pay_src_template));
142   gst_element_class_add_pad_template (gstelement_class,
143       gst_static_pad_template_get (&gst_rtp_h263p_pay_sink_template));
144
145   gst_element_class_set_static_metadata (gstelement_class, "RTP H263 payloader",
146       "Codec/Payloader/Network/RTP",
147       "Payload-encodes H263/+/++ video in RTP packets (RFC 4629)",
148       "Wim Taymans <wim.taymans@gmail.com>");
149
150   GST_DEBUG_CATEGORY_INIT (rtph263ppay_debug, "rtph263ppay",
151       0, "rtph263ppay (RFC 4629)");
152 }
153
154 static void
155 gst_rtp_h263p_pay_init (GstRtpH263PPay * rtph263ppay)
156 {
157   rtph263ppay->adapter = gst_adapter_new ();
158
159   rtph263ppay->fragmentation_mode = DEFAULT_FRAGMENTATION_MODE;
160 }
161
162 static void
163 gst_rtp_h263p_pay_finalize (GObject * object)
164 {
165   GstRtpH263PPay *rtph263ppay;
166
167   rtph263ppay = GST_RTP_H263P_PAY (object);
168
169   g_object_unref (rtph263ppay->adapter);
170   rtph263ppay->adapter = NULL;
171
172   G_OBJECT_CLASS (parent_class)->finalize (object);
173 }
174
175 static gboolean
176 gst_rtp_h263p_pay_setcaps (GstRTPBasePayload * payload, GstCaps * caps)
177 {
178   gboolean res;
179   GstCaps *peercaps;
180   gchar *encoding_name = NULL;
181
182   g_return_val_if_fail (gst_caps_is_fixed (caps), FALSE);
183
184   peercaps =
185       gst_pad_peer_query_caps (GST_RTP_BASE_PAYLOAD_SRCPAD (payload), NULL);
186   if (peercaps) {
187     GstCaps *intersect = gst_caps_intersect (peercaps,
188         gst_pad_get_pad_template_caps (GST_RTP_BASE_PAYLOAD_SRCPAD (payload)));
189
190     gst_caps_unref (peercaps);
191     if (!gst_caps_is_empty (intersect)) {
192       GstStructure *s = gst_caps_get_structure (intersect, 0);
193       encoding_name = g_strdup (gst_structure_get_string (s, "encoding-name"));
194     }
195     gst_caps_unref (intersect);
196   }
197
198   if (!encoding_name)
199     encoding_name = g_strdup ("H263-1998");
200
201   gst_rtp_base_payload_set_options (payload, "video", TRUE,
202       (gchar *) encoding_name, 90000);
203   res = gst_rtp_base_payload_set_outcaps (payload, NULL);
204   g_free (encoding_name);
205
206   return res;
207 }
208
209 static GstCaps *
210 caps_append (GstCaps * caps, GstStructure * in_s, guint x, guint y, guint mpi)
211 {
212   GstStructure *s;
213
214   if (!in_s)
215     return caps;
216
217   if (mpi < 1 || mpi > 32)
218     return caps;
219
220   s = gst_structure_copy (in_s);
221
222   gst_structure_set (s,
223       "width", GST_TYPE_INT_RANGE, 1, x,
224       "height", GST_TYPE_INT_RANGE, 1, y,
225       "framerate", GST_TYPE_FRACTION_RANGE, 0, 1, 30000, 1001 * mpi, NULL);
226
227   caps = gst_caps_merge_structure (caps, s);
228
229   return caps;
230 }
231
232
233 static GstCaps *
234 gst_rtp_h263p_pay_sink_getcaps (GstRTPBasePayload * payload, GstPad * pad,
235     GstCaps * filter)
236 {
237   GstRtpH263PPay *rtph263ppay;
238   GstCaps *caps = NULL, *templ;
239   GstCaps *peercaps = NULL;
240   GstCaps *intersect = NULL;
241   guint i;
242
243   rtph263ppay = GST_RTP_H263P_PAY (payload);
244
245   peercaps =
246       gst_pad_peer_query_caps (GST_RTP_BASE_PAYLOAD_SRCPAD (payload), filter);
247   if (!peercaps)
248     return
249         gst_pad_get_pad_template_caps (GST_RTP_BASE_PAYLOAD_SINKPAD (payload));
250
251   templ = gst_pad_get_pad_template_caps (GST_RTP_BASE_PAYLOAD_SRCPAD (payload));
252   intersect = gst_caps_intersect (peercaps, templ);
253   gst_caps_unref (peercaps);
254   gst_caps_unref (templ);
255
256   if (gst_caps_is_empty (intersect))
257     return intersect;
258
259   caps = gst_caps_new_empty ();
260   for (i = 0; i < gst_caps_get_size (intersect); i++) {
261     GstStructure *s = gst_caps_get_structure (intersect, i);
262     const gchar *encoding_name = gst_structure_get_string (s, "encoding-name");
263
264     if (!strcmp (encoding_name, "H263-2000")) {
265       const gchar *profile_str = gst_structure_get_string (s, "profile");
266       const gchar *level_str = gst_structure_get_string (s, "level");
267       int profile = 0;
268       int level = 0;
269
270       if (profile_str && level_str) {
271         gboolean i = FALSE, j = FALSE, l = FALSE, t = FALSE, f = FALSE,
272             v = FALSE;
273         GstStructure *new_s = gst_structure_new ("video/x-h263",
274             "variant", G_TYPE_STRING, "itu",
275             NULL);
276
277         profile = atoi (profile_str);
278         level = atoi (level_str);
279
280         /* These profiles are defined in the H.263 Annex X */
281         switch (profile) {
282           case 0:
283             /* The Baseline Profile (Profile 0) */
284             break;
285           case 1:
286             /* H.320 Coding Efficiency Version 2 Backward-Compatibility Profile
287              * (Profile 1)
288              * Baseline + Annexes I, J, L.4 and T
289              */
290             i = j = l = t = TRUE;
291             break;
292           case 2:
293             /* Version 1 Backward-Compatibility Profile (Profile 2)
294              * Baseline + Annex F
295              */
296             i = j = l = t = f = TRUE;
297             break;
298           case 3:
299             /* Version 2 Interactive and Streaming Wireless Profile
300              * Baseline + Annexes I, J, T
301              */
302             i = j = t = TRUE;
303             break;
304           case 4:
305             /* Version 3 Interactive and Streaming Wireless Profile (Profile 4)
306              * Baseline + Annexes I, J, T, V, W.6.3.8,
307              */
308             /* Missing W.6.3.8 */
309             i = j = t = v = TRUE;
310             break;
311           case 5:
312             /* Conversational High Compression Profile (Profile 5)
313              * Baseline + Annexes F, I, J, L.4, T, D, U
314              */
315             /* Missing D, U */
316             f = i = j = l = t = TRUE;
317             break;
318           case 6:
319             /* Conversational Internet Profile (Profile 6)
320              * Baseline + Annexes F, I, J, L.4, T, D, U and
321              * K with arbitratry slice ordering
322              */
323             /* Missing D, U, K with arbitratry slice ordering */
324             f = i = j = l = t = TRUE;
325             break;
326           case 7:
327             /* Conversational Interlace Profile (Profile 7)
328              * Baseline + Annexes F, I, J, L.4, T, D, U,  W.6.3.11
329              */
330             /* Missing D, U, W.6.3.11 */
331             f = i = j = l = t = TRUE;
332             break;
333           case 8:
334             /* High Latency Profile (Profile 8)
335              * Baseline + Annexes F, I, J, L.4, T, D, U, P.5, O.1.1 and
336              * K with arbitratry slice ordering
337              */
338             /* Missing D, U, P.5, O.1.1 */
339             f = i = j = l = t = TRUE;
340             break;
341         }
342
343
344         if (f || i || j || t || l || v) {
345           GValue list = { 0 };
346           GValue vstr = { 0 };
347
348           g_value_init (&list, GST_TYPE_LIST);
349           g_value_init (&vstr, G_TYPE_STRING);
350
351           g_value_set_static_string (&vstr, "h263");
352           gst_value_list_append_value (&list, &vstr);
353           g_value_set_static_string (&vstr, "h263p");
354           gst_value_list_append_value (&list, &vstr);
355
356           if (l || v) {
357             g_value_set_static_string (&vstr, "h263pp");
358             gst_value_list_append_value (&list, &vstr);
359           }
360           g_value_unset (&vstr);
361
362           gst_structure_set_value (new_s, "h263version", &list);
363           g_value_unset (&list);
364         } else {
365           gst_structure_set (new_s, "h263version", G_TYPE_STRING, "h263", NULL);
366         }
367
368
369         if (!f)
370           gst_structure_set (new_s, "annex-f", G_TYPE_BOOLEAN, FALSE, NULL);
371         if (!i)
372           gst_structure_set (new_s, "annex-i", G_TYPE_BOOLEAN, FALSE, NULL);
373         if (!j)
374           gst_structure_set (new_s, "annex-j", G_TYPE_BOOLEAN, FALSE, NULL);
375         if (!t)
376           gst_structure_set (new_s, "annex-t", G_TYPE_BOOLEAN, FALSE, NULL);
377         if (!l)
378           gst_structure_set (new_s, "annex-l", G_TYPE_BOOLEAN, FALSE, NULL);
379         if (!v)
380           gst_structure_set (new_s, "annex-v", G_TYPE_BOOLEAN, FALSE, NULL);
381
382
383         if (level <= 10 || level == 45) {
384           gst_structure_set (new_s,
385               "width", GST_TYPE_INT_RANGE, 1, 176,
386               "height", GST_TYPE_INT_RANGE, 1, 144,
387               "framerate", GST_TYPE_FRACTION_RANGE, 0, 1, 30000, 2002, NULL);
388           caps = gst_caps_merge_structure (caps, new_s);
389         } else if (level <= 20) {
390           GstStructure *s_copy = gst_structure_copy (new_s);
391
392           gst_structure_set (new_s,
393               "width", GST_TYPE_INT_RANGE, 1, 352,
394               "height", GST_TYPE_INT_RANGE, 1, 288,
395               "framerate", GST_TYPE_FRACTION_RANGE, 0, 1, 30000, 2002, NULL);
396           caps = gst_caps_merge_structure (caps, new_s);
397
398           gst_structure_set (s_copy,
399               "width", GST_TYPE_INT_RANGE, 1, 176,
400               "height", GST_TYPE_INT_RANGE, 1, 144,
401               "framerate", GST_TYPE_FRACTION_RANGE, 0, 1, 30000, 1001, NULL);
402           caps = gst_caps_merge_structure (caps, s_copy);
403         } else if (level <= 40) {
404
405           gst_structure_set (new_s,
406               "width", GST_TYPE_INT_RANGE, 1, 352,
407               "height", GST_TYPE_INT_RANGE, 1, 288,
408               "framerate", GST_TYPE_FRACTION_RANGE, 0, 1, 30000, 1001, NULL);
409           caps = gst_caps_merge_structure (caps, new_s);
410         } else if (level <= 50) {
411           GstStructure *s_copy = gst_structure_copy (new_s);
412
413           gst_structure_set (new_s,
414               "width", GST_TYPE_INT_RANGE, 1, 352,
415               "height", GST_TYPE_INT_RANGE, 1, 288,
416               "framerate", GST_TYPE_FRACTION_RANGE, 0, 1, 50, 1, NULL);
417           caps = gst_caps_merge_structure (caps, new_s);
418
419           gst_structure_set (s_copy,
420               "width", GST_TYPE_INT_RANGE, 1, 352,
421               "height", GST_TYPE_INT_RANGE, 1, 240,
422               "framerate", GST_TYPE_FRACTION_RANGE, 0, 1, 60000, 1001, NULL);
423           caps = gst_caps_merge_structure (caps, s_copy);
424         } else if (level <= 60) {
425           GstStructure *s_copy = gst_structure_copy (new_s);
426
427           gst_structure_set (new_s,
428               "width", GST_TYPE_INT_RANGE, 1, 720,
429               "height", GST_TYPE_INT_RANGE, 1, 288,
430               "framerate", GST_TYPE_FRACTION_RANGE, 0, 1, 50, 1, NULL);
431           caps = gst_caps_merge_structure (caps, new_s);
432
433           gst_structure_set (s_copy,
434               "width", GST_TYPE_INT_RANGE, 1, 720,
435               "height", GST_TYPE_INT_RANGE, 1, 240,
436               "framerate", GST_TYPE_FRACTION_RANGE, 0, 1, 60000, 1001, NULL);
437           caps = gst_caps_merge_structure (caps, s_copy);
438         } else if (level <= 70) {
439           GstStructure *s_copy = gst_structure_copy (new_s);
440
441           gst_structure_set (new_s,
442               "width", GST_TYPE_INT_RANGE, 1, 720,
443               "height", GST_TYPE_INT_RANGE, 1, 576,
444               "framerate", GST_TYPE_FRACTION_RANGE, 0, 1, 50, 1, NULL);
445           caps = gst_caps_merge_structure (caps, new_s);
446
447           gst_structure_set (s_copy,
448               "width", GST_TYPE_INT_RANGE, 1, 720,
449               "height", GST_TYPE_INT_RANGE, 1, 480,
450               "framerate", GST_TYPE_FRACTION_RANGE, 0, 1, 60000, 1001, NULL);
451           caps = gst_caps_merge_structure (caps, s_copy);
452         } else {
453           caps = gst_caps_merge_structure (caps, new_s);
454         }
455
456       } else {
457         GstStructure *new_s = gst_structure_new ("video/x-h263",
458             "variant", G_TYPE_STRING, "itu",
459             "h263version", G_TYPE_STRING, "h263",
460             NULL);
461
462         GST_DEBUG_OBJECT (rtph263ppay, "No profile or level specified"
463             " for H263-2000, defaulting to baseline H263");
464
465         caps = gst_caps_merge_structure (caps, new_s);
466       }
467     } else {
468       gboolean f = FALSE, i = FALSE, j = FALSE, t = FALSE;
469       /* FIXME: ffmpeg support the Appendix K too, how do we express it ?
470        *   guint k;
471        */
472       const gchar *str;
473       GstStructure *new_s = gst_structure_new ("video/x-h263",
474           "variant", G_TYPE_STRING, "itu",
475           NULL);
476       gboolean added = FALSE;
477
478       str = gst_structure_get_string (s, "f");
479       if (str && !strcmp (str, "1"))
480         f = TRUE;
481
482       str = gst_structure_get_string (s, "i");
483       if (str && !strcmp (str, "1"))
484         i = TRUE;
485
486       str = gst_structure_get_string (s, "j");
487       if (str && !strcmp (str, "1"))
488         j = TRUE;
489
490       str = gst_structure_get_string (s, "t");
491       if (str && !strcmp (str, "1"))
492         t = TRUE;
493
494       if (f || i || j || t) {
495         GValue list = { 0 };
496         GValue vstr = { 0 };
497
498         g_value_init (&list, GST_TYPE_LIST);
499         g_value_init (&vstr, G_TYPE_STRING);
500
501         g_value_set_static_string (&vstr, "h263");
502         gst_value_list_append_value (&list, &vstr);
503         g_value_set_static_string (&vstr, "h263p");
504         gst_value_list_append_value (&list, &vstr);
505         g_value_unset (&vstr);
506
507         gst_structure_set_value (new_s, "h263version", &list);
508         g_value_unset (&list);
509       } else {
510         gst_structure_set (new_s, "h263version", G_TYPE_STRING, "h263", NULL);
511       }
512
513       if (!f)
514         gst_structure_set (new_s, "annex-f", G_TYPE_BOOLEAN, FALSE, NULL);
515       if (!i)
516         gst_structure_set (new_s, "annex-i", G_TYPE_BOOLEAN, FALSE, NULL);
517       if (!j)
518         gst_structure_set (new_s, "annex-j", G_TYPE_BOOLEAN, FALSE, NULL);
519       if (!t)
520         gst_structure_set (new_s, "annex-t", G_TYPE_BOOLEAN, FALSE, NULL);
521
522
523       str = gst_structure_get_string (s, "custom");
524       if (str) {
525         unsigned int xmax, ymax, mpi;
526         if (sscanf (str, "%u,%u,%u", &xmax, &ymax, &mpi) == 3) {
527           if (xmax % 4 && ymax % 4 && mpi >= 1 && mpi <= 32) {
528             caps = caps_append (caps, new_s, xmax, ymax, mpi);
529             added = TRUE;
530           } else {
531             GST_WARNING_OBJECT (rtph263ppay, "Invalid custom framesize/MPI"
532                 " %u x %u at %u, ignoring", xmax, ymax, mpi);
533           }
534         } else {
535           GST_WARNING_OBJECT (rtph263ppay, "Invalid custom framesize/MPI: %s,"
536               " ignoring", str);
537         }
538       }
539
540       str = gst_structure_get_string (s, "16cif");
541       if (str) {
542         int mpi = atoi (str);
543         caps = caps_append (caps, new_s, 1408, 1152, mpi);
544         added = TRUE;
545       }
546
547       str = gst_structure_get_string (s, "4cif");
548       if (str) {
549         int mpi = atoi (str);
550         caps = caps_append (caps, new_s, 704, 576, mpi);
551         added = TRUE;
552       }
553
554       str = gst_structure_get_string (s, "cif");
555       if (str) {
556         int mpi = atoi (str);
557         caps = caps_append (caps, new_s, 352, 288, mpi);
558         added = TRUE;
559       }
560
561       str = gst_structure_get_string (s, "qcif");
562       if (str) {
563         int mpi = atoi (str);
564         caps = caps_append (caps, new_s, 176, 144, mpi);
565         added = TRUE;
566       }
567
568       str = gst_structure_get_string (s, "sqcif");
569       if (str) {
570         int mpi = atoi (str);
571         caps = caps_append (caps, new_s, 128, 96, mpi);
572         added = TRUE;
573       }
574
575       if (added)
576         gst_structure_free (new_s);
577       else
578         caps = gst_caps_merge_structure (caps, new_s);
579     }
580   }
581
582   gst_caps_unref (intersect);
583
584   return caps;
585 }
586
587
588 static void
589 gst_rtp_h263p_pay_set_property (GObject * object, guint prop_id,
590     const GValue * value, GParamSpec * pspec)
591 {
592   GstRtpH263PPay *rtph263ppay;
593
594   rtph263ppay = GST_RTP_H263P_PAY (object);
595
596   switch (prop_id) {
597     case PROP_FRAGMENTATION_MODE:
598       rtph263ppay->fragmentation_mode = g_value_get_enum (value);
599       break;
600     default:
601       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
602       break;
603   }
604 }
605
606 static void
607 gst_rtp_h263p_pay_get_property (GObject * object, guint prop_id,
608     GValue * value, GParamSpec * pspec)
609 {
610   GstRtpH263PPay *rtph263ppay;
611
612   rtph263ppay = GST_RTP_H263P_PAY (object);
613
614   switch (prop_id) {
615     case PROP_FRAGMENTATION_MODE:
616       g_value_set_enum (value, rtph263ppay->fragmentation_mode);
617       break;
618     default:
619       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
620       break;
621   }
622 }
623
624 static GstFlowReturn
625 gst_rtp_h263p_pay_flush (GstRtpH263PPay * rtph263ppay)
626 {
627   guint avail;
628   GstBuffer *outbuf;
629   GstFlowReturn ret;
630   gboolean fragmented;
631
632   avail = gst_adapter_available (rtph263ppay->adapter);
633   if (avail == 0)
634     return GST_FLOW_OK;
635
636   fragmented = FALSE;
637   /* This algorithm assumes the H263/+/++ encoder sends complete frames in each
638    * buffer */
639   /* With Fragmentation Mode at GST_FRAGMENTATION_MODE_NORMAL:
640    *  This algorithm implements the Follow-on packets method for packetization.
641    *  This assumes low packet loss network. 
642    * With Fragmentation Mode at GST_FRAGMENTATION_MODE_SYNC:
643    *  This algorithm separates large frames at synchronisation points (Segments)
644    *  (See RFC 4629 section 6). It would be interesting to have a property such as network
645    *  quality to select between both packetization methods */
646   /* TODO Add VRC supprt (See RFC 4629 section 5.2) */
647
648   while (avail > 0) {
649     guint towrite;
650     guint8 *payload;
651     guint payload_len;
652     gint header_len;
653     guint next_gop = 0;
654     gboolean found_gob = FALSE;
655     GstRTPBuffer rtp = { NULL };
656
657     if (rtph263ppay->fragmentation_mode == GST_FRAGMENTATION_MODE_SYNC) {
658       /* start after 1st gop possible */
659       guint parsed_len = 3;
660       const guint8 *parse_data = NULL;
661
662       parse_data = gst_adapter_map (rtph263ppay->adapter, avail);
663
664       /* Check if we have a gob or eos , eossbs */
665       /* FIXME EOS and EOSSBS packets should never contain any gobs and vice-versa */
666       if (avail >= 3 && *parse_data == 0 && *(parse_data + 1) == 0
667           && *(parse_data + 2) >= 0x80) {
668         GST_DEBUG_OBJECT (rtph263ppay, " Found GOB header");
669         found_gob = TRUE;
670       }
671       /* Find next and cut the packet accordingly */
672       /* TODO we should get as many gobs as possible until MTU is reached, this
673        * code seems to just get one GOB per packet */
674       while (parsed_len + 2 < avail) {
675         if (parse_data[parsed_len] == 0 && parse_data[parsed_len + 1] == 0
676             && parse_data[parsed_len + 2] >= 0x80) {
677           next_gop = parsed_len;
678           GST_DEBUG_OBJECT (rtph263ppay, " Next GOB Detected at :  %d",
679               next_gop);
680           break;
681         }
682         parsed_len++;
683       }
684       gst_adapter_unmap (rtph263ppay->adapter);
685     }
686
687     /* for picture start frames (non-fragmented), we need to remove the first
688      * two 0x00 bytes and set P=1 */
689     header_len = (fragmented && !found_gob) ? 2 : 0;
690
691     towrite = MIN (avail, gst_rtp_buffer_calc_payload_len
692         (GST_RTP_BASE_PAYLOAD_MTU (rtph263ppay) - header_len, 0, 0));
693
694     if (next_gop > 0)
695       towrite = MIN (next_gop, towrite);
696
697     payload_len = header_len + towrite;
698
699     outbuf = gst_rtp_buffer_new_allocate (payload_len, 0, 0);
700
701     gst_rtp_buffer_map (outbuf, GST_MAP_WRITE, &rtp);
702     /* last fragment gets the marker bit set */
703     gst_rtp_buffer_set_marker (&rtp, avail > towrite ? 0 : 1);
704
705     payload = gst_rtp_buffer_get_payload (&rtp);
706
707     gst_adapter_copy (rtph263ppay->adapter, &payload[header_len], 0, towrite);
708
709     /*  0                   1
710      *  0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5
711      * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
712      * |   RR    |P|V|   PLEN    |PEBIT|
713      * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
714      */
715     /* if fragmented or gop header , write p bit =1 */
716     payload[0] = (fragmented && !found_gob) ? 0x00 : 0x04;
717     payload[1] = 0;
718
719     GST_BUFFER_TIMESTAMP (outbuf) = rtph263ppay->first_timestamp;
720     GST_BUFFER_DURATION (outbuf) = rtph263ppay->first_duration;
721     gst_rtp_buffer_unmap (&rtp);
722
723     gst_adapter_flush (rtph263ppay->adapter, towrite);
724
725     ret =
726         gst_rtp_base_payload_push (GST_RTP_BASE_PAYLOAD (rtph263ppay), outbuf);
727
728     avail -= towrite;
729     fragmented = TRUE;
730   }
731
732   return ret;
733 }
734
735 static GstFlowReturn
736 gst_rtp_h263p_pay_handle_buffer (GstRTPBasePayload * payload,
737     GstBuffer * buffer)
738 {
739   GstRtpH263PPay *rtph263ppay;
740   GstFlowReturn ret;
741
742   rtph263ppay = GST_RTP_H263P_PAY (payload);
743
744   rtph263ppay->first_timestamp = GST_BUFFER_TIMESTAMP (buffer);
745   rtph263ppay->first_duration = GST_BUFFER_DURATION (buffer);
746
747   /* we always encode and flush a full picture */
748   gst_adapter_push (rtph263ppay->adapter, buffer);
749   ret = gst_rtp_h263p_pay_flush (rtph263ppay);
750
751   return ret;
752 }
753
754 gboolean
755 gst_rtp_h263p_pay_plugin_init (GstPlugin * plugin)
756 {
757   return gst_element_register (plugin, "rtph263ppay",
758       GST_RANK_SECONDARY, GST_TYPE_RTP_H263P_PAY);
759 }