rtp: Copy metadata in the (de)payloader, but only the relevant ones
[platform/upstream/gst-plugins-good.git] / gst / rtp / gstrtph263pay.c
1 /* GStreamer
2  * Copyright (C) <2005> Wim Taymans <wim.taymans@gmail.com>
3  * Copyright (C) <2008> Dejan Sakelsak <dejan.sakelsak@marand.si>
4  * Copyright (C) <2009> Janin Kolenc  <janin.kolenc@marand.si>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
19  * Boston, MA 02110-1301, USA.
20  *
21  */
22
23 #ifdef HAVE_CONFIG_H
24 #  include "config.h"
25 #endif
26
27 #include <string.h>
28 #include <math.h>
29 #include <gst/rtp/gstrtpbuffer.h>
30 #include <gst/video/video.h>
31
32 #include "gstrtph263pay.h"
33 #include "gstrtputils.h"
34
35 typedef enum
36 {
37   GST_H263_FRAME_TYPE_I = 0,
38   GST_H263_FRAME_TYPE_P = 1,
39   GST_H263_FRAME_TYPE_PB = 2
40 } GstRtpH263PayFrameType;
41
42 typedef enum
43 {
44   GST_RTP_H263_PAYLOAD_PICTURE_FORMAT_RES1 = 0,
45   GST_RTP_H263_PAYLOAD_PICTURE_FORMAT_SQCIF = 1,
46   GST_RTP_H263_PAYLOAD_PICTURE_FORMAT_QCIF = 2,
47   GST_RTP_H263_PAYLOAD_PICTURE_FORMAT_CIF = 3,
48   GST_RTP_H263_PAYLOAD_PICTURE_FORMAT_4CIF = 4,
49   GST_RTP_H263_PAYLOAD_PICTURE_FORMAT_16CIF = 5,
50   GST_RTP_H263_PAYLOAD_PICTURE_FORMAT_RES2 = 6,
51   GST_H263_PAYLOAD_PICTURE_FORMAT_PLUS = 7
52 } GstRtpH263PayPictureFormat;
53
54 static const guint format_props[8][2] = { {254, 254},
55 {6, 8},
56 {9, 11},
57 {18, 22},
58 {18, 88},
59 {18, 352},
60 {254, 254},
61 {255, 255}
62 };
63
64 /*
65  * I-frame MCBPC table: code, mask, nbits, cb, cr, mb type -> 10 = undefined (because we have guint)
66  */
67 #define MCBPC_I_LEN 9
68 #define MCBPC_I_WID 6
69 static const guint32 mcbpc_I[9][6] = {
70   {0x8000, 0x8000, 1, 0, 0, 3},
71   {0x2000, 0xe000, 3, 0, 1, 3},
72   {0x4000, 0xe000, 3, 1, 0, 3},
73   {0x6000, 0xe000, 3, 1, 1, 3},
74   {0x1000, 0xf000, 4, 0, 0, 4},
75   {0x0400, 0xfc00, 6, 0, 1, 4},
76   {0x0800, 0xfc00, 6, 1, 0, 4},
77   {0x0c00, 0xfc00, 6, 1, 1, 4},
78   {0x0080, 0xff80, 9, 10, 10, 10}
79 };
80
81 /*
82  * P-frame MCBPC table: code, mask, nbits, cb, cr, mb type -> 10 = undefined (because we have guint)
83  */
84 #define MCBPC_P_LEN 21
85 #define MCBPC_P_WID 6
86 static const guint16 mcbpc_P[21][6] = {
87   {0x8000, 0x8000, 1, 0, 0, 0},
88   {0x3000, 0xf000, 4, 0, 1, 0},
89   {0x2000, 0xf000, 4, 1, 0, 0},
90   {0x1400, 0xfc00, 6, 1, 1, 0},
91   {0x6000, 0xe000, 3, 0, 0, 1},
92   {0x0e00, 0xfe00, 7, 0, 1, 1},
93   {0x0c00, 0xfe00, 7, 1, 0, 1},
94   {0x0280, 0xff80, 9, 1, 1, 1},
95   {0x4000, 0xe000, 3, 0, 0, 2},
96   {0x0a00, 0xfe00, 7, 0, 1, 2},
97   {0x0800, 0xfe00, 7, 1, 0, 2},
98   {0x0500, 0xff00, 8, 1, 1, 2},
99   {0x1800, 0xf800, 5, 0, 0, 3},
100   {0x0400, 0xff00, 8, 0, 1, 3},
101   {0x0300, 0xff00, 8, 1, 0, 3},
102   {0x0600, 0xfe00, 7, 1, 1, 3},
103   {0x1000, 0xfc00, 6, 0, 0, 4},
104   {0x0200, 0xff80, 9, 0, 1, 4},
105   {0x0180, 0xff80, 9, 1, 0, 4},
106   {0x0100, 0xff80, 9, 1, 1, 4},
107   {0x0080, 0xff80, 9, 10, 10, 10}
108 };
109
110 /*
111  * I-frame CBPY (code, mask, nbits, Y0, Y1, Y2, Y3)
112  */
113 #define CBPY_LEN 16
114 #define CBPY_WID 7
115 static const guint8 cbpy_I[16][7] = {
116   {0x30, 0xf0, 4, 0, 0, 0, 0},
117   {0x28, 0xf8, 5, 0, 0, 0, 1},
118   {0x20, 0xf8, 5, 0, 0, 1, 0},
119   {0x90, 0xf0, 4, 0, 0, 1, 1},
120   {0x18, 0xf8, 5, 0, 1, 0, 0},
121   {0x70, 0xf0, 4, 0, 1, 0, 1},
122   {0x08, 0xfc, 6, 0, 1, 1, 0},
123   {0xb0, 0xf0, 4, 0, 1, 1, 1},
124   {0x10, 0xf8, 5, 1, 0, 0, 0},
125   {0x0c, 0xfc, 6, 1, 0, 0, 1},
126   {0x50, 0xf0, 4, 1, 0, 1, 0},
127   {0xa0, 0xf0, 4, 1, 0, 1, 1},
128   {0x40, 0xf0, 4, 1, 1, 0, 0},
129   {0x80, 0xf0, 4, 1, 1, 0, 1},
130   {0x60, 0xf0, 4, 1, 1, 1, 0},
131   {0xc0, 0xc0, 2, 1, 1, 1, 1}
132 };
133
134 /*
135  * P-frame CBPY (code, mask, nbits, Y0, Y1, Y2, Y3)
136  */
137 static const guint8 cbpy_P[16][7] = {
138   {0x30, 0xf0, 4, 1, 1, 1, 1},
139   {0x28, 0xf8, 5, 1, 1, 1, 0},
140   {0x20, 0xf8, 5, 1, 1, 0, 1},
141   {0x90, 0xf0, 4, 1, 1, 0, 0},
142   {0x18, 0xf8, 5, 1, 0, 1, 1},
143   {0x70, 0xf0, 4, 1, 0, 1, 0},
144   {0x08, 0xfc, 6, 1, 0, 0, 1},
145   {0xb0, 0xf0, 4, 1, 0, 0, 0},
146   {0x10, 0xf8, 5, 0, 1, 1, 1},
147   {0x0c, 0xfc, 6, 0, 1, 1, 0},
148   {0x50, 0xf0, 4, 0, 1, 0, 1},
149   {0xa0, 0xf0, 4, 0, 1, 0, 0},
150   {0x40, 0xf0, 4, 0, 0, 1, 1},
151   {0x80, 0xf0, 4, 0, 0, 1, 0},
152   {0x60, 0xf0, 4, 0, 0, 0, 1},
153   {0xc0, 0xc0, 2, 0, 0, 0, 0}
154 };
155
156 /*
157  * Block TCOEF table (code, mask, nbits, LAST, RUN, LEVEL)
158  */
159 #define TCOEF_LEN 103
160 #define TCOEF_WID 6
161 static const guint16 tcoef[103][6] = {
162   {0x8000, 0xc000, 3, 0, 0, 1},
163   {0xf000, 0xf000, 5, 0, 0, 2},
164   {0x5400, 0xfc00, 7, 0, 0, 3},
165   {0x2e00, 0xfe00, 8, 0, 0, 4},
166   {0x1f00, 0xff00, 9, 0, 0, 5},
167   {0x1280, 0xff80, 10, 0, 0, 6},
168   {0x1200, 0xff80, 10, 0, 0, 7},
169   {0x0840, 0xffc0, 11, 0, 0, 8},
170   {0x0800, 0xffc0, 11, 0, 0, 9},
171   {0x00e0, 0xffe0, 12, 0, 0, 10},       //10
172   {0x00c0, 0xffe0, 12, 0, 0, 11},
173   {0x0400, 0xffe0, 12, 0, 0, 12},
174   {0xc000, 0xe000, 4, 0, 1, 1},
175   {0x5000, 0xfc00, 7, 0, 1, 2},
176   {0x1e00, 0xff00, 9, 0, 1, 3},
177   {0x03c0, 0xffc0, 11, 0, 1, 4},
178   {0x0420, 0xffe0, 12, 0, 1, 5},
179   {0x0500, 0xfff0, 13, 0, 1, 6},
180   {0xe000, 0xf000, 5, 0, 2, 1},
181   {0x1d00, 0xff00, 9, 0, 2, 2}, //20
182   {0x0380, 0xffc0, 11, 0, 2, 3},
183   {0x0510, 0xfff0, 13, 0, 2, 4},
184   {0x6800, 0xf800, 6, 0, 3, 1},
185   {0x1180, 0xff80, 10, 0, 3, 2},
186   {0x0340, 0xffc0, 11, 0, 3, 3},
187   {0x6000, 0xf800, 6, 0, 4, 1},
188   {0x1100, 0xff80, 10, 0, 4, 2},
189   {0x0520, 0xfff0, 13, 0, 4, 3},
190   {0x5800, 0xf800, 6, 0, 5, 1},
191   {0x0300, 0xffc0, 11, 0, 5, 2},        // 30
192   {0x0530, 0xfff0, 13, 0, 5, 3},
193   {0x4c00, 0xfc00, 7, 0, 6, 1},
194   {0x02c0, 0xffc0, 11, 0, 6, 2},
195   {0x0540, 0xfff0, 13, 0, 6, 3},
196   {0x4800, 0xfc00, 7, 0, 7, 1},
197   {0x0280, 0xffc0, 11, 0, 7, 2},
198   {0x4400, 0xfc00, 7, 0, 8, 1},
199   {0x0240, 0xffc0, 11, 0, 8, 2},
200   {0x4000, 0xfc00, 7, 0, 9, 1},
201   {0x0200, 0xffc0, 11, 0, 9, 2},        // 40
202   {0x2c00, 0xfe00, 8, 0, 10, 1},
203   {0x0550, 0xfff0, 13, 0, 10, 2},
204   {0x2a00, 0xfe00, 8, 0, 11, 1},
205   {0x2800, 0xfe00, 8, 0, 12, 1},
206   {0x1c00, 0xff00, 9, 0, 13, 1},
207   {0x1b00, 0xff00, 9, 0, 14, 1},
208   {0x1080, 0xff80, 10, 0, 15, 1},
209   {0x1000, 0xff80, 10, 0, 16, 1},
210   {0x0f80, 0xff80, 10, 0, 17, 1},
211   {0x0f00, 0xff80, 10, 0, 18, 1},       // 50
212   {0x0e80, 0xff80, 10, 0, 19, 1},
213   {0x0e00, 0xff80, 10, 0, 20, 1},
214   {0x0d80, 0xff80, 10, 0, 21, 1},
215   {0x0d00, 0xff80, 10, 0, 22, 1},
216   {0x0440, 0xffe0, 12, 0, 23, 1},
217   {0x0460, 0xffe0, 12, 0, 24, 1},
218   {0x0560, 0xfff0, 13, 0, 25, 1},
219   {0x0570, 0xfff0, 13, 0, 26, 1},
220   {0x7000, 0xf000, 5, 1, 0, 1},
221   {0x0c80, 0xff80, 10, 1, 0, 2},        // 60
222   {0x00a0, 0xffe0, 12, 1, 0, 3},
223   {0x3c00, 0xfc00, 7, 1, 1, 1},
224   {0x0080, 0xffe0, 12, 1, 1, 2},
225   {0x3800, 0xfc00, 7, 1, 2, 1},
226   {0x3400, 0xfc00, 7, 1, 3, 1},
227   {0x3000, 0xfc00, 7, 1, 4, 1},
228   {0x2600, 0xfe00, 8, 1, 5, 1},
229   {0x2400, 0xfe00, 8, 1, 6, 1},
230   {0x2200, 0xfe00, 8, 1, 7, 1},
231   {0x2000, 0xfe00, 8, 1, 8, 1}, // 70
232   {0x1a00, 0xff00, 9, 1, 9, 1},
233   {0x1900, 0xff00, 9, 1, 10, 1},
234   {0x1800, 0xff00, 9, 1, 11, 1},
235   {0x1700, 0xff00, 9, 1, 12, 1},
236   {0x1600, 0xff00, 9, 1, 13, 1},
237   {0x1500, 0xff00, 9, 1, 14, 1},
238   {0x1400, 0xff00, 9, 1, 15, 1},
239   {0x1300, 0xff00, 9, 1, 16, 1},
240   {0x0c00, 0xff80, 10, 1, 17, 1},
241   {0x0b80, 0xff80, 10, 1, 18, 1},       // 80
242   {0x0b00, 0xff80, 10, 1, 19, 1},
243   {0x0a80, 0xff80, 10, 1, 20, 1},
244   {0x0a00, 0xff80, 10, 1, 21, 1},
245   {0x0980, 0xff80, 10, 1, 22, 1},
246   {0x0900, 0xff80, 10, 1, 23, 1},
247   {0x0880, 0xff80, 10, 1, 24, 1},
248   {0x01c0, 0xffc0, 11, 1, 25, 1},
249   {0x0180, 0xffc0, 11, 1, 26, 1},
250   {0x0140, 0xffc0, 11, 1, 27, 1},
251   {0x0100, 0xffc0, 11, 1, 28, 1},       // 90
252   {0x0480, 0xffe0, 12, 1, 29, 1},
253   {0x04a0, 0xffe0, 12, 1, 30, 1},
254   {0x04c0, 0xffe0, 12, 1, 31, 1},
255   {0x04e0, 0xffe0, 12, 1, 32, 1},
256   {0x0580, 0xfff0, 13, 1, 33, 1},
257   {0x0590, 0xfff0, 13, 1, 34, 1},
258   {0x05a0, 0xfff0, 13, 1, 35, 1},
259   {0x05b0, 0xfff0, 13, 1, 36, 1},
260   {0x05c0, 0xfff0, 13, 1, 37, 1},
261   {0x05d0, 0xfff0, 13, 1, 38, 1},       // 100
262   {0x05e0, 0xfff0, 13, 1, 39, 1},
263   {0x05f0, 0xfff0, 13, 1, 40, 1},
264   {0x0600, 0xfe00, 7, 0, 0xffff, 0xffff}
265 };
266
267 /*
268  * Motion vector code table (Code, mask, nbits, vector (halfpixel, two's complement), diff (halfpixel, two's complement))
269  */
270 #define MVD_LEN 64
271 #define MVD_WID 5
272 static const guint16 mvd[64][5] = {
273   {0x0028, 0xfff8, 13, 0x0060, 0x0020},
274   {0x0038, 0xfff8, 13, 0x0061, 0x0021},
275   {0x0050, 0xfff0, 12, 0x0062, 0x0022},
276   {0x0070, 0xfff0, 12, 0x0063, 0x0023},
277   {0x0090, 0xfff0, 12, 0x0064, 0x0024},
278   {0x00b0, 0xfff0, 12, 0x0065, 0x0025},
279   {0x00d0, 0xfff0, 12, 0x0066, 0x0026},
280   {0x00f0, 0xfff0, 12, 0x0067, 0x0027},
281   {0x0120, 0xffe0, 11, 0x0068, 0x0028},
282   {0x0160, 0xffe0, 11, 0x0069, 0x0029},
283   {0x01a0, 0xffe0, 11, 0x006a, 0x002a},
284   {0x01e0, 0xffe0, 11, 0x006b, 0x002b},
285   {0x0220, 0xffe0, 11, 0x006c, 0x002c},
286   {0x0260, 0xffe0, 11, 0x006d, 0x002d},
287   {0x02a0, 0xffe0, 11, 0x006e, 0x002e},
288   {0x02e0, 0xffe0, 11, 0x006f, 0x002f},
289   {0x0320, 0xffe0, 11, 0x0070, 0x0030},
290   {0x0360, 0xffe0, 11, 0x0071, 0x0031},
291   {0x03a0, 0xffe0, 11, 0x0072, 0x0032},
292   {0x03e0, 0xffe0, 11, 0x0073, 0x0033},
293   {0x0420, 0xffe0, 11, 0x0074, 0x0034},
294   {0x0460, 0xffe0, 11, 0x0075, 0x0035},
295   {0x04c0, 0xffc0, 10, 0x0076, 0x0036},
296   {0x0540, 0xffc0, 10, 0x0077, 0x0037},
297   {0x05c0, 0xffc0, 10, 0x0078, 0x0038},
298   {0x0700, 0xff00, 8, 0x0079, 0x0039},
299   {0x0900, 0xff00, 8, 0x007a, 0x003a},
300   {0x0b00, 0xff00, 8, 0x007b, 0x003b},
301   {0x0e00, 0xfe00, 7, 0x007c, 0x003c},
302   {0x1800, 0xf800, 5, 0x007d, 0x003d},
303   {0x3000, 0xf000, 4, 0x007e, 0x003e},
304   {0x6000, 0xe000, 3, 0x007f, 0x003f},
305   {0x8000, 0x8000, 1, 0x0000, 0x0000},
306   {0x4000, 0xe000, 3, 0x0001, 0x0041},
307   {0x2000, 0xf000, 4, 0x0002, 0x0042},
308   {0x1000, 0xf800, 5, 0x0003, 0x0043},
309   {0x0c00, 0xfe00, 7, 0x0004, 0x0044},
310   {0x0a00, 0xff00, 8, 0x0005, 0x0045},
311   {0x0800, 0xff00, 8, 0x0006, 0x0046},
312   {0x0600, 0xff00, 8, 0x0007, 0x0047},
313   {0x0580, 0xffc0, 10, 0x0008, 0x0048},
314   {0x0500, 0xffc0, 10, 0x0009, 0x0049},
315   {0x0480, 0xffc0, 10, 0x000a, 0x004a},
316   {0x0440, 0xffe0, 11, 0x000b, 0x004b},
317   {0x0400, 0xffe0, 11, 0x000c, 0x004c},
318   {0x03c0, 0xffe0, 11, 0x000d, 0x004d},
319   {0x0380, 0xffe0, 11, 0x000e, 0x004e},
320   {0x0340, 0xffe0, 11, 0x000f, 0x004f},
321   {0x0300, 0xffe0, 11, 0x0010, 0x0050},
322   {0x02c0, 0xffe0, 11, 0x0011, 0x0051},
323   {0x0280, 0xffe0, 11, 0x0012, 0x0052},
324   {0x0240, 0xffe0, 11, 0x0013, 0x0053},
325   {0x0200, 0xffe0, 11, 0x0014, 0x0054},
326   {0x01c0, 0xffe0, 11, 0x0015, 0x0055},
327   {0x0180, 0xffe0, 11, 0x0016, 0x0056},
328   {0x0140, 0xffe0, 11, 0x0017, 0x0057},
329   {0x0100, 0xffe0, 11, 0x0018, 0x0058},
330   {0x00e0, 0xfff0, 12, 0x0019, 0x0059},
331   {0x00c0, 0xfff0, 12, 0x001a, 0x005a},
332   {0x00a0, 0xfff0, 12, 0x001b, 0x005b},
333   {0x0080, 0xfff0, 12, 0x001c, 0x005c},
334   {0x0060, 0xfff0, 12, 0x001d, 0x005d},
335   {0x0040, 0xfff0, 12, 0x001e, 0x005e},
336   {0x0030, 0xfff8, 13, 0x001f, 0x005f}
337 };
338
339 GST_DEBUG_CATEGORY_STATIC (rtph263pay_debug);
340 #define GST_CAT_DEFAULT (rtph263pay_debug)
341
342 #define GST_RTP_HEADER_LEN 12
343
344 enum
345 {
346   PROP_0,
347   PROP_MODE_A_ONLY
348 };
349
350 static GstStaticPadTemplate gst_rtp_h263_pay_sink_template =
351 GST_STATIC_PAD_TEMPLATE ("sink",
352     GST_PAD_SINK,
353     GST_PAD_ALWAYS,
354     GST_STATIC_CAPS ("video/x-h263, "
355         "variant = (string) \"itu\", " "h263version = (string) \"h263\"")
356     );
357
358 static GstStaticPadTemplate gst_rtp_h263_pay_src_template =
359     GST_STATIC_PAD_TEMPLATE ("src",
360     GST_PAD_SRC,
361     GST_PAD_ALWAYS,
362     GST_STATIC_CAPS ("application/x-rtp, "
363         "media = (string) \"video\", "
364         "payload = (int) " GST_RTP_PAYLOAD_H263_STRING ", "
365         "clock-rate = (int) 90000, " "encoding-name = (string) \"H263\"; "
366         "application/x-rtp, "
367         "media = (string) \"video\", "
368         "payload = (int) " GST_RTP_PAYLOAD_DYNAMIC_STRING ", "
369         "clock-rate = (int) 90000, " "encoding-name = (string) \"H263\"")
370     );
371
372 static void gst_rtp_h263_pay_finalize (GObject * object);
373
374 static gboolean gst_rtp_h263_pay_setcaps (GstRTPBasePayload * payload,
375     GstCaps * caps);
376 static void gst_rtp_h263_pay_set_property (GObject * object, guint prop_id,
377     const GValue * value, GParamSpec * pspec);
378 static void gst_rtp_h263_pay_get_property (GObject * object, guint prop_id,
379     GValue * value, GParamSpec * pspec);
380 static GstFlowReturn gst_rtp_h263_pay_handle_buffer (GstRTPBasePayload *
381     payload, GstBuffer * buffer);
382
383 static void gst_rtp_h263_pay_boundry_init (GstRtpH263PayBoundry * boundry,
384     guint8 * start, guint8 * end, guint8 sbit, guint8 ebit);
385 static GstRtpH263PayGob *gst_rtp_h263_pay_gob_new (GstRtpH263PayBoundry *
386     boundry, guint gobn);
387 static GstRtpH263PayMB *gst_rtp_h263_pay_mb_new (GstRtpH263PayBoundry * boundry,
388     guint mba);
389 static GstRtpH263PayPackage *gst_rtp_h263_pay_package_new_empty ();
390 static GstRtpH263PayPackage *gst_rtp_h263_pay_package_new (guint8 * start,
391     guint8 * end, guint length, guint8 sbit, guint8 ebit, GstBuffer * outbuf,
392     gboolean marker);
393
394 static void gst_rtp_h263_pay_mb_destroy (GstRtpH263PayMB * mb);
395 static void gst_rtp_h263_pay_gob_destroy (GstRtpH263PayGob * gob, guint ind);
396 static void gst_rtp_h263_pay_context_destroy (GstRtpH263PayContext * context,
397     guint ind);
398 static void gst_rtp_h263_pay_package_destroy (GstRtpH263PayPackage * pack);
399
400 #define gst_rtp_h263_pay_parent_class parent_class
401 G_DEFINE_TYPE (GstRtpH263Pay, gst_rtp_h263_pay, GST_TYPE_RTP_BASE_PAYLOAD);
402
403 static void
404 gst_rtp_h263_pay_class_init (GstRtpH263PayClass * klass)
405 {
406   GObjectClass *gobject_class;
407   GstElementClass *gstelement_class;
408   GstRTPBasePayloadClass *gstrtpbasepayload_class;
409
410   gobject_class = (GObjectClass *) klass;
411   gstelement_class = (GstElementClass *) klass;
412   gstrtpbasepayload_class = (GstRTPBasePayloadClass *) klass;
413
414   gobject_class->finalize = gst_rtp_h263_pay_finalize;
415
416   gstrtpbasepayload_class->set_caps = gst_rtp_h263_pay_setcaps;
417   gstrtpbasepayload_class->handle_buffer = gst_rtp_h263_pay_handle_buffer;
418   gobject_class->set_property = gst_rtp_h263_pay_set_property;
419   gobject_class->get_property = gst_rtp_h263_pay_get_property;
420
421   g_object_class_install_property (G_OBJECT_CLASS (klass),
422       PROP_MODE_A_ONLY, g_param_spec_boolean ("modea-only",
423           "Fragment packets in mode A Only",
424           "Disable packetization modes B and C", DEFAULT_MODE_A,
425           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
426
427   gst_element_class_add_pad_template (gstelement_class,
428       gst_static_pad_template_get (&gst_rtp_h263_pay_src_template));
429   gst_element_class_add_pad_template (gstelement_class,
430       gst_static_pad_template_get (&gst_rtp_h263_pay_sink_template));
431
432   gst_element_class_set_static_metadata (gstelement_class,
433       "RTP H263 packet payloader", "Codec/Payloader/Network/RTP",
434       "Payload-encodes H263 video in RTP packets (RFC 2190)",
435       "Neil Stratford <neils@vipadia.com>"
436       "Dejan Sakelsak <dejan.sakelsak@marand.si>");
437
438   GST_DEBUG_CATEGORY_INIT (rtph263pay_debug, "rtph263pay", 0,
439       "H263 RTP Payloader");
440 }
441
442 static void
443 gst_rtp_h263_pay_init (GstRtpH263Pay * rtph263pay)
444 {
445   GST_RTP_BASE_PAYLOAD_PT (rtph263pay) = GST_RTP_PAYLOAD_H263;
446   rtph263pay->prop_payload_mode = DEFAULT_MODE_A;
447 }
448
449 static void
450 gst_rtp_h263_pay_finalize (GObject * object)
451 {
452   GstRtpH263Pay *rtph263pay;
453
454   rtph263pay = GST_RTP_H263_PAY (object);
455
456   gst_buffer_replace (&rtph263pay->current_buffer, NULL);
457
458   G_OBJECT_CLASS (parent_class)->finalize (object);
459 }
460
461 static gboolean
462 gst_rtp_h263_pay_setcaps (GstRTPBasePayload * payload, GstCaps * caps)
463 {
464   GstStructure *s = gst_caps_get_structure (caps, 0);
465   gint width, height;
466   gchar *framesize = NULL;
467   gboolean res;
468
469   if (gst_structure_has_field (s, "width") &&
470       gst_structure_has_field (s, "height")) {
471     if (!gst_structure_get_int (s, "width", &width) || width <= 0) {
472       goto invalid_dimension;
473     }
474
475     if (!gst_structure_get_int (s, "height", &height) || height <= 0) {
476       goto invalid_dimension;
477     }
478
479     framesize = g_strdup_printf ("%d-%d", width, height);
480   }
481
482   gst_rtp_base_payload_set_options (payload, "video",
483       payload->pt != GST_RTP_PAYLOAD_H263, "H263", 90000);
484
485   if (framesize != NULL) {
486     res = gst_rtp_base_payload_set_outcaps (payload,
487         "a-framesize", G_TYPE_STRING, framesize, NULL);
488   } else {
489     res = gst_rtp_base_payload_set_outcaps (payload, NULL);
490   }
491   g_free (framesize);
492
493   return res;
494
495   /* ERRORS */
496 invalid_dimension:
497   {
498     GST_ERROR_OBJECT (payload, "Invalid width/height from caps");
499     return FALSE;
500   }
501 }
502
503 static void
504 gst_rtp_h263_pay_context_destroy (GstRtpH263PayContext * context, guint ind)
505 {
506   if (!context)
507     return;
508
509   if (context->gobs) {
510     guint i;
511
512     for (i = 0; i < format_props[ind][0]; i++) {
513       if (context->gobs[i]) {
514         gst_rtp_h263_pay_gob_destroy (context->gobs[i], ind);
515       }
516     }
517
518     g_free (context->gobs);
519   }
520
521   g_free (context);
522 }
523
524 static void
525 gst_rtp_h263_pay_set_property (GObject * object, guint prop_id,
526     const GValue * value, GParamSpec * pspec)
527 {
528   GstRtpH263Pay *rtph263pay;
529
530   rtph263pay = GST_RTP_H263_PAY (object);
531
532   switch (prop_id) {
533     case PROP_MODE_A_ONLY:
534       rtph263pay->prop_payload_mode = g_value_get_boolean (value);
535       break;
536     default:
537       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
538       break;
539   }
540 }
541
542 static void
543 gst_rtp_h263_pay_get_property (GObject * object, guint prop_id,
544     GValue * value, GParamSpec * pspec)
545 {
546   GstRtpH263Pay *rtph263pay;
547
548   rtph263pay = GST_RTP_H263_PAY (object);
549
550   switch (prop_id) {
551     case PROP_MODE_A_ONLY:
552       g_value_set_boolean (value, rtph263pay->prop_payload_mode);
553       break;
554     default:
555       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
556       break;
557   }
558 }
559
560 static GstRtpH263PayPackage *
561 gst_rtp_h263_pay_package_new_empty (void)
562 {
563   return (GstRtpH263PayPackage *) g_malloc0 (sizeof (GstRtpH263PayPackage));
564 }
565
566 static GstRtpH263PayPackage *
567 gst_rtp_h263_pay_package_new (guint8 * start, guint8 * end, guint length,
568     guint8 sbit, guint8 ebit, GstBuffer * outbuf, gboolean marker)
569 {
570
571   GstRtpH263PayPackage *package;
572
573   package = gst_rtp_h263_pay_package_new_empty ();
574
575   package->payload_start = start;
576   package->payload_end = end;
577   package->payload_len = length;
578   package->sbit = sbit;
579   package->ebit = ebit;
580   package->outbuf = outbuf;
581   package->marker = marker;
582
583   return package;
584 }
585
586 static void
587 gst_rtp_h263_pay_package_destroy (GstRtpH263PayPackage * pack)
588 {
589   if (pack)
590     g_free (pack);
591 }
592
593 static void
594 gst_rtp_h263_pay_boundry_init (GstRtpH263PayBoundry * boundry,
595     guint8 * start, guint8 * end, guint8 sbit, guint8 ebit)
596 {
597   boundry->start = start;
598   boundry->end = end;
599   boundry->sbit = sbit;
600   boundry->ebit = ebit;
601 }
602
603 static void
604 gst_rtp_h263_pay_splat_header_A (guint8 * header,
605     GstRtpH263PayPackage * package, GstRtpH263PayPic * piclayer)
606 {
607
608   GstRtpH263PayAHeader *a_header;
609
610   a_header = (GstRtpH263PayAHeader *) header;
611
612   a_header->f = 0;
613   a_header->p = 0;
614   a_header->sbit = package->sbit;
615   a_header->ebit = package->ebit;
616   a_header->src = GST_H263_PICTURELAYER_PLSRC (piclayer);
617   a_header->i = GST_H263_PICTURELAYER_PLTYPE (piclayer);
618   a_header->u = GST_H263_PICTURELAYER_PLUMV (piclayer);
619   a_header->s = GST_H263_PICTURELAYER_PLSAC (piclayer);
620   a_header->a = GST_H263_PICTURELAYER_PLAP (piclayer);
621   a_header->r1 = 0;
622   a_header->r2 = 0;
623   a_header->dbq = 0;
624   a_header->trb = 0;
625   a_header->tr = 0;
626
627 }
628
629 static void
630 gst_rtp_h263_pay_splat_header_B (guint8 * header,
631     GstRtpH263PayPackage * package, GstRtpH263PayPic * piclayer)
632 {
633
634   GstRtpH263PayBHeader *b_header;
635
636   b_header = (GstRtpH263PayBHeader *) header;
637
638   b_header->f = 1;
639   b_header->p = 0;
640   b_header->sbit = package->sbit;
641   b_header->ebit = package->ebit;
642   b_header->src = GST_H263_PICTURELAYER_PLSRC (piclayer);
643   b_header->quant = package->quant;
644   b_header->gobn = package->gobn;
645   b_header->mba1 = package->mba >> 6;
646   b_header->mba2 = package->mba & 0x003f;
647   b_header->r = 0;
648   b_header->i = GST_H263_PICTURELAYER_PLTYPE (piclayer);
649   b_header->u = GST_H263_PICTURELAYER_PLUMV (piclayer);
650   b_header->s = GST_H263_PICTURELAYER_PLSAC (piclayer);
651   b_header->a = GST_H263_PICTURELAYER_PLAP (piclayer);
652
653   b_header->hmv11 = 0;
654   b_header->hmv12 = 0;
655   b_header->vmv11 = 0;
656   b_header->vmv12 = 0;
657   b_header->hmv21 = 0;
658   b_header->hmv22 = 0;
659   b_header->vmv21 = 0;
660
661   if (package->nmvd > 0) {
662     //mvd[0]
663     b_header->hmv11 = (package->mvd[0] & 0x7f) >> 3;
664     b_header->hmv12 = (package->mvd[0] & 0x07);
665     //mvd[1]
666     b_header->vmv11 = (package->mvd[1] & 0x07f) >> 2;
667     b_header->vmv12 = (package->mvd[1] & 0x03);
668
669     if (package->nmvd == 8) {
670       //mvd[4]
671       b_header->hmv21 = (package->mvd[4] & 0x7f) >> 1;
672       b_header->hmv22 = (package->mvd[4] & 0x01);
673       //mvd[5]
674       b_header->vmv21 = (package->mvd[5] & 0x7f);
675     }
676   }
677
678 }
679
680 static gboolean
681 gst_rtp_h263_pay_gobfinder (GstRtpH263Pay * rtph263pay,
682     GstRtpH263PayBoundry * boundry)
683 {
684   guint8 *current;
685   guint range;
686   guint i;
687
688   current = boundry->end + 1;
689   range = (rtph263pay->data - current) + rtph263pay->available_data;
690
691
692   GST_DEBUG ("Searching for next GOB, data:%p, len:%u, payload_len:%p,"
693       " current:%p, range:%u", rtph263pay->data, rtph263pay->available_data,
694       boundry->end + 1, current, range);
695
696   /* If we are past the end, stop */
697   if (current >= rtph263pay->data + rtph263pay->available_data)
698     return FALSE;
699
700   for (i = 3; i < range - 3; i++) {
701     if ((current[i] == 0x0) &&
702         (current[i + 1] == 0x0) && (current[i + 2] >> 7 == 0x1)) {
703       GST_LOG ("GOB end found at: %p start: %p len: %u", current + i - 1,
704           boundry->end + 1, (guint) (current + i - boundry->end + 2));
705       gst_rtp_h263_pay_boundry_init (boundry, boundry->end + 1,
706           current + i - 1, 0, 0);
707
708       return TRUE;
709     }
710   }
711
712   GST_DEBUG ("Couldn't find any new GBSC in this frame, range:%u", range);
713
714   gst_rtp_h263_pay_boundry_init (boundry, boundry->end + 1,
715       (guint8 *) (rtph263pay->data + rtph263pay->available_data - 1), 0, 0);
716
717   return TRUE;
718 }
719
720 static GstRtpH263PayGob *
721 gst_rtp_h263_pay_gob_new (GstRtpH263PayBoundry * boundry, guint gobn)
722 {
723   GstRtpH263PayGob *gob;
724
725   gob = (GstRtpH263PayGob *) g_malloc0 (sizeof (GstRtpH263PayGob));
726
727   gob->start = boundry->start;
728   gob->end = boundry->end;
729   gob->length = boundry->end - boundry->start + 1;
730   gob->ebit = boundry->ebit;
731   gob->sbit = boundry->sbit;
732   gob->gobn = gobn;
733   gob->quant = 0;
734   gob->macroblocks = NULL;
735   gob->nmacroblocs = 0;
736
737   return gob;
738 }
739
740 static void
741 gst_rtp_h263_pay_gob_destroy (GstRtpH263PayGob * gob, guint ind)
742 {
743
744   if (!gob)
745     return;
746
747   if (gob->macroblocks) {
748
749     guint i;
750
751     for (i = 0; i < gob->nmacroblocs; i++) {
752       gst_rtp_h263_pay_mb_destroy (gob->macroblocks[i]);
753     }
754
755     g_free (gob->macroblocks);
756   }
757
758   g_free (gob);
759 }
760
761 /*
762  * decode MCBPC for I frames and return index in table or -1 if not found
763  */
764 static gint
765 gst_rtp_h263_pay_decode_mcbpc_I (guint32 value)
766 {
767
768   gint i;
769   guint16 code;
770
771   code = value >> 16;
772
773   GST_DEBUG ("value:0x%08x, code:0x%04x", value, code);
774
775   for (i = 0; i < MCBPC_I_LEN; i++) {
776     if ((code & mcbpc_I[i][1]) == mcbpc_I[i][0]) {
777       return i;
778     }
779   }
780
781   GST_WARNING ("Couldn't find code, returning -1");
782
783   return -1;
784 }
785
786 /*
787  * decode MCBPC for P frames and return index in table or -1 if not found
788  */
789 static gint
790 gst_rtp_h263_pay_decode_mcbpc_P (guint32 value)
791 {
792
793   gint i;
794   guint16 code;
795
796   code = value >> 16;
797
798   GST_DEBUG ("value:0x%08x, code:0x%04x", value, code);
799
800   for (i = 0; i < MCBPC_P_LEN; i++) {
801     if ((code & mcbpc_P[i][1]) == mcbpc_P[i][0]) {
802       return i;
803     }
804   }
805
806   GST_WARNING ("Couldn't find code, returning -1");
807
808   return -1;
809 }
810
811 /*
812  * decode CBPY and return index in table or -1 if not found
813  */
814 static gint
815 gst_rtp_h263_pay_decode_cbpy (guint32 value, const guint8 cbpy_table[16][7])
816 {
817
818   gint i;
819   guint8 code;
820
821   code = value >> 24;
822
823   GST_DEBUG ("value:0x%08x, code:0x%04x", value, code);
824
825   for (i = 0; i < CBPY_LEN; i++) {
826     if ((code & cbpy_table[i][1]) == cbpy_table[i][0]) {
827       return i;
828     }
829   }
830
831   GST_WARNING ("Couldn't find code, returning -1");
832
833   return -1;
834 }
835
836 /*
837  * decode MVD and return index in table or -1 if not found
838  */
839 static gint
840 gst_rtp_h263_pay_decode_mvd (guint32 value)
841 {
842
843   gint i;
844   guint16 code;
845
846   code = value >> 16;
847
848   GST_DEBUG ("value:0x%08x, code:0x%04x", value, code);
849
850   for (i = 0; i < MVD_LEN; i++) {
851     if ((code & mvd[i][1]) == mvd[i][0]) {
852       return i;
853     }
854   }
855
856   GST_WARNING ("Couldn't find code, returning -1");
857
858   return -1;
859 }
860
861 /*
862  * decode TCOEF and return index in table or -1 if not found
863  */
864 static gint
865 gst_rtp_h263_pay_decode_tcoef (guint32 value)
866 {
867
868   gint i;
869   guint16 code;
870
871   code = value >> 16;
872
873   GST_DEBUG ("value:0x%08x, code:0x%04x", value, code);
874
875   for (i = 0; i < TCOEF_LEN; i++) {
876     if ((code & tcoef[i][1]) == tcoef[i][0]) {
877       GST_LOG ("tcoef is %d", i);
878       return i;
879     }
880   }
881
882   GST_WARNING ("Couldn't find code, returning -1");
883
884   return -1;
885 }
886
887 /*
888  * the 32-bit register is like a window that we move right for "move_bits" to get the next v "data" h263 field
889  * "rest_bits" tells how many bits in the "data" byte address are still not used
890  */
891
892 static gint
893 gst_rtp_h263_pay_move_window_right (GstRtpH263PayContext * context, guint n,
894     guint rest_bits, guint8 ** orig_data, guint8 ** data_end)
895 {
896
897   GST_DEBUG ("Moving window: 0x%08x from: %p for %d bits, rest_bits: %d",
898       context->window, context->win_end, n, rest_bits);
899
900   if (n == 0)
901     return rest_bits;
902
903   while (n != 0 || context->win_end == ((*data_end) + 1)) {
904     //guint8 a = *data;
905     if (rest_bits == 0) {
906       if (n > 8) {
907         context->window = (context->window << 8) | *context->win_end;
908         n -= 8;
909       } else {
910         context->window =
911             (context->window << n) | (*context->win_end >> (8 - n));
912         rest_bits = 8 - n;
913         if (rest_bits == 0)
914           context->win_end++;
915         break;
916       }
917     } else {
918       if (n > rest_bits) {
919         context->window =
920             (context->window << rest_bits) | (*context->
921             win_end & (((guint) pow (2.0, (double) rest_bits)) - 1));
922         n -= rest_bits;
923         rest_bits = 0;
924       } else {
925         context->window =
926             (context->window << n) | ((*context->win_end & (((guint) pow (2.0,
927                             (double) rest_bits)) - 1)) >> (rest_bits - n));
928         rest_bits -= n;
929         if (rest_bits == 0)
930           context->win_end++;
931         break;
932       }
933     }
934
935     context->win_end++;
936   }
937
938   *orig_data = context->win_end - 4;
939
940   GST_DEBUG
941       ("Window moved to %p with value: 0x%08x and orig_data: %p rest_bits: %d",
942       context->win_end, context->window, *orig_data, rest_bits);
943   return rest_bits;
944 }
945
946 /*
947  * Find the start of the next MB (end of the current MB)
948  * returns the number of excess bits and stores the end of the MB in end
949  * data must be placed on first MB byte
950  */
951 static GstRtpH263PayMB *
952 gst_rtp_h263_pay_B_mbfinder (GstRtpH263PayContext * context,
953     GstRtpH263PayGob * gob, GstRtpH263PayMB * macroblock, guint mba)
954 {
955
956   guint mb_type_index;
957   guint cbpy_type_index;
958   guint tcoef_type_index;
959   GstRtpH263PayMB *mac;
960   GstRtpH263PayBoundry boundry;
961
962
963   gst_rtp_h263_pay_boundry_init (&boundry, macroblock->end,
964       macroblock->end, 8 - macroblock->ebit, macroblock->ebit);
965   mac = gst_rtp_h263_pay_mb_new (&boundry, mba);
966
967
968   if (mac->sbit == 8) {
969     mac->start++;
970 //     mac->end++;
971     mac->sbit = 0;
972   }
973
974   GST_LOG ("current_pos:%p, end:%p, rest_bits:%d, window:%x",
975       mac->start, mac->end, macroblock->ebit, context->window);
976
977   GST_LOG ("Current pos after COD: %p", mac->end);
978
979   if (context->piclayer->ptype_pictype == 0) {
980     //We have an I frame
981     gint i;
982     guint last;
983     guint ind;
984
985     //Step 2 decode MCBPC I
986     mb_type_index = gst_rtp_h263_pay_decode_mcbpc_I (context->window);
987
988     GST_DEBUG ("MCBPC index: %d", mb_type_index);
989     if (mb_type_index == -1) {
990       GST_ERROR ("MB index shouldn't be -1 in window: %08x", context->window);
991       goto beach;
992     }
993
994     mac->ebit =
995         gst_rtp_h263_pay_move_window_right (context, mcbpc_I[mb_type_index][2],
996         mac->ebit, &mac->end, &gob->end);
997
998     mac->mb_type = mcbpc_I[mb_type_index][5];
999
1000     if (mb_type_index == 8) {
1001       GST_LOG ("Stuffing skipping rest of MB header");
1002       return mac;
1003     }
1004     //Step 3 decode CBPY I
1005     cbpy_type_index = gst_rtp_h263_pay_decode_cbpy (context->window, cbpy_I);
1006
1007     GST_DEBUG ("CBPY index: %d", cbpy_type_index);
1008     if (cbpy_type_index == -1) {
1009       GST_ERROR ("CBPY index shouldn't be -1 in window: %08x", context->window);
1010       goto beach;
1011     }
1012
1013     mac->ebit =
1014         gst_rtp_h263_pay_move_window_right (context, cbpy_I[cbpy_type_index][2],
1015         mac->ebit, &mac->end, &gob->end);
1016
1017     //Step 4 decode rest of MB
1018     //MB type 1 and 4 have DQUANT - we store it for packaging purposes
1019     if (mcbpc_I[mb_type_index][5] == 4) {
1020       GST_DEBUG ("Shifting DQUANT");
1021
1022       mac->quant = (context->window >> 30);
1023
1024       mac->ebit =
1025           gst_rtp_h263_pay_move_window_right (context, 2, mac->ebit, &mac->end,
1026           &gob->end);
1027     }
1028     //Step 5 go trough the blocks - decode DC and TCOEF
1029     last = 0;
1030     for (i = 0; i < N_BLOCKS; i++) {
1031
1032       GST_DEBUG ("Decoding INTRADC and TCOEF, i:%d", i);
1033       mac->ebit =
1034           gst_rtp_h263_pay_move_window_right (context, 8, mac->ebit, &mac->end,
1035           &gob->end);
1036
1037       if (i > 3) {
1038         ind = mcbpc_I[mb_type_index][i - 1];
1039       } else {
1040         ind = cbpy_I[cbpy_type_index][i + 3];
1041       }
1042
1043       if (ind == 1) {
1044         while (last == 0) {
1045           tcoef_type_index = gst_rtp_h263_pay_decode_tcoef (context->window);
1046
1047           GST_DEBUG ("TCOEF index: %d", tcoef_type_index);
1048           if (tcoef_type_index == -1) {
1049             GST_ERROR ("TCOEF index shouldn't be -1 in window: %08x",
1050                 context->window);
1051             goto beach;
1052           }
1053           mac->ebit =
1054               gst_rtp_h263_pay_move_window_right (context,
1055               tcoef[tcoef_type_index][2], mac->ebit, &mac->end, &gob->end);
1056
1057           last = tcoef[tcoef_type_index][3];
1058           if (tcoef_type_index == 102) {
1059             if ((context->window & 0x80000000) == 0x80000000)
1060               last = 1;
1061             else
1062               last = 0;
1063
1064             mac->ebit =
1065                 gst_rtp_h263_pay_move_window_right (context, 15,
1066                 mac->ebit, &mac->end, &gob->end);
1067           }
1068         }
1069         last = 0;
1070       }
1071     }
1072
1073   } else {
1074     //We have a P frame
1075     guint i;
1076     guint last;
1077     guint ind;
1078
1079     //Step 1 check COD
1080     GST_DEBUG ("Checking for COD");
1081     if ((context->window & 0x80000000) == 0x80000000) {
1082       //The MB is not coded
1083       mac->ebit =
1084           gst_rtp_h263_pay_move_window_right (context, 1, mac->ebit, &mac->end,
1085           &gob->end);
1086       GST_DEBUG ("COOOOOOOOOOOD = 1");
1087
1088       return mac;
1089     } else {
1090       //The MB is coded
1091       mac->ebit =
1092           gst_rtp_h263_pay_move_window_right (context, 1, mac->ebit, &mac->end,
1093           &gob->end);
1094     }
1095
1096     //Step 2 decode MCBPC P
1097     mb_type_index = gst_rtp_h263_pay_decode_mcbpc_P (context->window);
1098
1099     GST_DEBUG ("MCBPC index: %d", mb_type_index);
1100     if (mb_type_index == -1) {
1101       GST_ERROR ("MB index shouldn't be -1 in window: %08x", context->window);
1102       goto beach;
1103     }
1104     mac->ebit =
1105         gst_rtp_h263_pay_move_window_right (context, mcbpc_P[mb_type_index][2],
1106         mac->ebit, &mac->end, &gob->end);
1107
1108     mac->mb_type = mcbpc_P[mb_type_index][5];
1109
1110     if (mb_type_index == 20) {
1111       GST_LOG ("Stuffing skipping rest of MB header");
1112       return mac;
1113     }
1114     //Step 3 decode CBPY P
1115     cbpy_type_index = gst_rtp_h263_pay_decode_cbpy (context->window, cbpy_P);
1116
1117     GST_DEBUG ("CBPY index: %d", cbpy_type_index);
1118     if (cbpy_type_index == -1) {
1119       GST_ERROR ("CBPY index shouldn't be -1 in window: %08x", context->window);
1120       goto beach;
1121     }
1122     mac->ebit =
1123         gst_rtp_h263_pay_move_window_right (context, cbpy_P[cbpy_type_index][2],
1124         mac->ebit, &mac->end, &gob->end);
1125
1126     //MB type 1 and 4 have DQUANT - we add it to MB object and jump over
1127     if (mcbpc_P[mb_type_index][5] == 4 || mcbpc_P[mb_type_index][5] == 1) {
1128       GST_DEBUG ("Shifting DQUANT");
1129
1130       mac->quant = context->window >> 30;
1131
1132       mac->ebit =
1133           gst_rtp_h263_pay_move_window_right (context, 2, mac->ebit, &mac->end,
1134           &gob->end);
1135     }
1136     //MB types < 3 have MVD1-4
1137     if (mcbpc_P[mb_type_index][5] < 3) {
1138
1139       guint nmvd;
1140       gint j;
1141
1142       nmvd = 2;
1143       if (mcbpc_P[mb_type_index][5] == 2)
1144         nmvd = 8;
1145
1146       for (j = 0; j < nmvd; j++) {
1147         guint mvd_type;
1148
1149         mvd_type = gst_rtp_h263_pay_decode_mvd (context->window);
1150
1151         if (mvd_type == -1) {
1152           GST_ERROR ("MVD1-4 index shouldn't be -1 in window: %08x",
1153               context->window);
1154           goto beach;
1155         }
1156         //set the MB mvd values
1157         mac->mvd[j] = mvd[mvd_type][3];
1158
1159         mac->ebit =
1160             gst_rtp_h263_pay_move_window_right (context, mvd[mvd_type][2],
1161             mac->ebit, &mac->end, &gob->end);
1162       }
1163
1164
1165     }
1166     //Step 5 go trough the blocks - decode DC and TCOEF
1167     last = 0;
1168     for (i = 0; i < N_BLOCKS; i++) {
1169
1170       //if MB type 3 or 4 then INTRADC coef are present in blocks
1171       if (mcbpc_P[mb_type_index][5] > 2) {
1172         GST_DEBUG ("INTRADC coef: %d", i);
1173         mac->ebit =
1174             gst_rtp_h263_pay_move_window_right (context, 8, mac->ebit,
1175             &mac->end, &gob->end);
1176       } else {
1177         GST_DEBUG ("INTRADC coef is not present");
1178       }
1179
1180       //check if the block has TCOEF
1181       if (i > 3) {
1182         ind = mcbpc_P[mb_type_index][i - 1];
1183       } else {
1184         if (mcbpc_P[mb_type_index][5] > 2) {
1185           ind = cbpy_I[cbpy_type_index][i + 3];
1186         } else {
1187           ind = cbpy_P[cbpy_type_index][i + 3];
1188         }
1189       }
1190
1191       if (ind == 1) {
1192         while (last == 0) {
1193           tcoef_type_index = gst_rtp_h263_pay_decode_tcoef (context->window);
1194
1195           GST_DEBUG ("TCOEF index: %d", tcoef_type_index);
1196           if (tcoef_type_index == -1) {
1197             GST_ERROR ("TCOEF index shouldn't be -1 in window: %08x",
1198                 context->window);
1199             goto beach;
1200           }
1201
1202           mac->ebit =
1203               gst_rtp_h263_pay_move_window_right (context,
1204               tcoef[tcoef_type_index][2], mac->ebit, &mac->end, &gob->end);
1205
1206           last = tcoef[tcoef_type_index][3];
1207           if (tcoef_type_index == 102) {
1208             if ((context->window & 0x80000000) == 0x80000000)
1209               last = 1;
1210             else
1211               last = 0;
1212
1213             mac->ebit =
1214                 gst_rtp_h263_pay_move_window_right (context, 15,
1215                 mac->ebit, &mac->end, &gob->end);
1216           }
1217         }
1218         last = 0;
1219       }
1220     }
1221   }
1222
1223   mac->length = mac->end - mac->start + 1;
1224
1225   return mac;
1226
1227 beach:
1228   gst_rtp_h263_pay_mb_destroy (mac);
1229   return NULL;
1230 }
1231
1232 static GstRtpH263PayMB *
1233 gst_rtp_h263_pay_mb_new (GstRtpH263PayBoundry * boundry, guint mba)
1234 {
1235   GstRtpH263PayMB *mb;
1236   gint i;
1237
1238   mb = (GstRtpH263PayMB *) g_malloc0 (sizeof (GstRtpH263PayMB));
1239
1240   mb->start = boundry->start;
1241   mb->end = boundry->end;
1242   mb->length = boundry->end - boundry->start + 1;
1243   mb->sbit = boundry->sbit;
1244   mb->ebit = boundry->ebit;
1245   mb->mba = mba;
1246
1247   for (i = 0; i < 5; i++)
1248     mb->mvd[i] = 0;
1249
1250   return mb;
1251 }
1252
1253 static void
1254 gst_rtp_h263_pay_mb_destroy (GstRtpH263PayMB * mb)
1255 {
1256   if (!mb)
1257     return;
1258
1259   g_free (mb);
1260 }
1261
1262 static GstFlowReturn
1263 gst_rtp_h263_pay_push (GstRtpH263Pay * rtph263pay,
1264     GstRtpH263PayContext * context, GstRtpH263PayPackage * package)
1265 {
1266
1267   /*
1268    * Splat the payload header values
1269    */
1270   guint8 *header;
1271   GstFlowReturn ret;
1272   GstRTPBuffer rtp = { NULL };
1273
1274   gst_rtp_buffer_map (package->outbuf, GST_MAP_WRITE, &rtp);
1275
1276   header = gst_rtp_buffer_get_payload (&rtp);
1277
1278   switch (package->mode) {
1279     case GST_RTP_H263_PAYLOAD_HEADER_MODE_A:
1280       GST_LOG ("Pushing A packet");
1281       gst_rtp_h263_pay_splat_header_A (header, package, context->piclayer);
1282       break;
1283     case GST_RTP_H263_PAYLOAD_HEADER_MODE_B:
1284       GST_LOG ("Pushing B packet");
1285       gst_rtp_h263_pay_splat_header_B (header, package, context->piclayer);
1286       break;
1287     case GST_RTP_H263_PAYLOAD_HEADER_MODE_C:
1288       //gst_rtp_h263_pay_splat_header_C(header, package, context->piclayer);
1289       //break;
1290     default:
1291       return GST_FLOW_ERROR;
1292   }
1293
1294   /*
1295    * timestamp the buffer
1296    */
1297   GST_BUFFER_PTS (package->outbuf) = rtph263pay->first_ts;
1298
1299   gst_rtp_buffer_set_marker (&rtp, package->marker);
1300   if (package->marker)
1301     GST_DEBUG ("Marker set!");
1302
1303   gst_rtp_buffer_unmap (&rtp);
1304
1305   /*
1306    * Copy the payload data in the buffer
1307    */
1308   GST_DEBUG ("Copying memory");
1309   gst_buffer_copy_into (package->outbuf, rtph263pay->current_buffer,
1310       GST_BUFFER_COPY_MEMORY, package->payload_start - rtph263pay->map.data,
1311       package->payload_len);
1312   gst_rtp_copy_meta (GST_ELEMENT_CAST (rtph263pay), package->outbuf,
1313       rtph263pay->current_buffer,
1314       g_quark_from_static_string (GST_META_TAG_VIDEO_STR));
1315
1316   ret =
1317       gst_rtp_base_payload_push (GST_RTP_BASE_PAYLOAD (rtph263pay),
1318       package->outbuf);
1319   GST_DEBUG ("Package pushed, returning");
1320
1321   gst_rtp_h263_pay_package_destroy (package);
1322
1323   return ret;
1324 }
1325
1326 static GstFlowReturn
1327 gst_rtp_h263_pay_A_fragment_push (GstRtpH263Pay * rtph263pay,
1328     GstRtpH263PayContext * context, guint first, guint last)
1329 {
1330
1331   GstRtpH263PayPackage *pack;
1332
1333   pack = gst_rtp_h263_pay_package_new_empty ();
1334
1335   pack->payload_start = context->gobs[first]->start;
1336   pack->sbit = context->gobs[first]->sbit;
1337   pack->ebit = context->gobs[last]->ebit;
1338   pack->payload_len =
1339       (context->gobs[last]->end - context->gobs[first]->start) + 1;
1340   pack->marker = FALSE;
1341
1342   if (last == context->no_gobs - 1) {
1343     pack->marker = TRUE;
1344   }
1345
1346   pack->gobn = context->gobs[first]->gobn;
1347   pack->mode = GST_RTP_H263_PAYLOAD_HEADER_MODE_A;
1348   pack->outbuf = gst_rtp_buffer_new_allocate (pack->mode, 0, 0);
1349
1350   GST_DEBUG ("Sending len:%d data to push function", pack->payload_len);
1351
1352   return gst_rtp_h263_pay_push (rtph263pay, context, pack);
1353 }
1354
1355 static GstFlowReturn
1356 gst_rtp_h263_pay_B_fragment_push (GstRtpH263Pay * rtph263pay,
1357     GstRtpH263PayContext * context, GstRtpH263PayGob * gob, guint first,
1358     guint last, GstRtpH263PayBoundry * boundry)
1359 {
1360
1361   GstRtpH263PayPackage *pack;
1362   guint mv;
1363
1364   pack = gst_rtp_h263_pay_package_new_empty ();
1365
1366   pack->payload_start = gob->macroblocks[first]->start;
1367   pack->sbit = gob->macroblocks[first]->sbit;
1368   if (first == 0) {
1369     pack->payload_start = boundry->start;
1370     pack->sbit = boundry->sbit;
1371     pack->quant = gob->quant;
1372   } else {
1373     pack->quant = gob->macroblocks[first]->quant;
1374   }
1375   pack->payload_end = gob->macroblocks[last]->end;
1376
1377   pack->ebit = gob->macroblocks[last]->ebit;
1378   pack->mba = gob->macroblocks[first]->mba;
1379   pack->gobn = gob->gobn;
1380   pack->mode = GST_RTP_H263_PAYLOAD_HEADER_MODE_B;
1381   pack->nmvd = 0;
1382
1383   if (gob->macroblocks[first]->mb_type < 3) {
1384     if (gob->macroblocks[first]->mb_type == 2)
1385       pack->nmvd = 8;
1386     else if (gob->macroblocks[first]->mb_type < 2)
1387       pack->nmvd = 2;
1388
1389     for (mv = 0; mv < pack->nmvd; mv++)
1390       pack->mvd[mv] = gob->macroblocks[first]->mvd[mv];
1391   }
1392
1393   pack->marker = FALSE;
1394   if (last == gob->nmacroblocs - 1) {
1395     pack->ebit = 0;
1396   }
1397
1398   if ((format_props[context->piclayer->ptype_srcformat][0] - 1 == gob->gobn)
1399       && (last == gob->nmacroblocs - 1)) {
1400     pack->marker = TRUE;
1401   }
1402
1403   pack->payload_len = pack->payload_end - pack->payload_start + 1;
1404   pack->outbuf = gst_rtp_buffer_new_allocate (pack->mode, 0, 0);
1405
1406   return gst_rtp_h263_pay_push (rtph263pay, context, pack);
1407 }
1408
1409
1410 static gboolean
1411 gst_rtp_h263_pay_mode_B_fragment (GstRtpH263Pay * rtph263pay,
1412     GstRtpH263PayContext * context, GstRtpH263PayGob * gob)
1413 {
1414
1415
1416     /*---------- MODE B MODE FRAGMENTATION ----------*/
1417   GstRtpH263PayMB *mac = NULL;
1418   guint max_payload_size;
1419   GstRtpH263PayBoundry boundry;
1420   guint mb;
1421   guint8 ebit;
1422
1423   guint first = 0;
1424   guint payload_len;
1425
1426   max_payload_size =
1427       context->mtu - GST_RTP_H263_PAYLOAD_HEADER_MODE_B - GST_RTP_HEADER_LEN;
1428
1429   gst_rtp_h263_pay_boundry_init (&boundry, gob->start, gob->start, gob->sbit,
1430       0);
1431
1432   gob->macroblocks =
1433       (GstRtpH263PayMB **) g_malloc0 (sizeof (GstRtpH263PayMB *) *
1434       format_props[context->piclayer->ptype_srcformat][1]);
1435
1436   GST_LOG ("GOB isn't PB frame, applying mode B");
1437
1438   //initializing window
1439   context->win_end = boundry.end;
1440   if (gst_rtp_h263_pay_move_window_right (context, 32, boundry.ebit,
1441           &boundry.end, &gob->end) != 0) {
1442     GST_ERROR
1443         ("The rest of the bits should be 0, exiting, because something bad happend");
1444     goto decode_error;
1445   }
1446   //The first GOB of a frame "has no" actual header - PICTURE header is his header
1447   if (gob->gobn == 0) {
1448     guint shift;
1449     GST_LOG ("Initial GOB");
1450     shift = 43;
1451
1452     boundry.ebit =
1453         gst_rtp_h263_pay_move_window_right (context, shift, boundry.ebit,
1454         &boundry.end, &gob->end);
1455
1456     //We need PQUANT for mode B packages - so we store it
1457     gob->quant = context->window >> 27;
1458
1459     //if PCM == 1, then PSBI is present - header has 51 bits
1460     //shift for PQUANT (5) and PCM (1) = 6 bits
1461     shift = 6;
1462     if (context->cpm == 1)
1463       shift += 2;
1464     boundry.ebit =
1465         gst_rtp_h263_pay_move_window_right (context, shift, boundry.ebit,
1466         &boundry.end, &gob->end);
1467
1468     GST_DEBUG ("window: 0x%08x", context->window);
1469
1470     //Shifting the PEI and PSPARE fields
1471     while ((context->window & 0x80000000) == 0x80000000) {
1472       boundry.ebit =
1473           gst_rtp_h263_pay_move_window_right (context, 9,
1474           boundry.ebit, &boundry.end, &gob->end);
1475       GST_LOG ("window: 0x%x", context->window);
1476     }
1477
1478     //shift the last PEI field
1479     boundry.ebit =
1480         gst_rtp_h263_pay_move_window_right (context, 1, boundry.ebit,
1481         &boundry.end, &gob->end);
1482
1483   } else {
1484     //skipping GOBs 24 header bits + 5 GQUANT
1485     guint shift = 24;
1486
1487     GST_LOG ("INTER GOB");
1488
1489     //if CPM == 1, there are 2 more bits in the header - GSBI header is 31 bits long
1490     if (context->cpm == 1)
1491       shift += 2;
1492
1493     GST_LOG ("window: 0x%x", context->window);
1494     boundry.ebit =
1495         gst_rtp_h263_pay_move_window_right (context, shift,
1496         boundry.ebit, &boundry.end, &gob->end);
1497
1498     //We need GQUANT for mode B packages - so we store it
1499     gob->quant = context->window >> 27;
1500
1501     shift = 5;
1502     boundry.ebit =
1503         gst_rtp_h263_pay_move_window_right (context, shift,
1504         boundry.ebit, &boundry.end, &gob->end);
1505
1506     GST_LOG ("window: 0x%x", context->window);
1507   }
1508
1509   GST_DEBUG ("GQUANT IS: %08x", gob->quant);
1510
1511   // We are on MB layer
1512
1513   mac = gst_rtp_h263_pay_mb_new (&boundry, 0);
1514   for (mb = 0; mb < format_props[context->piclayer->ptype_srcformat][1]; mb++) {
1515
1516     GST_DEBUG ("================ START MB %d =================", mb);
1517
1518     //Find next macroblock boundaries
1519     ebit = mac->ebit;
1520     if (!(mac = gst_rtp_h263_pay_B_mbfinder (context, gob, mac, mb))) {
1521
1522       GST_DEBUG ("Error decoding MB - sbit: %d", 8 - ebit);
1523       GST_ERROR ("Error decoding in GOB");
1524
1525       goto decode_error;
1526     }
1527     //If mb_type == stuffing, don't increment the mb address
1528     if (mac->mb_type == 10) {
1529       mb--;
1530       continue;
1531     } else {
1532       gob->nmacroblocs++;
1533     }
1534
1535     gob->macroblocks[mb] = mac;
1536
1537     if (mac->end >= gob->end) {
1538       GST_LOG ("No more MBs in this GOB");
1539       if (!mac->ebit) {
1540         mac->end--;
1541       }
1542       gob->end = mac->end;
1543       break;
1544     }
1545     GST_DEBUG ("Found MB: mba: %d start: %p end: %p len: %d sbit: %d ebit: %d",
1546         mac->mba, mac->start, mac->end, mac->length, mac->sbit, mac->ebit);
1547     GST_DEBUG ("================ END MB %d =================", mb);
1548   }
1549
1550   mb = 0;
1551   first = 0;
1552   payload_len = boundry.end - boundry.start + 1;
1553   GST_DEBUG ("------------------------- NEW PACKAGE ----------------------");
1554   while (mb < gob->nmacroblocs) {
1555     if (payload_len + gob->macroblocks[mb]->length < max_payload_size) {
1556
1557       //FIXME: payload_len is not the real length -> ignoring sbit/ebit
1558       payload_len += gob->macroblocks[mb]->length;
1559       mb++;
1560
1561     } else {
1562       //FIXME: we should include the last few bits of the GOB in the package - do we do that now?
1563       //GST_DEBUG ("Pushing GOBS %d to %d because payload size is %d", first,
1564       //    first == mb - 1, payload_len);
1565
1566       if (gst_rtp_h263_pay_B_fragment_push (rtph263pay, context, gob, first,
1567               mb - 1, &boundry)) {
1568         GST_ERROR ("Oooops, there was an error sending");
1569         goto decode_error;
1570       }
1571
1572       payload_len = 0;
1573       first = mb;
1574       GST_DEBUG
1575           ("------------------------- END PACKAGE ----------------------");
1576       GST_DEBUG
1577           ("------------------------- NEW PACKAGE ----------------------");
1578     }
1579   }
1580
1581   /* Push rest */
1582   GST_DEBUG ("Remainder first: %d, MB: %d", first, mb);
1583   if (payload_len != 0) {
1584     if (gst_rtp_h263_pay_B_fragment_push (rtph263pay, context, gob, first,
1585             mb - 1, &boundry)) {
1586       GST_ERROR ("Oooops, there was an error sending!");
1587       goto decode_error;
1588     }
1589   }
1590
1591     /*---------- END OF MODE B FRAGMENTATION ----------*/
1592
1593   gst_rtp_h263_pay_mb_destroy (mac);
1594   return TRUE;
1595
1596 decode_error:
1597   gst_rtp_h263_pay_mb_destroy (mac);
1598   return FALSE;
1599 }
1600
1601 static GstFlowReturn
1602 gst_rtp_h263_send_entire_frame (GstRtpH263Pay * rtph263pay,
1603     GstRtpH263PayContext * context)
1604 {
1605   GstRtpH263PayPackage *pack;
1606   pack =
1607       gst_rtp_h263_pay_package_new (rtph263pay->data,
1608       rtph263pay->data + rtph263pay->available_data,
1609       rtph263pay->available_data, 0, 0, NULL, TRUE);
1610   pack->mode = GST_RTP_H263_PAYLOAD_HEADER_MODE_A;
1611
1612   GST_DEBUG ("Available data: %d", rtph263pay->available_data);
1613
1614   pack->outbuf =
1615       gst_rtp_buffer_new_allocate (GST_RTP_H263_PAYLOAD_HEADER_MODE_A, 0, 0);
1616
1617   return gst_rtp_h263_pay_push (rtph263pay, context, pack);
1618 }
1619
1620 static GstFlowReturn
1621 gst_rtp_h263_pay_flush (GstRtpH263Pay * rtph263pay)
1622 {
1623
1624   /*
1625    * FIXME: GSTUF bits are ignored right now,
1626    *  - not using EBIT/SBIT payload header fields in mode A fragmentation - ffmpeg doesn't need them, but others?
1627    */
1628
1629   GstFlowReturn ret;
1630   GstRtpH263PayContext *context;
1631   gint i;
1632
1633   ret = 0;
1634   context = (GstRtpH263PayContext *) g_malloc0 (sizeof (GstRtpH263PayContext));
1635   context->mtu =
1636       rtph263pay->payload.mtu - (MTU_SECURITY_OFFSET + GST_RTP_HEADER_LEN +
1637       GST_RTP_H263_PAYLOAD_HEADER_MODE_C);
1638
1639   GST_DEBUG ("MTU: %d", context->mtu);
1640   rtph263pay->available_data = gst_buffer_get_size (rtph263pay->current_buffer);
1641   if (rtph263pay->available_data == 0) {
1642     ret = GST_FLOW_OK;
1643     goto end;
1644   }
1645
1646   /* Get a pointer to all the data for the frame */
1647   gst_buffer_map (rtph263pay->current_buffer, &rtph263pay->map, GST_MAP_READ);
1648   rtph263pay->data = (guint8 *) rtph263pay->map.data;
1649
1650   /* Picture header */
1651   context->piclayer = (GstRtpH263PayPic *) rtph263pay->data;
1652
1653   if (context->piclayer->ptype_pictype == 0)
1654     GST_DEBUG ("We got an I-frame");
1655   else
1656     GST_DEBUG ("We got a P-frame");
1657
1658   context->cpm = rtph263pay->data[6] >> 7;
1659
1660   GST_DEBUG ("CPM: %d", context->cpm);
1661
1662   GST_DEBUG ("Payload length is: %d", rtph263pay->available_data);
1663
1664   /*
1665    * - MODE A - If normal, I and P frames,  -> mode A
1666    *   - GOB layer fragmentation
1667    * - MODE B - If normal, I and P frames, but GOBs > mtu
1668    *   - MB layer fragmentation
1669    * - MODE C - For P frames with PB option, but GOBs > mtu
1670    *   - MB layer fragmentation
1671    */
1672   if (rtph263pay->available_data + GST_RTP_H263_PAYLOAD_HEADER_MODE_A +
1673       GST_RTP_HEADER_LEN < context->mtu) {
1674     ret = gst_rtp_h263_send_entire_frame (rtph263pay, context);
1675   } else {
1676
1677       /*---------- FRAGMENTING THE FRAME BECAUSE TOO LARGE TO FIT IN MTU ----------*/
1678     GstRtpH263PayBoundry bound;
1679     gint first;
1680     guint payload_len;
1681     gboolean forcea = FALSE;
1682
1683     GST_DEBUG ("Frame too large for MTU");
1684     /*
1685      * Let's go trough all the data and fragment it untill end is reached
1686      */
1687
1688     gst_rtp_h263_pay_boundry_init (&bound, NULL, rtph263pay->data - 1, 0, 0);
1689     context->gobs =
1690         (GstRtpH263PayGob **) g_malloc0 (format_props[context->piclayer->
1691             ptype_srcformat][0] * sizeof (GstRtpH263PayGob *));
1692
1693
1694     for (i = 0; i < format_props[context->piclayer->ptype_srcformat][0]; i++) {
1695       GST_DEBUG ("Searching for gob %d", i);
1696       if (!gst_rtp_h263_pay_gobfinder (rtph263pay, &bound)) {
1697         if (i <= 1) {
1698           GST_WARNING
1699               ("No GOB's were found in data stream! Please enable RTP mode in encoder. Forcing mode A for now.");
1700           ret = gst_rtp_h263_send_entire_frame (rtph263pay, context);
1701           goto end;
1702         } else {
1703           /* try to send fragments corresponding to found GOBs */
1704           forcea = TRUE;
1705           break;
1706         }
1707       }
1708
1709       context->gobs[i] = gst_rtp_h263_pay_gob_new (&bound, i);
1710       //FIXME - encoders may generate an EOS gob that has to be processed
1711       GST_DEBUG
1712           ("Gob values are: gobn: %d, start: %p len: %d ebit: %d sbit: %d", i,
1713           context->gobs[i]->start, context->gobs[i]->length,
1714           context->gobs[i]->ebit, context->gobs[i]->sbit);
1715     }
1716     /* NOTE some places may still assume this to be the max possible */
1717     context->no_gobs = i;
1718     GST_DEBUG ("Found %d GOBS of maximum %d",
1719         context->no_gobs, format_props[context->piclayer->ptype_srcformat][0]);
1720
1721     // Make packages smaller than MTU
1722     //   A mode
1723     // - if ( GOB > MTU) -> B mode || C mode
1724     //   Push packages
1725
1726     first = 0;
1727     payload_len = 0;
1728     i = 0;
1729     while (i < context->no_gobs) {
1730
1731       if (context->gobs[i]->length >= context->mtu) {
1732         if (payload_len == 0) {
1733
1734           GST_DEBUG ("GOB len > MTU");
1735           if (rtph263pay->prop_payload_mode || forcea) {
1736             payload_len = context->gobs[i]->length;
1737             goto force_a;
1738           }
1739           if (!context->piclayer->ptype_pbmode) {
1740             GST_DEBUG ("MODE B on GOB %d needed", i);
1741             if (!gst_rtp_h263_pay_mode_B_fragment (rtph263pay, context,
1742                     context->gobs[i])) {
1743               GST_ERROR ("There was an error fragmenting in mode B");
1744               ret = GST_FLOW_ERROR;
1745               goto end;
1746             }
1747           } else {
1748             //IMPLEMENT C mode
1749             GST_ERROR ("MODE C on GOB %d needed, but not supported yet", i);
1750             /*if(!gst_rtp_h263_pay_mode_C_fragment(rtph263pay, context, context->gobs[i])) {
1751                ret = GST_FLOW_OK;
1752                GST_ERROR("There was an error fragmenting in mode C");
1753                goto decode_error;
1754                } */
1755             goto decode_error;
1756           }
1757         decode_error:
1758           i++;
1759           first = i;
1760           continue;
1761
1762         } else {
1763           goto payload_a_push;
1764         }
1765       }
1766
1767       if (payload_len + context->gobs[i]->length < context->mtu) {
1768         GST_DEBUG ("GOB %d fills mtu", i);
1769         payload_len += context->gobs[i]->length;
1770         i++;
1771         if (i == context->no_gobs) {
1772           GST_DEBUG ("LAST GOB %d", i);
1773           goto payload_a_push;
1774         }
1775
1776       } else {
1777       payload_a_push:
1778         GST_DEBUG ("Pushing GOBS %d to %d because payload size is %d", first,
1779             first == i ? i : i - 1, payload_len);
1780         gst_rtp_h263_pay_A_fragment_push (rtph263pay, context, first,
1781             first == i ? i : i - 1);
1782         payload_len = 0;
1783         first = i;
1784       }
1785       continue;
1786
1787     force_a:
1788       GST_DEBUG ("Pushing GOBS %d to %d because payload size is %d", first, i,
1789           payload_len);
1790       gst_rtp_h263_pay_A_fragment_push (rtph263pay, context, first, i);
1791       payload_len = 0;
1792       i++;
1793       first = i;
1794     }
1795
1796
1797   }/*---------- END OF FRAGMENTATION ----------*/
1798
1799   /* Flush the input buffer data */
1800
1801 end:
1802   gst_rtp_h263_pay_context_destroy (context,
1803       context->piclayer->ptype_srcformat);
1804   gst_buffer_unmap (rtph263pay->current_buffer, &rtph263pay->map);
1805   gst_buffer_replace (&rtph263pay->current_buffer, NULL);
1806
1807   return ret;
1808 }
1809
1810 static GstFlowReturn
1811 gst_rtp_h263_pay_handle_buffer (GstRTPBasePayload * payload, GstBuffer * buffer)
1812 {
1813
1814   GstRtpH263Pay *rtph263pay;
1815   GstFlowReturn ret;
1816
1817   GST_DEBUG ("-------------------- NEW FRAME ---------------");
1818   rtph263pay = GST_RTP_H263_PAY (payload);
1819
1820   rtph263pay->first_ts = GST_BUFFER_PTS (buffer);
1821
1822   gst_buffer_replace (&rtph263pay->current_buffer, buffer);
1823   gst_buffer_unref (buffer);
1824
1825   /* we always encode and flush a full picture */
1826   ret = gst_rtp_h263_pay_flush (rtph263pay);
1827   GST_DEBUG ("-------------------- END FRAME ---------------");
1828
1829   return ret;
1830 }
1831
1832 gboolean
1833 gst_rtp_h263_pay_plugin_init (GstPlugin * plugin)
1834 {
1835   return gst_element_register (plugin, "rtph263pay",
1836       GST_RANK_SECONDARY, GST_TYPE_RTP_H263_PAY);
1837 }