summaryrefslogtreecommitdiff
path: root/gst/rtp/gstrtph263pay.h
blob: c77e6ac15ab7e6bc729e9a16f1a3b7c5fbb9ee41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
/* GStreamer
 * Copyright (C) <2005> Wim Taymans <wim.taymans@gmail.com>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library; if not, write to the
 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 *
 * Author: Dejan Sakelsak sahel@kiberpipa.org
 */

#ifndef __GST_RTP_H263_PAY_H__
#define __GST_RTP_H263_PAY_H__

#include <gst/gst.h>
#include <gst/rtp/gstrtpbasepayload.h>

G_BEGIN_DECLS
#define GST_TYPE_RTP_H263_PAY \
  (gst_rtp_h263_pay_get_type())
#define GST_RTP_H263_PAY(obj) \
 (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_RTP_H263_PAY,GstRtpH263Pay))
#define GST_RTP_H263_PAY_CLASS(klass) \
 (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_RTP_H263_PAY,GstRtpH263PayClass))
#define GST_IS_RTP_H263_PAY(obj) \
  (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_RTP_H263_PAY))
#define GST_IS_RTP_H263_PAY_CLASS(klass) \
  (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_RTP_H263_PAY))
// blocks per macroblock
#define N_BLOCKS 6
#define DEFAULT_MODE_A FALSE
#define MTU_SECURITY_OFFSET 50
    typedef enum _GstRtpH263PayHeaderMode
{
  GST_RTP_H263_PAYLOAD_HEADER_MODE_A = 4,
  GST_RTP_H263_PAYLOAD_HEADER_MODE_B = 8,
  GST_RTP_H263_PAYLOAD_HEADER_MODE_C = 12
} GstRtpH263PayHeaderMode;

typedef struct _GstRtpH263PayContext GstRtpH263PayContext;
typedef struct _GstRtpH263PayPic GstRtpH263PayPic;
typedef struct _GstRtpH263PayClass GstRtpH263PayClass;
typedef struct _GstRtpH263Pay GstRtpH263Pay;
typedef struct _GstRtpH263PayBoundry GstRtpH263PayBoundry;
typedef struct _GstRtpH263PayMB GstRtpH263PayMB;
typedef struct _GstRtpH263PayGob GstRtpH263PayGob;
typedef struct _GstRtpH263PayPackage GstRtpH263PayPackage;

//typedef enum _GstRtpH263PayHeaderMode GstRtpH263PayHeaderMode;

struct _GstRtpH263Pay
{
  GstRTPBasePayload payload;

  GstBuffer *current_buffer;
  GstMapInfo map;

  GstClockTime first_ts;
  gboolean prop_payload_mode;
  guint8 *data;
  guint available_data;

};

struct _GstRtpH263PayContext
{
  GstRtpH263PayPic *piclayer;

  guint mtu;
  guint window;
  guint8 *win_end;
  guint8 cpm;

  guint no_gobs;
  GstRtpH263PayGob **gobs;

};

struct _GstRtpH263PayClass
{
  GstRTPBasePayloadClass parent_class;
};

typedef struct _GstRtpH263PayAHeader
{
#if G_BYTE_ORDER == G_LITTLE_ENDIAN
  unsigned int ebit:3;          /* End position */
  unsigned int sbit:3;          /* Start position */
  unsigned int p:1;             /* PB-frames mode */
  unsigned int f:1;             /* flag bit */

  unsigned int r1:1;            /* Reserved */
  unsigned int a:1;             /* Advanced Prediction */
  unsigned int s:1;             /* syntax based arithmetic coding */
  unsigned int u:1;             /* Unrestricted motion vector */
  unsigned int i:1;             /* Picture coding type */
  unsigned int src:3;           /* Source format */

  unsigned int trb:3;           /* Temporal ref for B frame */
  unsigned int dbq:2;           /* Differential Quantisation parameter */
  unsigned int r2:3;            /* Reserved */
#elif G_BYTE_ORDER == G_BIG_ENDIAN
  unsigned int f:1;             /* flag bit */
  unsigned int p:1;             /* PB-frames mode */
  unsigned int sbit:3;          /* Start position */
  unsigned int ebit:3;          /* End position */

  unsigned int src:3;           /* Source format */
  unsigned int i:1;             /* Picture coding type */
  unsigned int u:1;             /* Unrestricted motion vector */
  unsigned int s:1;             /* syntax based arithmetic coding */
  unsigned int a:1;             /* Advanced Prediction */
  unsigned int r1:1;            /* Reserved */

  unsigned int r2:3;            /* Reserved */
  unsigned int dbq:2;           /* Differential Quantisation parameter */
  unsigned int trb:3;           /* Temporal ref for B frame */
#else
#error "G_BYTE_ORDER should be big or little endian."
#endif
  unsigned int tr:8;            /* Temporal ref for P frame */
} GstRtpH263PayAHeader;

