Merge remote-tracking branch 'origin/master' into 0.11
[platform/upstream/gst-plugins-good.git] / gst / rtp / gstrtpdvdepay.c
1 /* Farsight
2  * Copyright (C) 2006 Marcel Moreaux <marcelm@spacelabs.nl>
3  *           (C) 2008 Wim Taymans <wim.taymans@gmail.com>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 /*
22  * RTP DV depayloader.
23  *
24  * Important note for NTSC-users:
25  *
26  * Because the author uses PAL video, and he does not have proper DV
27  * documentation (the DV format specification is not freely available),
28  * this code may very well contain PAL-specific assumptions.
29  */
30
31 #include <stdlib.h>
32 #include <string.h>
33 #include <gst/gst.h>
34
35 #include "gstrtpdvdepay.h"
36
37 GST_DEBUG_CATEGORY (rtpdvdepay_debug);
38 #define GST_CAT_DEFAULT (rtpdvdepay_debug)
39 /* Filter signals and args */
40 enum
41 {
42   /* FILL ME */
43   LAST_SIGNAL
44 };
45
46 enum
47 {
48   ARG_0,
49 };
50
51 static GstStaticPadTemplate src_factory = GST_STATIC_PAD_TEMPLATE ("src",
52     GST_PAD_SRC,
53     GST_PAD_ALWAYS,
54     GST_STATIC_CAPS ("video/x-dv")
55     );
56
57 static GstStaticPadTemplate sink_factory = GST_STATIC_PAD_TEMPLATE ("sink",
58     GST_PAD_SINK,
59     GST_PAD_ALWAYS,
60     GST_STATIC_CAPS ("application/x-rtp, "
61         "media = (string) { \"video\", \"audio\" },"
62         "payload = (int) " GST_RTP_PAYLOAD_DYNAMIC_STRING ", "
63         "encoding-name = (string) \"DV\", "
64         "clock-rate = (int) 90000,"
65         "encode = (string) { \"SD-VCR/525-60\", \"SD-VCR/625-50\", \"HD-VCR/1125-60\","
66         "\"HD-VCR/1250-50\", \"SDL-VCR/525-60\", \"SDL-VCR/625-50\","
67         "\"306M/525-60\", \"306M/625-50\", \"314M-25/525-60\","
68         "\"314M-25/625-50\", \"314M-50/525-60\", \"314M-50/625-50\" }"
69         /* optional parameters can't go in the template
70          * "audio = (string) { \"bundled\", \"none\" }"
71          */
72     )
73     );
74
75 static GstStateChangeReturn
76 gst_rtp_dv_depay_change_state (GstElement * element, GstStateChange transition);
77
78 static GstBuffer *gst_rtp_dv_depay_process (GstRTPBaseDepayload * base,
79     GstBuffer * in);
80 static gboolean gst_rtp_dv_depay_setcaps (GstRTPBaseDepayload * depayload,
81     GstCaps * caps);
82
83 #define gst_rtp_dv_depay_parent_class parent_class
84 G_DEFINE_TYPE (GstRTPDVDepay, gst_rtp_dv_depay, GST_TYPE_RTP_BASE_DEPAYLOAD);
85
86
87 static void
88 gst_rtp_dv_depay_class_init (GstRTPDVDepayClass * klass)
89 {
90   GstElementClass *gstelement_class = (GstElementClass *) klass;
91   GstRTPBaseDepayloadClass *gstrtpbasedepayload_class =
92       (GstRTPBaseDepayloadClass *) klass;
93
94   GST_DEBUG_CATEGORY_INIT (rtpdvdepay_debug, "rtpdvdepay", 0,
95       "DV RTP Depayloader");
96
97   gstelement_class->change_state =
98       GST_DEBUG_FUNCPTR (gst_rtp_dv_depay_change_state);
99
100   gst_element_class_add_pad_template (gstelement_class,
101       gst_static_pad_template_get (&src_factory));
102   gst_element_class_add_pad_template (gstelement_class,
103       gst_static_pad_template_get (&sink_factory));
104
105   gst_element_class_set_details_simple (gstelement_class, "RTP DV Depayloader",
106       "Codec/Depayloader/Network/RTP",
107       "Depayloads DV from RTP packets (RFC 3189)",
108       "Marcel Moreaux <marcelm@spacelabs.nl>, Wim Taymans <wim.taymans@gmail.com>");
109
110   gstrtpbasedepayload_class->process =
111       GST_DEBUG_FUNCPTR (gst_rtp_dv_depay_process);
112   gstrtpbasedepayload_class->set_caps =
113       GST_DEBUG_FUNCPTR (gst_rtp_dv_depay_setcaps);
114 }
115
116 /* initialize the new element
117  * instantiate pads and add them to element
118  * set functions
119  * initialize structure
120  */
121 static void
122 gst_rtp_dv_depay_init (GstRTPDVDepay * filter)
123 {
124 }
125
126 static gboolean
127 parse_encode (GstRTPDVDepay * rtpdvdepay, const gchar * encode)
128 {
129   rtpdvdepay->width = 720;
130   if (!strcmp (encode, "314M-25/525-60")) {
131     rtpdvdepay->frame_size = 240000;
132     rtpdvdepay->height = 480;
133     rtpdvdepay->rate_num = 30000;
134     rtpdvdepay->rate_denom = 1001;
135   } else if (!strcmp (encode, "SD-VCR/525-60")) {
136     rtpdvdepay->frame_size = 120000;
137     rtpdvdepay->height = 480;
138     rtpdvdepay->rate_num = 30000;
139     rtpdvdepay->rate_denom = 1001;
140   } else if (!strcmp (encode, "314M-50/625-50")) {
141     rtpdvdepay->frame_size = 288000;
142     rtpdvdepay->height = 576;
143     rtpdvdepay->rate_num = 25;
144     rtpdvdepay->rate_denom = 1;
145   } else if (!strcmp (encode, "SD-VCR/625-50")) {
146     rtpdvdepay->frame_size = 144000;
147     rtpdvdepay->height = 576;
148     rtpdvdepay->rate_num = 25;
149     rtpdvdepay->rate_denom = 1;
150   } else if (!strcmp (encode, "314M-25/625-50")) {
151     rtpdvdepay->frame_size = 144000;
152     rtpdvdepay->height = 576;
153     rtpdvdepay->rate_num = 25;
154     rtpdvdepay->rate_denom = 1;
155   } else
156     rtpdvdepay->frame_size = -1;
157
158   return rtpdvdepay->frame_size != -1;
159 }
160
161 static gboolean
162 gst_rtp_dv_depay_setcaps (GstRTPBaseDepayload * depayload, GstCaps * caps)
163 {
164   GstStructure *structure;
165   GstRTPDVDepay *rtpdvdepay;
166   GstCaps *srccaps;
167   gint clock_rate;
168   gboolean systemstream, ret;
169   const gchar *encode, *media;
170
171   rtpdvdepay = GST_RTP_DV_DEPAY (depayload);
172
173   structure = gst_caps_get_structure (caps, 0);
174
175   if (!gst_structure_get_int (structure, "clock-rate", &clock_rate))
176     clock_rate = 90000;         /* default */
177   depayload->clock_rate = clock_rate;
178
179   /* we really need the encode property to figure out the frame size, it's also
180    * required by the spec */
181   if (!(encode = gst_structure_get_string (structure, "encode")))
182     goto no_encode;
183
184   /* figure out the size of one frame */
185   if (!parse_encode (rtpdvdepay, encode))
186     goto unknown_encode;
187
188   /* check the media, this tells us that the stream has video or not */
189   if (!(media = gst_structure_get_string (structure, "media")))
190     goto no_media;
191
192   systemstream = FALSE;
193
194   if (!strcmp (media, "audio")) {
195     /* we need a demuxer for audio only */
196     systemstream = TRUE;
197   } else if (!strcmp (media, "video")) {
198     const gchar *audio;
199
200     /* check the optional audio field, if it's present and set to bundled, we
201      * are dealing with a system stream. */
202     if ((audio = gst_structure_get_string (structure, "audio"))) {
203       if (!strcmp (audio, "bundled"))
204         systemstream = TRUE;
205     }
206   }
207
208   /* allocate accumulator */
209   rtpdvdepay->acc = gst_buffer_new_and_alloc (rtpdvdepay->frame_size);
210
211   /* Initialize the new accumulator frame.
212    * If the previous frame exists, copy that into the accumulator frame.
213    * This way, missing packets in the stream won't show up badly. */
214   gst_buffer_memset (rtpdvdepay->acc, 0, 0, rtpdvdepay->frame_size);
215
216   srccaps = gst_caps_new_simple ("video/x-dv",
217       "systemstream", G_TYPE_BOOLEAN, systemstream,
218       "width", G_TYPE_INT, rtpdvdepay->width,
219       "height", G_TYPE_INT, rtpdvdepay->height,
220       "framerate", GST_TYPE_FRACTION, rtpdvdepay->rate_num,
221       rtpdvdepay->rate_denom, NULL);
222   ret = gst_pad_set_caps (depayload->srcpad, srccaps);
223   gst_caps_unref (srccaps);
224
225   return ret;
226
227   /* ERRORS */
228 no_encode:
229   {
230     GST_ERROR_OBJECT (rtpdvdepay, "required encode property not found in caps");
231     return FALSE;
232   }
233 unknown_encode:
234   {
235     GST_ERROR_OBJECT (rtpdvdepay, "unknown encode property %s found", encode);
236     return FALSE;
237   }
238 no_media:
239   {
240     GST_ERROR_OBJECT (rtpdvdepay, "required media property not found in caps");
241     return FALSE;
242   }
243 }
244
245 /* A DV frame consists of a bunch of 80-byte DIF blocks.
246  * Each DIF block contains a 3-byte header telling where in the DV frame the
247  * DIF block should go. We use this information to calculate its position.
248  */
249 static guint
250 calculate_difblock_location (guint8 * block)
251 {
252   gint block_type, dif_sequence, dif_block;
253   guint location;
254
255   block_type = block[0] >> 5;
256   dif_sequence = block[1] >> 4;
257   dif_block = block[2];
258
259   location = dif_sequence * 150;
260
261   switch (block_type) {
262     case 0:                    /* Header block, no offset */
263       break;
264     case 1:                    /* Subcode block */
265       location += (1 + dif_block);
266       break;
267     case 2:                    /* VAUX block */
268       location += (3 + dif_block);
269       break;
270     case 3:                    /* Audio block */
271       location += (6 + dif_block * 16);
272       break;
273     case 4:                    /* Video block */
274       location += (7 + (dif_block / 15) + dif_block);
275       break;
276     default:                   /* Something bogus */
277       GST_DEBUG ("UNKNOWN BLOCK");
278       location = -1;
279       break;
280   }
281   return location;
282 }
283
284 /* Process one RTP packet. Accumulate RTP payload in the proper place in a DV
285  * frame, and return that frame if we detect a new frame, or NULL otherwise.
286  * We assume a DV frame is 144000 bytes. That should accomodate PAL as well as
287  * NTSC.
288  */
289 static GstBuffer *
290 gst_rtp_dv_depay_process (GstRTPBaseDepayload * base, GstBuffer * in)
291 {
292   GstBuffer *out = NULL;
293   guint8 *payload;
294   guint32 rtp_ts;
295   guint payload_len, location;
296   GstRTPDVDepay *dvdepay = GST_RTP_DV_DEPAY (base);
297   gboolean marker;
298   GstRTPBuffer rtp = { NULL, };
299
300   gst_rtp_buffer_map (in, GST_MAP_READ, &rtp);
301
302   marker = gst_rtp_buffer_get_marker (&rtp);
303
304   /* Check if the received packet contains (the start of) a new frame, we do
305    * this by checking the RTP timestamp. */
306   rtp_ts = gst_rtp_buffer_get_timestamp (&rtp);
307
308   /* we cannot copy the packet yet if the marker is set, we will do that below
309    * after taking out the data */
310   if (dvdepay->prev_ts != -1 && rtp_ts != dvdepay->prev_ts && !marker) {
311     /* the timestamp changed */
312     GST_DEBUG_OBJECT (dvdepay, "new frame with ts %u, old ts %u", rtp_ts,
313         dvdepay->prev_ts);
314
315     /* return copy of accumulator. */
316     out = gst_buffer_copy (dvdepay->acc);
317   }
318
319   /* Extract the payload */
320   payload_len = gst_rtp_buffer_get_payload_len (&rtp);
321   payload = gst_rtp_buffer_get_payload (&rtp);
322
323   /* copy all DIF chunks in their place. */
324   while (payload_len >= 80) {
325     guint offset;
326
327     /* Calculate where in the frame the payload should go */
328     location = calculate_difblock_location (payload);
329
330     if (location < 6) {
331       /* part of a header, set the flag to mark that we have the header. */
332       dvdepay->header_mask |= (1 << location);
333       GST_LOG_OBJECT (dvdepay, "got header at location %d, now %02x", location,
334           dvdepay->header_mask);
335     } else {
336       GST_LOG_OBJECT (dvdepay, "got block at location %d", location);
337     }
338
339     /* get the byte offset of the dif block */
340     offset = location * 80;
341
342     /* And copy it in, provided the location is sane. */
343     if (offset >= 0 && offset <= dvdepay->frame_size - 80)
344       gst_buffer_fill (dvdepay->acc, offset, payload, 80);
345
346     payload += 80;
347     payload_len -= 80;
348   }
349   gst_rtp_buffer_unmap (&rtp);
350
351   if (marker) {
352     GST_DEBUG_OBJECT (dvdepay, "marker bit complete frame %u", rtp_ts);
353     /* only copy the frame when we have a complete header */
354     if (dvdepay->header_mask == 0x3f) {
355       /* The marker marks the end of a frame that we need to push. The next frame
356        * will change the timestamp but we won't copy the accumulator again because
357        * we set the prev_ts to -1. */
358       out = gst_buffer_copy (dvdepay->acc);
359     } else {
360       GST_WARNING_OBJECT (dvdepay, "waiting for frame headers %02x",
361           dvdepay->header_mask);
362     }
363     dvdepay->prev_ts = -1;
364   } else {
365     /* save last timestamp */
366     dvdepay->prev_ts = rtp_ts;
367   }
368   return out;
369 }
370
371 static void
372 gst_rtp_dv_depay_reset (GstRTPDVDepay * depay)
373 {
374   if (depay->acc)
375     gst_buffer_unref (depay->acc);
376   depay->acc = NULL;
377
378   depay->prev_ts = -1;
379   depay->header_mask = 0;
380 }
381
382 static GstStateChangeReturn
383 gst_rtp_dv_depay_change_state (GstElement * element, GstStateChange transition)
384 {
385   GstStateChangeReturn ret;
386   GstRTPDVDepay *depay = GST_RTP_DV_DEPAY (element);
387
388   switch (transition) {
389     case GST_STATE_CHANGE_READY_TO_PAUSED:
390       gst_rtp_dv_depay_reset (depay);
391       break;
392     default:
393       break;
394   }
395
396   ret = GST_CALL_PARENT_WITH_DEFAULT (GST_ELEMENT_CLASS, change_state,
397       (element, transition), GST_STATE_CHANGE_FAILURE);
398
399   switch (transition) {
400     case GST_STATE_CHANGE_PAUSED_TO_READY:
401       gst_rtp_dv_depay_reset (depay);
402       break;
403     default:
404       break;
405   }
406   return ret;
407 }
408
409 gboolean
410 gst_rtp_dv_depay_plugin_init (GstPlugin * plugin)
411 {
412   return gst_element_register (plugin, "rtpdvdepay",
413       GST_RANK_SECONDARY, GST_TYPE_RTP_DV_DEPAY);
414 }