rtph263pay: Indent as per gst-indent
[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_static_pad_template (gstelement_class,
428       &gst_rtp_h263_pay_src_template);
429   gst_element_class_add_static_pad_template (gstelement_class,
430       &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_LOG ("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_LOG ("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_LOG ("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_LOG ("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_LOG ("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_LOG
898       ("Moving window: 0x%08x from: %p for %d bits, rest_bits: %d, data_end %p",
899       context->window, context->win_end, n, rest_bits, *data_end);
900
901   if (n == 0)
902     return rest_bits;
903
904   while (n != 0 || context->win_end == ((*data_end) + 1)) {
905     guint8 b = context->win_end <= *data_end ? *context->win_end : 0;
906     if (rest_bits == 0) {
907       if (n > 8) {
908         context->window = (context->window << 8) | b;
909         n -= 8;
910       } else {
911         context->window = (context->window << n) | (b >> (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 = (context->window << rest_bits) |
920             (b & (((guint) pow (2.0, (double) rest_bits)) - 1));
921         n -= rest_bits;
922         rest_bits = 0;
923       } else {
924         context->window = (context->window << n) |
925             ((b & (((guint) pow (2.0, (double) rest_bits)) - 1)) >>
926             (rest_bits - n));
927         rest_bits -= n;
928         if (rest_bits == 0)
929           context->win_end++;
930         break;
931       }
932     }
933
934     context->win_end++;
935   }
936
937   *orig_data = context->win_end - 4;
938
939   GST_LOG
940       ("Window moved to %p with value: 0x%08x and orig_data: %p rest_bits: %d",
941       context->win_end, context->window, *orig_data, rest_bits);
942   return rest_bits;
943 }
944
945 /*
946  * Find the start of the next MB (end of the current MB)
947  * returns the number of excess bits and stores the end of the MB in end
948  * data must be placed on first MB byte
949  */
950 static GstRtpH263PayMB *
951 gst_rtp_h263_pay_B_mbfinder (GstRtpH263PayContext * context,
952     GstRtpH263PayGob * gob, GstRtpH263PayMB * macroblock, guint mba)
953 {
954   guint mb_type_index;
955   guint cbpy_type_index;
956   guint tcoef_type_index;
957   GstRtpH263PayMB *mac;
958   GstRtpH263PayBoundry boundry;
959
960   gst_rtp_h263_pay_boundry_init (&boundry, macroblock->end,
961       macroblock->end, 8 - macroblock->ebit, macroblock->ebit);
962   mac = gst_rtp_h263_pay_mb_new (&boundry, mba);
963
964   if (mac->sbit == 8) {
965     mac->start++;
966 //     mac->end++;
967     mac->sbit = 0;
968   }
969
970   GST_LOG ("current_pos:%p, end:%p, rest_bits:%d, window:%x",
971       mac->start, mac->end, macroblock->ebit, context->window);
972
973   /* macroblock isn't needed anymore */
974   gst_rtp_h263_pay_mb_destroy (macroblock);
975
976   GST_LOG ("Current pos after COD: %p", mac->end);
977
978   if (context->piclayer->ptype_pictype == 0) {
979     //We have an I frame
980     gint i;
981     guint last;
982     guint ind;
983
984     //Step 2 decode MCBPC I
985     mb_type_index = gst_rtp_h263_pay_decode_mcbpc_I (context->window);
986
987     GST_LOG ("MCBPC index: %d", mb_type_index);
988     if (mb_type_index == -1) {
989       GST_ERROR ("MB index shouldn't be -1 in window: %08x", context->window);
990       goto beach;
991     }
992
993     mac->ebit =
994         gst_rtp_h263_pay_move_window_right (context, mcbpc_I[mb_type_index][2],
995         mac->ebit, &mac->end, &gob->end);
996
997     mac->mb_type = mcbpc_I[mb_type_index][5];
998
999     if (mb_type_index == 8) {
1000       GST_LOG ("Stuffing skipping rest of MB header");
1001       return mac;
1002     }
1003     //Step 3 decode CBPY I
1004     cbpy_type_index = gst_rtp_h263_pay_decode_cbpy (context->window, cbpy_I);
1005
1006     GST_LOG ("CBPY index: %d", cbpy_type_index);
1007     if (cbpy_type_index == -1) {
1008       GST_ERROR ("CBPY index shouldn't be -1 in window: %08x", context->window);
1009       goto beach;
1010     }
1011
1012     mac->ebit =
1013         gst_rtp_h263_pay_move_window_right (context, cbpy_I[cbpy_type_index][2],
1014         mac->ebit, &mac->end, &gob->end);
1015
1016     //Step 4 decode rest of MB
1017     //MB type 1 and 4 have DQUANT - we store it for packaging purposes
1018     if (mcbpc_I[mb_type_index][5] == 4) {
1019       GST_LOG ("Shifting DQUANT");
1020
1021       mac->quant = (context->window >> 30);
1022
1023       mac->ebit =
1024           gst_rtp_h263_pay_move_window_right (context, 2, mac->ebit, &mac->end,
1025           &gob->end);
1026     }
1027     //Step 5 go trough the blocks - decode DC and TCOEF
1028     last = 0;
1029     for (i = 0; i < N_BLOCKS; i++) {
1030
1031       GST_LOG ("Decoding INTRADC and TCOEF, i:%d", i);
1032       mac->ebit =
1033           gst_rtp_h263_pay_move_window_right (context, 8, mac->ebit, &mac->end,
1034           &gob->end);
1035
1036       if (i > 3) {
1037         ind = mcbpc_I[mb_type_index][i - 1];
1038       } else {
1039         ind = cbpy_I[cbpy_type_index][i + 3];
1040       }
1041
1042       if (ind == 1) {
1043         while (last == 0) {
1044           tcoef_type_index = gst_rtp_h263_pay_decode_tcoef (context->window);
1045
1046           GST_LOG ("TCOEF index: %d", tcoef_type_index);
1047           if (tcoef_type_index == -1) {
1048             GST_ERROR ("TCOEF index shouldn't be -1 in window: %08x",
1049                 context->window);
1050             goto beach;
1051           }
1052           mac->ebit =
1053               gst_rtp_h263_pay_move_window_right (context,
1054               tcoef[tcoef_type_index][2], mac->ebit, &mac->end, &gob->end);
1055
1056           last = tcoef[tcoef_type_index][3];
1057           if (tcoef_type_index == 102) {
1058             if ((context->window & 0x80000000) == 0x80000000)
1059               last = 1;
1060             else
1061               last = 0;
1062
1063             mac->ebit =
1064                 gst_rtp_h263_pay_move_window_right (context, 15,
1065                 mac->ebit, &mac->end, &gob->end);
1066           }
1067         }
1068         last = 0;
1069       }
1070     }
1071
1072   } else {
1073     //We have a P frame
1074     guint i;
1075     guint last;
1076     guint ind;
1077
1078     //Step 1 check COD
1079     GST_LOG ("Checking for COD");
1080     if ((context->window & 0x80000000) == 0x80000000) {
1081       //The MB is not coded
1082       mac->ebit =
1083           gst_rtp_h263_pay_move_window_right (context, 1, mac->ebit, &mac->end,
1084           &gob->end);
1085       GST_LOG ("COOOOOOOOOOOD = 1");
1086
1087       return mac;
1088     } else {
1089       //The MB is coded
1090       mac->ebit =
1091           gst_rtp_h263_pay_move_window_right (context, 1, mac->ebit, &mac->end,
1092           &gob->end);
1093     }
1094
1095     //Step 2 decode MCBPC P
1096     mb_type_index = gst_rtp_h263_pay_decode_mcbpc_P (context->window);
1097
1098     GST_LOG ("MCBPC index: %d", mb_type_index);
1099     if (mb_type_index == -1) {
1100       GST_ERROR ("MB index shouldn't be -1 in window: %08x", context->window);
1101       goto beach;
1102     }
1103     mac->ebit =
1104         gst_rtp_h263_pay_move_window_right (context, mcbpc_P[mb_type_index][2],
1105         mac->ebit, &mac->end, &gob->end);
1106
1107     mac->mb_type = mcbpc_P[mb_type_index][5];
1108
1109     if (mb_type_index == 20) {
1110       GST_LOG ("Stuffing skipping rest of MB header");
1111       return mac;
1112     }
1113     //Step 3 decode CBPY P
1114     cbpy_type_index = gst_rtp_h263_pay_decode_cbpy (context->window, cbpy_P);
1115
1116     GST_LOG ("CBPY index: %d", cbpy_type_index);
1117     if (cbpy_type_index == -1) {
1118       GST_ERROR ("CBPY index shouldn't be -1 in window: %08x", context->window);
1119       goto beach;
1120     }
1121     mac->ebit =
1122         gst_rtp_h263_pay_move_window_right (context, cbpy_P[cbpy_type_index][2],
1123         mac->ebit, &mac->end, &gob->end);
1124
1125     //MB type 1 and 4 have DQUANT - we add it to MB object and jump over
1126     if (mcbpc_P[mb_type_index][5] == 4 || mcbpc_P[mb_type_index][5] == 1) {
1127       GST_LOG ("Shifting DQUANT");
1128
1129       mac->quant = context->window >> 30;
1130
1131       mac->ebit =
1132           gst_rtp_h263_pay_move_window_right (context, 2, mac->ebit, &mac->end,
1133           &gob->end);
1134     }
1135     //MB types < 3 have MVD1-4
1136     if (mcbpc_P[mb_type_index][5] < 3) {
1137
1138       guint nmvd;
1139       gint j;
1140
1141       nmvd = 2;
1142       if (mcbpc_P[mb_type_index][5] == 2)
1143         nmvd = 8;
1144
1145       for (j = 0; j < nmvd; j++) {
1146         guint mvd_type;
1147
1148         mvd_type = gst_rtp_h263_pay_decode_mvd (context->window);
1149
1150         if (mvd_type == -1) {
1151           GST_ERROR ("MVD1-4 index shouldn't be -1 in window: %08x",
1152               context->window);
1153           goto beach;
1154         }
1155         //set the MB mvd values
1156         mac->mvd[j] = mvd[mvd_type][3];
1157
1158         mac->ebit =
1159             gst_rtp_h263_pay_move_window_right (context, mvd[mvd_type][2],
1160             mac->ebit, &mac->end, &gob->end);
1161       }
1162
1163
1164     }
1165     //Step 5 go trough the blocks - decode DC and TCOEF
1166     last = 0;
1167     for (i = 0; i < N_BLOCKS; i++) {
1168
1169       //if MB type 3 or 4 then INTRADC coef are present in blocks
1170       if (mcbpc_P[mb_type_index][5] > 2) {
1171         GST_LOG ("INTRADC coef: %d", i);
1172         mac->ebit =
1173             gst_rtp_h263_pay_move_window_right (context, 8, mac->ebit,
1174             &mac->end, &gob->end);
1175       } else {
1176         GST_LOG ("INTRADC coef is not present");
1177       }
1178
1179       //check if the block has TCOEF
1180       if (i > 3) {
1181         ind = mcbpc_P[mb_type_index][i - 1];
1182       } else {
1183         if (mcbpc_P[mb_type_index][5] > 2) {
1184           ind = cbpy_I[cbpy_type_index][i + 3];
1185         } else {
1186           ind = cbpy_P[cbpy_type_index][i + 3];
1187         }
1188       }
1189
1190       if (ind == 1) {
1191         while (last == 0) {
1192           tcoef_type_index = gst_rtp_h263_pay_decode_tcoef (context->window);
1193
1194           GST_LOG ("TCOEF index: %d", tcoef_type_index);
1195           if (tcoef_type_index == -1) {
1196             GST_ERROR ("TCOEF index shouldn't be -1 in window: %08x",
1197                 context->window);
1198             goto beach;
1199           }
1200
1201           mac->ebit =
1202               gst_rtp_h263_pay_move_window_right (context,
1203               tcoef[tcoef_type_index][2], mac->ebit, &mac->end, &gob->end);
1204
1205           last = tcoef[tcoef_type_index][3];
1206           if (tcoef_type_index == 102) {
1207             if ((context->window & 0x80000000) == 0x80000000)
1208               last = 1;
1209             else
1210               last = 0;
1211
1212             mac->ebit =
1213                 gst_rtp_h263_pay_move_window_right (context, 15,
1214                 mac->ebit, &mac->end, &gob->end);
1215           }
1216         }
1217         last = 0;
1218       }
1219     }
1220   }
1221
1222   mac->length = mac->end - mac->start + 1;
1223
1224   return mac;
1225
1226 beach:
1227   return NULL;
1228 }
1229
1230 static GstRtpH263PayMB *
1231 gst_rtp_h263_pay_mb_new (GstRtpH263PayBoundry * boundry, guint mba)
1232 {
1233   GstRtpH263PayMB *mb;
1234   gint i;
1235
1236   mb = (GstRtpH263PayMB *) g_malloc0 (sizeof (GstRtpH263PayMB));
1237
1238   mb->start = boundry->start;
1239   mb->end = boundry->end;
1240   mb->length = boundry->end - boundry->start + 1;
1241   mb->sbit = boundry->sbit;
1242   mb->ebit = boundry->ebit;
1243   mb->mba = mba;
1244
1245   for (i = 0; i < 5; i++)
1246     mb->mvd[i] = 0;
1247
1248   return mb;
1249 }
1250
1251 static void
1252 gst_rtp_h263_pay_mb_destroy (GstRtpH263PayMB * mb)
1253 {
1254   if (!mb)
1255     return;
1256
1257   g_free (mb);
1258 }
1259
1260 static GstFlowReturn
1261 gst_rtp_h263_pay_push (GstRtpH263Pay * rtph263pay,
1262     GstRtpH263PayContext * context, GstRtpH263PayPackage * package)
1263 {
1264
1265   /*
1266    * Splat the payload header values
1267    */
1268   guint8 *header;
1269   GstFlowReturn ret;
1270   GstRTPBuffer rtp = { NULL };
1271
1272   gst_rtp_buffer_map (package->outbuf, GST_MAP_WRITE, &rtp);
1273
1274   header = gst_rtp_buffer_get_payload (&rtp);
1275
1276   switch (package->mode) {
1277     case GST_RTP_H263_PAYLOAD_HEADER_MODE_A:
1278       GST_LOG ("Pushing A packet");
1279       gst_rtp_h263_pay_splat_header_A (header, package, context->piclayer);
1280       break;
1281     case GST_RTP_H263_PAYLOAD_HEADER_MODE_B:
1282       GST_LOG ("Pushing B packet");
1283       gst_rtp_h263_pay_splat_header_B (header, package, context->piclayer);
1284       break;
1285     case GST_RTP_H263_PAYLOAD_HEADER_MODE_C:
1286       //gst_rtp_h263_pay_splat_header_C(header, package, context->piclayer);
1287       //break;
1288     default:
1289       return GST_FLOW_ERROR;
1290   }
1291
1292   /*
1293    * timestamp the buffer
1294    */
1295   GST_BUFFER_PTS (package->outbuf) = rtph263pay->first_ts;
1296
1297   gst_rtp_buffer_set_marker (&rtp, package->marker);
1298   if (package->marker)
1299     GST_DEBUG ("Marker set!");
1300
1301   gst_rtp_buffer_unmap (&rtp);
1302
1303   /*
1304    * Copy the payload data in the buffer
1305    */
1306   GST_DEBUG ("Copying memory");
1307   gst_buffer_copy_into (package->outbuf, rtph263pay->current_buffer,
1308       GST_BUFFER_COPY_MEMORY, package->payload_start - rtph263pay->map.data,
1309       package->payload_len);
1310   gst_rtp_copy_meta (GST_ELEMENT_CAST (rtph263pay), package->outbuf,
1311       rtph263pay->current_buffer,
1312       g_quark_from_static_string (GST_META_TAG_VIDEO_STR));
1313
1314   ret =
1315       gst_rtp_base_payload_push (GST_RTP_BASE_PAYLOAD (rtph263pay),
1316       package->outbuf);
1317   GST_DEBUG ("Package pushed, returning");
1318
1319   gst_rtp_h263_pay_package_destroy (package);
1320
1321   return ret;
1322 }
1323
1324 static GstFlowReturn
1325 gst_rtp_h263_pay_A_fragment_push (GstRtpH263Pay * rtph263pay,
1326     GstRtpH263PayContext * context, guint first, guint last)
1327 {
1328
1329   GstRtpH263PayPackage *pack;
1330
1331   pack = gst_rtp_h263_pay_package_new_empty ();
1332
1333   pack->payload_start = context->gobs[first]->start;
1334   pack->sbit = context->gobs[first]->sbit;
1335   pack->ebit = context->gobs[last]->ebit;
1336   pack->payload_len =
1337       (context->gobs[last]->end - context->gobs[first]->start) + 1;
1338   pack->marker = FALSE;
1339
1340   if (last == context->no_gobs - 1) {
1341     pack->marker = TRUE;
1342   }
1343
1344   pack->gobn = context->gobs[first]->gobn;
1345   pack->mode = GST_RTP_H263_PAYLOAD_HEADER_MODE_A;
1346   pack->outbuf = gst_rtp_buffer_new_allocate (pack->mode, 0, 0);
1347
1348   GST_DEBUG ("Sending len:%d data to push function", pack->payload_len);
1349
1350   return gst_rtp_h263_pay_push (rtph263pay, context, pack);
1351 }
1352
1353 static GstFlowReturn
1354 gst_rtp_h263_pay_B_fragment_push (GstRtpH263Pay * rtph263pay,
1355     GstRtpH263PayContext * context, GstRtpH263PayGob * gob, guint first,
1356     guint last, GstRtpH263PayBoundry * boundry)
1357 {
1358
1359   GstRtpH263PayPackage *pack;
1360   guint mv;
1361
1362   pack = gst_rtp_h263_pay_package_new_empty ();
1363
1364   pack->payload_start = gob->macroblocks[first]->start;
1365   pack->sbit = gob->macroblocks[first]->sbit;
1366   if (first == 0) {
1367     pack->payload_start = boundry->start;
1368     pack->sbit = boundry->sbit;
1369     pack->quant = gob->quant;
1370   } else {
1371     pack->quant = gob->macroblocks[first]->quant;
1372   }
1373   pack->payload_end = gob->macroblocks[last]->end;
1374
1375   pack->ebit = gob->macroblocks[last]->ebit;
1376   pack->mba = gob->macroblocks[first]->mba;
1377   pack->gobn = gob->gobn;
1378   pack->mode = GST_RTP_H263_PAYLOAD_HEADER_MODE_B;
1379   pack->nmvd = 0;
1380
1381   if (gob->macroblocks[first]->mb_type < 3) {
1382     if (gob->macroblocks[first]->mb_type == 2)
1383       pack->nmvd = 8;
1384     else if (gob->macroblocks[first]->mb_type < 2)
1385       pack->nmvd = 2;
1386
1387     for (mv = 0; mv < pack->nmvd; mv++)
1388       pack->mvd[mv] = gob->macroblocks[first]->mvd[mv];
1389   }
1390
1391   pack->marker = FALSE;
1392   if (last == gob->nmacroblocs - 1) {
1393     pack->ebit = 0;
1394   }
1395
1396   if ((format_props[context->piclayer->ptype_srcformat][0] - 1 == gob->gobn)
1397       && (last == gob->nmacroblocs - 1)) {
1398     pack->marker = TRUE;
1399   }
1400
1401   pack->payload_len = pack->payload_end - pack->payload_start + 1;
1402   pack->outbuf = gst_rtp_buffer_new_allocate (pack->mode, 0, 0);
1403
1404   return gst_rtp_h263_pay_push (rtph263pay, context, pack);
1405 }
1406
1407
1408 static gboolean
1409 gst_rtp_h263_pay_mode_B_fragment (GstRtpH263Pay * rtph263pay,
1410     GstRtpH263PayContext * context, GstRtpH263PayGob * gob)
1411 {
1412
1413
1414     /*---------- MODE B MODE FRAGMENTATION ----------*/
1415   GstRtpH263PayMB *mac, *mac0;
1416   guint max_payload_size;
1417   GstRtpH263PayBoundry boundry;
1418   guint mb;
1419   guint8 ebit;
1420
1421   guint first = 0;
1422   guint payload_len;
1423
1424   max_payload_size =
1425       context->mtu - GST_RTP_H263_PAYLOAD_HEADER_MODE_B - GST_RTP_HEADER_LEN;
1426
1427   gst_rtp_h263_pay_boundry_init (&boundry, gob->start, gob->start, gob->sbit,
1428       0);
1429
1430   gob->macroblocks =
1431       (GstRtpH263PayMB **) g_malloc0 (sizeof (GstRtpH263PayMB *) *
1432       format_props[context->piclayer->ptype_srcformat][1]);
1433
1434   GST_LOG ("GOB isn't PB frame, applying mode B");
1435
1436   //initializing window
1437   context->win_end = boundry.end;
1438   if (gst_rtp_h263_pay_move_window_right (context, 32, boundry.ebit,
1439           &boundry.end, &gob->end) != 0) {
1440     GST_ERROR
1441         ("The rest of the bits should be 0, exiting, because something bad happend");
1442     goto decode_error;
1443   }
1444   //The first GOB of a frame "has no" actual header - PICTURE header is his header
1445   if (gob->gobn == 0) {
1446     guint shift;
1447     GST_LOG ("Initial GOB");
1448     shift = 43;
1449
1450     boundry.ebit =
1451         gst_rtp_h263_pay_move_window_right (context, shift, boundry.ebit,
1452         &boundry.end, &gob->end);
1453
1454     //We need PQUANT for mode B packages - so we store it
1455     gob->quant = context->window >> 27;
1456
1457     //if PCM == 1, then PSBI is present - header has 51 bits
1458     //shift for PQUANT (5) and PCM (1) = 6 bits
1459     shift = 6;
1460     if (context->cpm == 1)
1461       shift += 2;
1462     boundry.ebit =
1463         gst_rtp_h263_pay_move_window_right (context, shift, boundry.ebit,
1464         &boundry.end, &gob->end);
1465
1466     GST_DEBUG ("window: 0x%08x", context->window);
1467
1468     //Shifting the PEI and PSPARE fields
1469     while ((context->window & 0x80000000) == 0x80000000) {
1470       boundry.ebit =
1471           gst_rtp_h263_pay_move_window_right (context, 9,
1472           boundry.ebit, &boundry.end, &gob->end);
1473       GST_LOG ("window: 0x%x", context->window);
1474     }
1475
1476     //shift the last PEI field
1477     boundry.ebit =
1478         gst_rtp_h263_pay_move_window_right (context, 1, boundry.ebit,
1479         &boundry.end, &gob->end);
1480
1481   } else {
1482     //skipping GOBs 24 header bits + 5 GQUANT
1483     guint shift = 24;
1484
1485     GST_LOG ("INTER GOB");
1486
1487     //if CPM == 1, there are 2 more bits in the header - GSBI header is 31 bits long
1488     if (context->cpm == 1)
1489       shift += 2;
1490
1491     GST_LOG ("window: 0x%x", context->window);
1492     boundry.ebit =
1493         gst_rtp_h263_pay_move_window_right (context, shift,
1494         boundry.ebit, &boundry.end, &gob->end);
1495
1496     //We need GQUANT for mode B packages - so we store it
1497     gob->quant = context->window >> 27;
1498
1499     shift = 5;
1500     boundry.ebit =
1501         gst_rtp_h263_pay_move_window_right (context, shift,
1502         boundry.ebit, &boundry.end, &gob->end);
1503
1504     GST_LOG ("window: 0x%x", context->window);
1505   }
1506
1507   GST_DEBUG ("GQUANT IS: %08x", gob->quant);
1508
1509   // We are on MB layer
1510
1511   mac = mac0 = gst_rtp_h263_pay_mb_new (&boundry, 0);
1512   for (mb = 0; mb < format_props[context->piclayer->ptype_srcformat][1]; mb++) {
1513
1514     GST_LOG ("================ START MB %d =================", mb);
1515
1516     //Find next macroblock boundaries
1517     ebit = mac->ebit;
1518     if (!(mac = gst_rtp_h263_pay_B_mbfinder (context, gob, mac, mb))) {
1519
1520       GST_LOG ("Error decoding MB - sbit: %d", 8 - ebit);
1521       GST_ERROR ("Error decoding in GOB");
1522
1523       gst_rtp_h263_pay_mb_destroy (mac0);
1524       goto decode_error;
1525     }
1526
1527     gst_rtp_h263_pay_mb_destroy (gob->macroblocks[mb]);
1528     gob->macroblocks[mb] = mac;
1529
1530     //If mb_type == stuffing, don't increment the mb address
1531     if (mac->mb_type == 10) {
1532       mb--;
1533       continue;
1534     } else {
1535       gob->nmacroblocs++;
1536     }
1537
1538     if (mac->end >= gob->end) {
1539       GST_LOG ("No more MBs in this GOB");
1540       if (!mac->ebit) {
1541         mac->end--;
1542       }
1543       gob->end = mac->end;
1544       break;
1545     }
1546     GST_DEBUG ("Found MB: mba: %d start: %p end: %p len: %d sbit: %d ebit: %d",
1547         mac->mba, mac->start, mac->end, mac->length, mac->sbit, mac->ebit);
1548     GST_LOG ("================ END MB %d =================", mb);
1549   }
1550   gst_rtp_h263_pay_mb_destroy (mac0);
1551
1552   mb = 0;
1553   first = 0;
1554   payload_len = boundry.end - boundry.start + 1;
1555   GST_DEBUG ("------------------------- NEW PACKAGE ----------------------");
1556   while (mb < gob->nmacroblocs) {
1557     if (payload_len + gob->macroblocks[mb]->length < max_payload_size) {
1558
1559       //FIXME: payload_len is not the real length -> ignoring sbit/ebit
1560       payload_len += gob->macroblocks[mb]->length;
1561       mb++;
1562
1563     } else {
1564       //FIXME: we should include the last few bits of the GOB in the package - do we do that now?
1565       //GST_DEBUG ("Pushing GOBS %d to %d because payload size is %d", first,
1566       //    first == mb - 1, payload_len);
1567
1568       // FIXME: segfault if mb == 0 (first MB is larger than max_payload_size)
1569       GST_DEBUG ("Push B mode fragment from mb %d to %d", first, mb - 1);
1570       if (gst_rtp_h263_pay_B_fragment_push (rtph263pay, context, gob, first,
1571               mb - 1, &boundry)) {
1572         GST_ERROR ("Oooops, there was an error sending");
1573         goto decode_error;
1574       }
1575
1576       payload_len = 0;
1577       first = mb;
1578       GST_DEBUG
1579           ("------------------------- END PACKAGE ----------------------");
1580       GST_DEBUG
1581           ("------------------------- NEW PACKAGE ----------------------");
1582     }
1583   }
1584
1585   /* Push rest */
1586   GST_DEBUG ("Remainder first: %d, MB: %d", first, mb);
1587   if (payload_len != 0) {
1588     GST_DEBUG ("Push B mode fragment from mb %d to %d", first, mb - 1);
1589     if (gst_rtp_h263_pay_B_fragment_push (rtph263pay, context, gob, first,
1590             mb - 1, &boundry)) {
1591       GST_ERROR ("Oooops, there was an error sending!");
1592       goto decode_error;
1593     }
1594   }
1595
1596     /*---------- END OF MODE B FRAGMENTATION ----------*/
1597
1598   return TRUE;
1599
1600 decode_error:
1601   return FALSE;
1602 }
1603
1604 static GstFlowReturn
1605 gst_rtp_h263_send_entire_frame (GstRtpH263Pay * rtph263pay,
1606     GstRtpH263PayContext * context)
1607 {
1608   GstRtpH263PayPackage *pack;
1609   pack =
1610       gst_rtp_h263_pay_package_new (rtph263pay->data,
1611       rtph263pay->data + rtph263pay->available_data,
1612       rtph263pay->available_data, 0, 0, NULL, TRUE);
1613   pack->mode = GST_RTP_H263_PAYLOAD_HEADER_MODE_A;
1614
1615   GST_DEBUG ("Available data: %d", rtph263pay->available_data);
1616
1617   pack->outbuf =
1618       gst_rtp_buffer_new_allocate (GST_RTP_H263_PAYLOAD_HEADER_MODE_A, 0, 0);
1619
1620   return gst_rtp_h263_pay_push (rtph263pay, context, pack);
1621 }
1622
1623 static GstFlowReturn
1624 gst_rtp_h263_pay_flush (GstRtpH263Pay * rtph263pay)
1625 {
1626
1627   /*
1628    * FIXME: GSTUF bits are ignored right now,
1629    *  - not using EBIT/SBIT payload header fields in mode A fragmentation - ffmpeg doesn't need them, but others?
1630    */
1631
1632   GstFlowReturn ret;
1633   GstRtpH263PayContext *context;
1634   gint i;
1635
1636   ret = 0;
1637   context = (GstRtpH263PayContext *) g_malloc0 (sizeof (GstRtpH263PayContext));
1638   context->mtu =
1639       rtph263pay->payload.mtu - (MTU_SECURITY_OFFSET + GST_RTP_HEADER_LEN +
1640       GST_RTP_H263_PAYLOAD_HEADER_MODE_C);
1641
1642   GST_DEBUG ("MTU: %d", context->mtu);
1643   rtph263pay->available_data = gst_buffer_get_size (rtph263pay->current_buffer);
1644   if (rtph263pay->available_data == 0) {
1645     ret = GST_FLOW_OK;
1646     goto end;
1647   }
1648
1649   /* Get a pointer to all the data for the frame */
1650   gst_buffer_map (rtph263pay->current_buffer, &rtph263pay->map, GST_MAP_READ);
1651   rtph263pay->data = (guint8 *) rtph263pay->map.data;
1652
1653   /* Picture header */
1654   context->piclayer = (GstRtpH263PayPic *) rtph263pay->data;
1655
1656   if (context->piclayer->ptype_pictype == 0)
1657     GST_DEBUG ("We got an I-frame");
1658   else
1659     GST_DEBUG ("We got a P-frame");
1660
1661   context->cpm = rtph263pay->data[6] >> 7;
1662
1663   GST_DEBUG ("CPM: %d", context->cpm);
1664
1665   GST_DEBUG ("Payload length is: %d", rtph263pay->available_data);
1666
1667   /*
1668    * - MODE A - If normal, I and P frames,  -> mode A
1669    *   - GOB layer fragmentation
1670    * - MODE B - If normal, I and P frames, but GOBs > mtu
1671    *   - MB layer fragmentation
1672    * - MODE C - For P frames with PB option, but GOBs > mtu
1673    *   - MB layer fragmentation
1674    */
1675   if (rtph263pay->available_data + GST_RTP_H263_PAYLOAD_HEADER_MODE_A +
1676       GST_RTP_HEADER_LEN < context->mtu) {
1677     ret = gst_rtp_h263_send_entire_frame (rtph263pay, context);
1678   } else {
1679
1680       /*---------- FRAGMENTING THE FRAME BECAUSE TOO LARGE TO FIT IN MTU ----------*/
1681     GstRtpH263PayBoundry bound;
1682     gint first;
1683     guint payload_len;
1684     gboolean forcea = FALSE;
1685
1686     GST_DEBUG ("Frame too large for MTU");
1687     /*
1688      * Let's go trough all the data and fragment it untill end is reached
1689      */
1690
1691     gst_rtp_h263_pay_boundry_init (&bound, NULL, rtph263pay->data - 1, 0, 0);
1692     context->gobs =
1693         (GstRtpH263PayGob **) g_malloc0 (format_props[context->
1694             piclayer->ptype_srcformat][0] * sizeof (GstRtpH263PayGob *));
1695
1696
1697     for (i = 0; i < format_props[context->piclayer->ptype_srcformat][0]; i++) {
1698       GST_DEBUG ("Searching for gob %d", i);
1699       if (!gst_rtp_h263_pay_gobfinder (rtph263pay, &bound)) {
1700         if (i <= 1) {
1701           GST_WARNING
1702               ("No GOB's were found in data stream! Please enable RTP mode in encoder. Forcing mode A for now.");
1703           ret = gst_rtp_h263_send_entire_frame (rtph263pay, context);
1704           goto end;
1705         } else {
1706           /* try to send fragments corresponding to found GOBs */
1707           forcea = TRUE;
1708           break;
1709         }
1710       }
1711
1712       context->gobs[i] = gst_rtp_h263_pay_gob_new (&bound, i);
1713       //FIXME - encoders may generate an EOS gob that has to be processed
1714       GST_DEBUG
1715           ("Gob values are: gobn: %d, start: %p len: %d ebit: %d sbit: %d", i,
1716           context->gobs[i]->start, context->gobs[i]->length,
1717           context->gobs[i]->ebit, context->gobs[i]->sbit);
1718     }
1719     /* NOTE some places may still assume this to be the max possible */
1720     context->no_gobs = i;
1721     GST_DEBUG ("Found %d GOBS of maximum %d",
1722         context->no_gobs, format_props[context->piclayer->ptype_srcformat][0]);
1723
1724     // Make packages smaller than MTU
1725     //   A mode
1726     // - if ( GOB > MTU) -> B mode || C mode
1727     //   Push packages
1728
1729     first = 0;
1730     payload_len = 0;
1731     i = 0;
1732     while (i < context->no_gobs) {
1733
1734       if (context->gobs[i]->length >= context->mtu) {
1735         if (payload_len == 0) {
1736
1737           GST_DEBUG ("GOB len > MTU");
1738           if (rtph263pay->prop_payload_mode || forcea) {
1739             payload_len = context->gobs[i]->length;
1740             goto force_a;
1741           }
1742           if (!context->piclayer->ptype_pbmode) {
1743             GST_DEBUG ("MODE B on GOB %d needed", i);
1744             if (!gst_rtp_h263_pay_mode_B_fragment (rtph263pay, context,
1745                     context->gobs[i])) {
1746               GST_ERROR ("There was an error fragmenting in mode B");
1747               ret = GST_FLOW_ERROR;
1748               goto end;
1749             }
1750           } else {
1751             //IMPLEMENT C mode
1752             GST_ERROR ("MODE C on GOB %d needed, but not supported yet", i);
1753             /*if(!gst_rtp_h263_pay_mode_C_fragment(rtph263pay, context, context->gobs[i])) {
1754                ret = GST_FLOW_OK;
1755                GST_ERROR("There was an error fragmenting in mode C");
1756                goto decode_error;
1757                } */
1758             goto decode_error;
1759           }
1760         decode_error:
1761           i++;
1762           first = i;
1763           continue;
1764
1765         } else {
1766           goto payload_a_push;
1767         }
1768       }
1769
1770       if (payload_len + context->gobs[i]->length < context->mtu) {
1771         GST_DEBUG ("GOB %d fills mtu", i);
1772         payload_len += context->gobs[i]->length;
1773         i++;
1774         if (i == context->no_gobs) {
1775           GST_DEBUG ("LAST GOB %d", i);
1776           goto payload_a_push;
1777         }
1778
1779       } else {
1780       payload_a_push:
1781         GST_DEBUG ("Pushing GOBS %d to %d because payload size is %d", first,
1782             first == i ? i : i - 1, payload_len);
1783         gst_rtp_h263_pay_A_fragment_push (rtph263pay, context, first,
1784             first == i ? i : i - 1);
1785         payload_len = 0;
1786         first = i;
1787       }
1788       continue;
1789
1790     force_a:
1791       GST_DEBUG ("Pushing GOBS %d to %d because payload size is %d", first, i,
1792           payload_len);
1793       gst_rtp_h263_pay_A_fragment_push (rtph263pay, context, first, i);
1794       payload_len = 0;
1795       i++;
1796       first = i;
1797     }
1798
1799
1800   }/*---------- END OF FRAGMENTATION ----------*/
1801
1802   /* Flush the input buffer data */
1803
1804 end:
1805   gst_rtp_h263_pay_context_destroy (context,
1806       context->piclayer->ptype_srcformat);
1807   gst_buffer_unmap (rtph263pay->current_buffer, &rtph263pay->map);
1808   gst_buffer_replace (&rtph263pay->current_buffer, NULL);
1809
1810   return ret;
1811 }
1812
1813 static GstFlowReturn
1814 gst_rtp_h263_pay_handle_buffer (GstRTPBasePayload * payload, GstBuffer * buffer)
1815 {
1816
1817   GstRtpH263Pay *rtph263pay;
1818   GstFlowReturn ret;
1819
1820   GST_DEBUG ("-------------------- NEW FRAME ---------------");
1821   rtph263pay = GST_RTP_H263_PAY (payload);
1822
1823   rtph263pay->first_ts = GST_BUFFER_PTS (buffer);
1824
1825   gst_buffer_replace (&rtph263pay->current_buffer, buffer);
1826   gst_buffer_unref (buffer);
1827
1828   /* we always encode and flush a full picture */
1829   ret = gst_rtp_h263_pay_flush (rtph263pay);
1830   GST_DEBUG ("-------------------- END FRAME ---------------");
1831
1832   return ret;
1833 }
1834
1835 gboolean
1836 gst_rtp_h263_pay_plugin_init (GstPlugin * plugin)
1837 {
1838   return gst_element_register (plugin, "rtph263pay",
1839       GST_RANK_SECONDARY, GST_TYPE_RTP_H263_PAY);
1840 }