typedef struct _GstRtpH263PayBHeader
{
#if G_BYTE_ORDER == G_LITTLE_ENDIAN
  unsigned int ebit:3;          /* End position */
  unsigned int sbit:3;          /* Start position */
  unsigned int p:1;             /* PB-frames mode */
  unsigned int f:1;             /* flag bit */

  unsigned int quant:5;         /* Quantization value for first MB */
  unsigned int src:3;           /* Source format */

  unsigned int mba1:3;          /* Address of first MB starting count from 0 - part1 */
  unsigned int gobn:5;          /* GOB number in effect at start of packet */

  unsigned int r:2;             /* Reserved */
  unsigned int mba2:6;          /* Address of first MB starting count from 0 - part2 */

  unsigned int hmv11:4;         /* horizontal motion vector predictor for MB 1 - part 1 */
  unsigned int a:1;             /* Advanced Prediction */
  unsigned int s:1;             /* syntax based arithmetic coding */
  unsigned int u:1;             /* Unrestricted motion vector */
  unsigned int i:1;             /* Picture coding type */

  unsigned int vmv11:5;         /* vertical motion vector predictor for MB 1 - part 1 */
  unsigned int hmv12:3;         /* horizontal motion vector predictor for MB 1 - part 2 */

  unsigned int hmv21:6;         /* horizontal motion vector predictor for MB 3 - part 1 */
  unsigned int vmv12:2;         /* vertical motion vector predictor for MB 1 - part 2 */

  unsigned int vmv21:7;         /* vertical motion vector predictor for MB 3 */
  unsigned int hmv22:1;         /* horizontal motion vector predictor for MB 3 - part 2 */

#elif G_BYTE_ORDER == G_BIG_ENDIAN
  unsigned int f:1;             /* flag bit */
  unsigned int p:1;             /* PB-frames mode */
  unsigned int sbit:3;          /* Start position */
  unsigned int ebit:3;          /* End position */

  unsigned int src:3;           /* Source format */
  unsigned int quant:5;         /* Quantization value for first MB */

  unsigned int gobn:5;          /* GOB number in effect at start of packet */
  unsigned int mba1:3;          /* Address of first MB starting count from 0 - part1 */

  unsigned int mba2:6;          /* Address of first MB starting count from 0 - part2 */
  unsigned int r:2;             /* Reserved */

  unsigned int i:1;             /* Picture coding type */
  unsigned int u:1;             /* Unrestricted motion vector */
  unsigned int s:1;             /* syntax based arithmetic coding */
  unsigned int a:1;             /* Advanced Prediction */
  unsigned int hmv11:4;         /* horizontal motion vector predictor for MB 1 - part 1 */

  unsigned int hmv12:3;         /* horizontal motion vector predictor for MB 1 - part 2 */
  unsigned int vmv11:5;         /* vertical motion vector predictor for MB 1 - part 1 */

  unsigned int vmv12:2;         /* vertical motion vector predictor for MB 1 - part 2 */
  unsigned int hmv21:6;         /* horizontal motion vector predictor for MB 3 - part 1 */

  unsigned int hmv22:1;         /* horizontal motion vector predictor for MB 3 - part 2 */
  unsigned int vmv21:7;          /* vertical motion vector predictor for MB 3 */
#else
#error "G_BYTE_ORDER should be big or little endian."
#endif
} GstRtpH263PayBHeader;

