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