typedef struct _GstRtpH263PayCHeader
{
#if G_BYTE_ORDER == G_LITTLE_ENDIAN
  unsigned int ebit:3;          /* End position */
  unsigned int sbit:3;          /* Start position */
  unsigned int p:1;             /* PB-frames mode */
  unsigned int f:1;             /* flag bit */

  unsigned int quant:5;         /* Quantization value for first MB */
  unsigned int src:3;           /* Source format */

  unsigned int mba1:3;          /* Address of first MB starting count from 0 - part1 */
  unsigned int gobn:5;          /* GOB number in effect at start of packet */

  unsigned int r:2;             /* Reserved */
  unsigned int mba2:6;          /* Address of first MB starting count from 0 - part2 */

  unsigned int hmv11:4;         /* horizontal motion vector predictor for MB 1 - part 1 */
  unsigned int a:1;             /* Advanced Prediction */
  unsigned int s:1;             /* syntax based arithmetic coding */
  unsigned int u:1;             /* Unrestricted motion vector */
  unsigned int i:1;             /* Picture coding type */

  unsigned int vmv11:5;         /* vertical motion vector predictor for MB 1 - part 1 */
  unsigned int hmv12:3;         /* horizontal motion vector predictor for MB 1 - part 2 */

  unsigned int hmv21:6;         /* horizontal motion vector predictor for MB 3 - part 1 */
  unsigned int vmv12:2;         /* vertical motion vector predictor for MB 1 - part 2 */

  unsigned int vmv21:7;         /* vertical motion vector predictor for MB 3 */
  unsigned int hmv22:1;         /* horizontal motion vector predictor for MB 3 - part 2 */

  unsigned int rr1:8;           /* reserved */

  unsigned int rr2:8;           /* reserved */

  unsigned int trb:3;           /* Temporal Reference for the B */
  unsigned int dbq:2;           /* Differential quantization parameter */
  unsigned int rr3:3;           /* reserved */

  unsigned int tr:8;            /* Temporal Reference for the P frame */

#elif G_BYTE_ORDER == G_BIG_ENDIAN
  unsigned int f:1;             /* flag bit */
  unsigned int p:1;             /* PB-frames mode */
  unsigned int sbit:3;          /* Start position */
  unsigned int ebit:3;          /* End position */

  unsigned int src:3;           /* Source format */
  unsigned int quant:5;         /* Quantization value for first MB */

  unsigned int gobn:5;          /* GOB number in effect at start of packet */
  unsigned int mba1:3;          /* Address of first MB starting count from 0 - part1 */

  unsigned int mba2:6;          /* Address of first MB starting count from 0 - part2 */
  unsigned int r:2;             /* Reserved */

  unsigned int i:1;             /* Picture coding type */
  unsigned int u:1;             /* Unrestricted motion vector */
  unsigned int s:1;             /* syntax based arithmetic coding */
  unsigned int a:1;             /* Advanced Prediction */
  unsigned int hmv11:4;         /* horizontal motion vector predictor for MB 1 - part 1 */

  unsigned int hmv12:3;         /* horizontal motion vector predictor for MB 1 - part 2 */
  unsigned int vmv11:5;         /* vertical motion vector predictor for MB 1 - part 1 */

  unsigned int vmv12:2;         /* vertical motion vector predictor for MB 1 - part 2 */
  unsigned int hmv21:6;         /* horizontal motion vector predictor for MB 3 - part 1 */

  unsigned int hmv22:1;         /* horizontal motion vector predictor for MB 3 - part 2 */
  unsigned int vmv21:7;          /* vertical motion vector predictor for MB 3 */
  unsigned int rr1:8;           /* reserved */
  unsigned int rr2:8;           /* reserved */

  unsigned int rr3:3;           /* reserved */
  unsigned int dbq:2;           /* Differential quantization parameter */
  unsigned int trb:3;           /* Temporal Reference for the B */

  unsigned int tr:8;            /* Temporal Reference for the P frame */
#else
#error "G_BYTE_ORDER should be big or little endian."
#endif
} GstRtpH263PayCHeader;

struct _GstRtpH263PayPic
{
#if G_BYTE_ORDER == G_LITTLE_ENDIAN
  unsigned int psc1:16;

  unsigned int tr1:2;
  unsigned int psc2:6;

  unsigned int ptype_263:1;
  unsigned int ptype_start:1;
  unsigned int tr2:6;

  unsigned int ptype_umvmode:1;
  unsigned int ptype_pictype:1;
  unsigned int ptype_srcformat:3;
  unsigned int ptype_freeze:1;
  unsigned int ptype_camera:1;
  unsigned int ptype_split:1;

  unsigned int pquant:5;
  unsigned int ptype_pbmode:1;
  unsigned int ptype_apmode:1;
  unsigned int ptype_sacmode:1;

#elif G_BYTE_ORDER == G_BIG_ENDIAN
  unsigned int psc1:16;

  unsigned int psc2:6;
  unsigned int tr1:2;

  unsigned int tr2:6;
  unsigned int ptype_start:2;

  unsigned int ptype_split:1;
  unsigned int ptype_camera:1;
  unsigned int ptype_freeze:1;
  unsigned int ptype_srcformat:3;
  unsigned int ptype_pictype:1;
  unsigned int ptype_umvmode:1;

  unsigned int ptype_sacmode:1;
  unsigned int ptype_apmode:1;
  unsigned int ptype_pbmode:1;
  unsigned int pquant:5;

#else
#error "G_BYTE_ORDER should be big or little endian."
#endif
};

struct _GstRtpH263PayBoundry
{

  guint8 *start;
  guint8 *end;
  guint8 sbit;
  guint8 ebit;

};

struct _GstRtpH263PayMB
{
  guint8 *start;
  guint8 *end;
  guint8 sbit;
  guint8 ebit;
  guint length;

  guint8 mb_type;
  guint quant;

  guint mba;
  guint8 mvd[10];
};

struct _GstRtpH263PayGob
{
  guint8 *start;
  guint8 *end;
  guint length;
  guint8 sbit;
  guint8 ebit;

  guint gobn;
  guint quant;

  GstRtpH263PayMB **macroblocks;
  guint nmacroblocs;
};

struct _GstRtpH263PayPackage
{
  guint8 *payload_start;
  guint8 *payload_end;
  guint payload_len;
  guint8 sbit;
  guint8 ebit;
  GstBuffer *outbuf;
  gboolean marker;

  GstRtpH263PayHeaderMode mode;

  /*
   *  mode B,C data
   */

  guint16 mba;
  guint nmvd;
  guint8 mvd[10];
  guint gobn;
  guint quant;
};

#define GST_H263_PICTURELAYER_PLSRC(buf) (((GstRtpH263PayPic *)(buf))->ptype_srcformat)
#define GST_H263_PICTURELAYER_PLTYPE(buf) (((GstRtpH263PayPic *)(buf))->ptype_pictype)
#define GST_H263_PICTURELAYER_PLUMV(buf) (((GstRtpH263PayPic *)(buf))->ptype_umvmode)
#define GST_H263_PICTURELAYER_PLSAC(buf) (((GstRtpH263PayPic *)(buf))->ptype_sacmode)
#define GST_H263_PICTURELAYER_PLAP(buf) (((GstRtpH263PayPic *)(buf))->ptype_apmode)

/*
 * TODO: PB frame relevant tables
 */

#define GST_RTP_H263_PAY_END(start, len) (((guint8 *)start) + ((guint)len))
#define GST_RTP_H263_PAY_GOBN(gob) (((((guint8 *) gob)[2] >> 2) & 0x1f)

GType gst_rtp_h263_pay_get_type (void);

G_END_DECLS
#endif /* __GST_RTP_H263_PAY_H__ */