]> git.sesse.net Git - vlc/blob - modules/access/udp.c
Single service DCCP/RTP/AVP input
[vlc] / modules / access / udp.c
1 /*****************************************************************************
2  * udp.c: raw UDP & RTP input module
3  *****************************************************************************
4  * Copyright (C) 2001-2005 the VideoLAN team
5  * Copyright (C) 2007 Remi Denis-Courmont
6  * $Id$
7  *
8  * Authors: Christophe Massiot <massiot@via.ecp.fr>
9  *          Tristan Leteurtre <tooney@via.ecp.fr>
10  *          Laurent Aimar <fenrir@via.ecp.fr>
11  *          Jean-Paul Saman <jpsaman #_at_# m2x dot nl>
12  *          Remi Denis-Courmont
13  *
14  * Reviewed: 23 October 2003, Jean-Paul Saman <jpsaman _at_ videolan _dot_ org>
15  *
16  * This program is free software; you can redistribute it and/or modify
17  * it under the terms of the GNU General Public License as published by
18  * the Free Software Foundation; either version 2 of the License, or
19  * (at your option) any later version.
20  *
21  * This program is distributed in the hope that it will be useful,
22  * but WITHOUT ANY WARRANTY; without even the implied warranty of
23  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24  * GNU General Public License for more details.
25  *
26  * You should have received a copy of the GNU General Public License
27  * along with this program; if not, write to the Free Software
28  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
29  *****************************************************************************/
30
31 /*****************************************************************************
32  * Preamble
33  *****************************************************************************/
34 #include <stdlib.h>
35
36 #include <vlc/vlc.h>
37 #include <vlc_access.h>
38 #include <vlc_network.h>
39
40 /* Big pile of stuff missing form glibc 2.5 */
41 #if defined (HAVE_NETINET_UDPLITE_H)
42 # include <netinet/udplite.h>
43 #elif defined (__linux__)
44 # define UDPLITE_SEND_CSCOV     10
45 # define UDPLITE_RECV_CSCOV     11
46 #endif
47
48 #ifndef SOCK_DCCP /* provisional API */
49 # ifdef __linux__
50 #  define SOCK_DCCP 6
51 # endif
52 #endif
53
54 #ifndef IPPROTO_DCCP
55 # define IPPROTO_DCCP 33 /* IANA */
56 #endif
57
58 #ifndef IPPROTO_UDPLITE
59 # define IPPROTO_UDPLITE 136 /* from IANA */
60 #endif
61 #ifndef SOL_UDPLITE
62 # define SOL_UDPLITE IPPROTO_UDPLITE
63 #endif
64
65
66 /*****************************************************************************
67  * Module descriptor
68  *****************************************************************************/
69 #define CACHING_TEXT N_("Caching value in ms")
70 #define CACHING_LONGTEXT N_( \
71     "Caching value for UDP streams. This " \
72     "value should be set in milliseconds." )
73
74 #define AUTO_MTU_TEXT N_("Autodetection of MTU")
75 #define AUTO_MTU_LONGTEXT N_( \
76     "Automatically detect the line's MTU. This will increase the size if" \
77     " truncated packets are found" )
78
79 #define RTP_LATE_TEXT N_("RTP reordering timeout in ms")
80 #define RTP_LATE_LONGTEXT N_( \
81     "VLC reorders RTP packets. The input will wait for late packets at most "\
82     "the time specified here (in milliseconds)." )
83
84 static int  Open ( vlc_object_t * );
85 static void Close( vlc_object_t * );
86
87 vlc_module_begin();
88     set_shortname( _("UDP/RTP" ) );
89     set_description( _("UDP/RTP input") );
90     set_category( CAT_INPUT );
91     set_subcategory( SUBCAT_INPUT_ACCESS );
92
93     add_integer( "udp-caching", DEFAULT_PTS_DELAY / 1000, NULL, CACHING_TEXT,
94                  CACHING_LONGTEXT, VLC_TRUE );
95     add_integer( "rtp-late", 100, NULL, RTP_LATE_TEXT, RTP_LATE_LONGTEXT, VLC_TRUE );
96
97     add_bool( "udp-auto-mtu", 1, NULL,
98               AUTO_MTU_TEXT, AUTO_MTU_LONGTEXT, VLC_TRUE );
99
100     set_capability( "access2", 0 );
101     add_shortcut( "udp" );
102     add_shortcut( "udpstream" );
103     add_shortcut( "udp4" );
104     add_shortcut( "udp6" );
105     add_shortcut( "rtp" );
106     add_shortcut( "rtp4" );
107     add_shortcut( "rtp6" );
108     add_shortcut( "udplite" );
109     add_shortcut( "rtptcp" );
110     add_shortcut( "dccp" );
111
112     set_callbacks( Open, Close );
113 vlc_module_end();
114
115 /*****************************************************************************
116  * Local prototypes
117  *****************************************************************************/
118 #define RTP_HEADER_LEN 12
119
120 static block_t *BlockUDP( access_t * );
121 static block_t *BlockTCP( access_t * );
122 static block_t *BlockRTP( access_t * );
123 static block_t *BlockChoose( access_t * );
124 static int Control( access_t *, int, va_list );
125
126 struct access_sys_t
127 {
128     int fd;
129
130     int i_mtu;
131     vlc_bool_t b_auto_mtu;
132     vlc_bool_t b_framed_rtp;
133
134     /* reorder rtp packets when out-of-sequence */
135     uint16_t i_last_seqno;
136     mtime_t i_rtp_late;
137     block_t *p_list;
138     block_t *p_end;
139     block_t *p_partial_frame; /* Partial Framed RTP packet */
140 };
141
142 /*****************************************************************************
143  * Open: open the socket
144  *****************************************************************************/
145 static int Open( vlc_object_t *p_this )
146 {
147     access_t     *p_access = (access_t*)p_this;
148     access_sys_t *p_sys;
149
150     char *psz_name = strdup( p_access->psz_path );
151     char *psz_parser;
152     const char *psz_server_addr, *psz_bind_addr = "";
153     int  i_bind_port, i_server_port = 0;
154     int fam = AF_UNSPEC, proto = IPPROTO_UDP;
155
156     if (strlen (p_access->psz_access) >= 3)
157     {
158         switch (p_access->psz_access[3])
159         {
160             case '4':
161                 fam = AF_INET;
162                 break;
163
164             case '6':
165                 fam = AF_INET6;
166                 break;
167         }
168         if (strcmp (p_access->psz_access + 3, "lite") == 0)
169             proto = IPPROTO_UDPLITE;
170         else
171         if (strcmp (p_access->psz_access + 3, "tcp") == 0)
172             proto = IPPROTO_TCP;
173         else
174         if (strcmp (p_access->psz_access, "dccp") == 0)
175             proto = IPPROTO_DCCP;
176     }
177
178     i_bind_port = var_CreateGetInteger( p_access, "server-port" );
179
180     /* Parse psz_name syntax :
181      * [serveraddr[:serverport]][@[bindaddr]:[bindport]] */
182     psz_parser = strchr( psz_name, '@' );
183     if( psz_parser != NULL )
184     {
185         /* Found bind address and/or bind port */
186         *psz_parser++ = '\0';
187         psz_bind_addr = psz_parser;
188
189         if( *psz_parser == '[' )
190             /* skips bracket'd IPv6 address */
191             psz_parser = strchr( psz_parser, ']' );
192
193         if( psz_parser != NULL )
194         {
195             psz_parser = strchr( psz_parser, ':' );
196             if( psz_parser != NULL )
197             {
198                 *psz_parser++ = '\0';
199                 i_bind_port = atoi( psz_parser );
200             }
201         }
202     }
203
204     psz_server_addr = psz_name;
205     if( *psz_server_addr == '[' )
206         /* skips bracket'd IPv6 address */
207         psz_parser = strchr( psz_name, ']' );
208
209     if( psz_parser != NULL )
210     {
211         psz_parser = strchr( psz_parser, ':' );
212         if( psz_parser != NULL )
213         {
214             *psz_parser++ = '\0';
215             i_server_port = atoi( psz_parser );
216         }
217     }
218
219     msg_Dbg( p_access, "opening server=%s:%d local=%s:%d",
220              psz_server_addr, i_server_port, psz_bind_addr, i_bind_port );
221
222     /* Set up p_access */
223     access_InitFields( p_access );
224     ACCESS_SET_CALLBACKS( NULL, BlockChoose, Control, NULL );
225     p_access->info.b_prebuffered = VLC_FALSE;
226     MALLOC_ERR( p_access->p_sys, access_sys_t ); p_sys = p_access->p_sys;
227
228     switch (proto)
229     {
230         case IPPROTO_UDP:
231         case IPPROTO_UDPLITE:
232             p_sys->fd = net_OpenDgram( p_access, psz_bind_addr, i_bind_port,
233                                        psz_server_addr, i_server_port, fam,
234                                        proto );
235             break;
236
237         case IPPROTO_TCP:
238             p_sys = net_ConnectTCP( p_access, psz_server_addr, i_server_port );
239             p_sys->b_framed_rtp = VLC_TRUE;
240             break;
241
242         case IPPROTO_DCCP:
243 #ifdef SOCK_DCCP
244             p_sys->fd = net_Connect( p_access, psz_server_addr, i_server_port,
245                                      SOCK_DCCP, IPPROTO_DCCP );
246 #else
247             p_sys->fd = -1;
248             msg_Err( p_access, "DCCP support not compiled-in!" );
249 #endif
250             break;
251     }
252     free (psz_name);
253     if( p_sys->fd == -1 )
254     {
255         msg_Err( p_access, "cannot open socket" );
256         free( p_sys );
257         return VLC_EGENERIC;
258     }
259
260     net_StopSend( p_sys->fd );
261
262 #ifdef UDPLITE_RECV_CSCOV
263     if (proto == IPPROTO_UDPLITE)
264         /* UDP header: 8 bytes + RTP header: 12 bytes (or more) */
265         setsockopt (p_sys->fd, SOL_UDPLITE, UDPLITE_RECV_CSCOV,
266                     &(int){ 20 }, sizeof (int));
267 #endif
268
269     if (p_sys->b_framed_rtp)
270     {
271         /* We don't do autodetection and prebuffering in case of framing */
272         p_access->pf_block = BlockRTP;
273         p_sys->i_mtu = 65535;
274     }
275     else
276     {
277         /* FIXME */
278         p_sys->i_mtu = var_CreateGetInteger( p_access, "mtu" );
279         if( p_sys->i_mtu <= 1 )
280             p_sys->i_mtu  = 1500;   /* Avoid problem */
281
282         p_sys->b_auto_mtu = var_CreateGetBool( p_access, "udp-auto-mtu" );;
283     }
284
285     /* Update default_pts to a suitable value for udp access */
286     var_Create( p_access, "udp-caching", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
287
288     /* RTP reordering for out-of-sequence packets */
289     p_sys->i_rtp_late = var_CreateGetInteger( p_access, "rtp-late" ) * 1000;
290     p_sys->i_last_seqno = 0;
291     p_sys->p_list = NULL;
292     p_sys->p_end = NULL;
293     return VLC_SUCCESS;
294 }
295
296 /*****************************************************************************
297  * Close: free unused data structures
298  *****************************************************************************/
299 static void Close( vlc_object_t *p_this )
300 {
301     access_t     *p_access = (access_t*)p_this;
302     access_sys_t *p_sys = p_access->p_sys;
303
304     block_ChainRelease( p_sys->p_list );
305     net_Close( p_sys->fd );
306     free( p_sys );
307 }
308
309 /*****************************************************************************
310  * Control:
311  *****************************************************************************/
312 static int Control( access_t *p_access, int i_query, va_list args )
313 {
314     access_sys_t *p_sys = p_access->p_sys;
315     vlc_bool_t   *pb_bool;
316     int          *pi_int;
317     int64_t      *pi_64;
318
319     switch( i_query )
320     {
321         /* */
322         case ACCESS_CAN_SEEK:
323         case ACCESS_CAN_FASTSEEK:
324         case ACCESS_CAN_PAUSE:
325         case ACCESS_CAN_CONTROL_PACE:
326             pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
327             *pb_bool = VLC_FALSE;
328             break;
329         /* */
330         case ACCESS_GET_MTU:
331             pi_int = (int*)va_arg( args, int * );
332             *pi_int = p_sys->i_mtu;
333             break;
334
335         case ACCESS_GET_PTS_DELAY:
336             pi_64 = (int64_t*)va_arg( args, int64_t * );
337             *pi_64 = var_GetInteger( p_access, "udp-caching" ) * 1000;
338             break;
339
340         /* */
341         case ACCESS_SET_PAUSE_STATE:
342         case ACCESS_GET_TITLE_INFO:
343         case ACCESS_SET_TITLE:
344         case ACCESS_SET_SEEKPOINT:
345         case ACCESS_SET_PRIVATE_ID_STATE:
346             return VLC_EGENERIC;
347
348         default:
349             msg_Warn( p_access, "unimplemented query in control" );
350             return VLC_EGENERIC;
351
352     }
353     return VLC_SUCCESS;
354 }
355
356 /*****************************************************************************
357  * BlockUDP:
358  *****************************************************************************/
359 static block_t *BlockUDP( access_t *p_access )
360 {
361     access_sys_t *p_sys = p_access->p_sys;
362     block_t      *p_block;
363
364     /* Read data */
365     p_block = block_New( p_access, p_sys->i_mtu );
366     p_block->i_buffer = net_Read( p_access, p_sys->fd, NULL,
367                                   p_block->p_buffer, p_sys->i_mtu,
368                                   VLC_FALSE );
369     if( p_block->i_buffer < 0 )
370     {
371         block_Release( p_block );
372         return NULL;
373     }
374
375     if( (p_block->i_buffer >= p_sys->i_mtu) && p_sys->b_auto_mtu &&
376         p_sys->i_mtu < 32767 )
377     {
378         /* Increase by 100% */
379         p_sys->i_mtu *= 2;
380         msg_Dbg( p_access, "increasing MTU to %d", p_sys->i_mtu );
381     }
382
383     return p_block;
384 }
385
386 /*****************************************************************************
387  * BlockTCP: Framed RTP/AVP packet reception for COMEDIA
388  * Still an I-D (draft-ietf-avt-rtp-framing-contrans-06) - subject to change.
389  *****************************************************************************/
390 static block_t *BlockTCP( access_t *p_access )
391 {
392     access_sys_t *p_sys = p_access->p_sys;
393     block_t      *p_block = p_sys->p_partial_frame;
394
395     if( p_access->info.b_eof )
396         return NULL;
397
398     if( p_block == NULL )
399     {
400         /* MTU should always be 65535 in this case */
401         p_sys->p_partial_frame = p_block = block_New( p_access, 65537 );
402         if (p_block == NULL)
403             return NULL;
404     }
405
406     /* Read RTP framing */
407     if (p_block->i_buffer < 2)
408     {
409         /* FIXME: not very efficient */
410         int i_read = net_Read( p_access, p_sys->fd, NULL,
411                                p_block->p_buffer + p_block->i_buffer,
412                                2 - p_block->i_buffer, VLC_FALSE );
413         if( i_read <= 0 )
414             goto error;
415
416         p_block->i_buffer += i_read;
417         if (p_block->i_buffer < 2)
418             return NULL;
419     }
420
421     uint16_t framelen = GetWLE( p_block->p_buffer );
422     /* Read RTP frame */
423     if( framelen > 0 )
424     {
425         int i_read = net_Read( p_access, p_sys->fd, NULL,
426                                p_block->p_buffer + p_block->i_buffer,
427                                2 + framelen - p_block->i_buffer, VLC_FALSE );
428         if( i_read <= 0 )
429             goto error;
430
431         p_block->i_buffer += i_read;
432     }
433
434     if( p_block->i_buffer < (2 + framelen) )
435         return NULL; // incomplete frame
436
437     /* Hide framing from RTP layer */
438     p_block->p_buffer += 2;
439     p_block->i_buffer -= 2;
440     p_sys->p_partial_frame = NULL;
441     return p_block;
442
443 error:
444     p_access->info.b_eof = VLC_TRUE;
445     block_Release( p_block );
446     p_sys->p_partial_frame = NULL;
447     return NULL;
448 }
449
450
451 /*
452  * rtp_ChainInsert - insert a p_block in the chain and
453  * look at the sequence numbers.
454  */
455 static inline vlc_bool_t rtp_ChainInsert( access_t *p_access, block_t *p_block )
456 {
457     access_sys_t *p_sys = (access_sys_t *) p_access->p_sys;
458     block_t *p_prev = NULL;
459     block_t *p = p_sys->p_end;
460     uint16_t i_new = (uint16_t) p_block->i_dts;
461     uint16_t i_tmp = 0;
462
463     if( !p_sys->p_list )
464     {
465         p_sys->p_list = p_block;
466         p_sys->p_end = p_block;
467         return VLC_TRUE;
468     }
469     /* walk through the queue from top down since the new packet is in 
470     most cases just appended to the end */
471
472     for( ;; )
473     {
474         i_tmp = i_new - (uint16_t) p->i_dts;
475
476         if( !i_tmp )   /* trash duplicate */
477             break; 
478
479         if ( i_tmp < 32768 )
480         {   /* insert after this block ( i_new > p->i_dts ) */
481             p_block->p_next = p->p_next;
482             p->p_next = p_block;
483             p_block->p_prev = p;
484             if (p_prev)
485             {
486                 p_prev->p_prev = p_block;
487                 msg_Dbg(p_access, "RTP reordering: insert after %d, new %d", 
488                     (uint16_t) p->i_dts, i_new );
489             }
490             else 
491             {
492                 p_sys->p_end = p_block;
493             }
494             return VLC_TRUE;
495         }
496         if( p == p_sys->p_list )
497         {   /* we've reached bottom of chain */
498             i_tmp = p_sys->i_last_seqno - i_new;
499             if( !p_access->info.b_prebuffered || (i_tmp > 32767) )
500             {
501                 msg_Dbg(p_access, "RTP reordering: prepend %d before %d", 
502                         i_new, (uint16_t) p->i_dts );
503                 p_block->p_next = p;
504                 p->p_prev = p_block;
505                 p_sys->p_list = p_block;
506                 return VLC_TRUE;
507             }
508
509             if( !i_tmp )   /* trash duplicate */
510                 break;
511
512             /* reordering failed - append the packet to the end of queue */
513             msg_Dbg(p_access, "RTP: sequence changed (or buffer too small) "
514                 "new: %d, buffer %d...%d", i_new, (uint16_t) p->i_dts, 
515                 (uint16_t) p_sys->p_end->i_dts);
516             p_sys->p_end->p_next = p_block;
517             p_block->p_prev = p_sys->p_end;
518             p_sys->p_end = p_block;
519             return VLC_TRUE;
520         }
521         p_prev = p;
522         p = p->p_prev;
523     }
524     block_Release( p_block );
525     return VLC_FALSE;
526 }
527
528 /*****************************************************************************
529  * BlockParseRTP/BlockRTP:
530  *****************************************************************************/
531 static block_t *BlockParseRTP( access_t *p_access, block_t *p_block )
532 {
533     int      i_rtp_version;
534     int      i_CSRC_count;
535     int      i_payload_type;
536     int      i_skip = 0;
537     int      i_extension_flag = 0;
538     int      i_extension_length = 0;
539     uint16_t i_sequence_number = 0;
540
541     if( p_block == NULL )
542         return NULL;
543
544     if( p_block->i_buffer < RTP_HEADER_LEN )
545         goto trash;
546
547     /* Parse the header and make some verifications.
548      * See RFC 3550. */
549     i_rtp_version     = ( p_block->p_buffer[0] & 0xC0 ) >> 6;
550     i_CSRC_count      = p_block->p_buffer[0] & 0x0F;
551     i_extension_flag  = p_block->p_buffer[0] & 0x10;
552     i_payload_type    = p_block->p_buffer[1] & 0x7F;
553     i_sequence_number = (p_block->p_buffer[2] << 8 ) + p_block->p_buffer[3];
554
555     if( i_rtp_version != 2 )
556         msg_Dbg( p_access, "RTP version is %u, should be 2", i_rtp_version );
557
558     if( i_payload_type == 14 || i_payload_type == 32)
559         i_skip = 4;
560     else if( i_payload_type !=  33 )
561         msg_Dbg( p_access, "unsupported RTP payload type (%u)", i_payload_type );
562     if( i_extension_flag )
563     {
564         if( p_block->i_buffer < 16 )
565             goto trash;
566         i_extension_length = 4 +
567             4 * ( (p_block->p_buffer[14] << 8) + p_block->p_buffer[15] );
568     }
569
570     /* Skip header + CSRC extension field n*(32 bits) + extension */
571     i_skip += RTP_HEADER_LEN + 4*i_CSRC_count + i_extension_length;
572
573     if( i_skip >= p_block->i_buffer )
574         goto trash;
575
576     /* Return the packet without the RTP header, remember seqno in i_dts */
577     p_block->i_buffer -= i_skip;
578     p_block->p_buffer += i_skip;
579     p_block->i_pts = mdate();
580     p_block->i_dts = (mtime_t) i_sequence_number;
581
582 #if 0
583     /* Emulate packet loss */
584     if ( (i_sequence_number % 4000) == 0)
585     {
586         msg_Warn( p_access, "Emulating packet drop" );
587         block_Release( p_block );
588         return NULL;
589     }
590 #endif
591
592     return p_block;
593
594 trash:
595     msg_Warn( p_access, "received a too short packet for RTP" );
596     block_Release( p_block );
597     return NULL;
598 }
599
600 static block_t *BlockPrebufferRTP( access_t *p_access, block_t *p_block )
601 {
602     access_sys_t *p_sys = p_access->p_sys;
603     mtime_t   i_first = mdate();
604     int       i_count = 0;
605     block_t   *p = p_block;
606
607     for( ;; )
608     {
609         mtime_t i_date = mdate();
610
611         if( p && rtp_ChainInsert( p_access, p ))
612             i_count++;
613
614         /* Require at least 2 packets in the buffer */
615         if( i_count > 2 && (i_date - i_first) > p_sys->i_rtp_late )
616             break;
617
618         p = BlockParseRTP( p_access, BlockUDP( p_access ) );
619         if( !p && (i_date - i_first) > p_sys->i_rtp_late ) 
620         {
621             msg_Err( p_access, "error in RTP prebuffering!" );
622             break;
623         }
624     }
625
626     msg_Dbg( p_access, "RTP: prebuffered %d packets", i_count - 1 );
627     p_access->info.b_prebuffered = VLC_TRUE;
628     p = p_sys->p_list;
629     p_sys->p_list = p_sys->p_list->p_next;
630     p_sys->i_last_seqno = (uint16_t) p->i_dts;
631     p->p_next = NULL;
632     return p;
633 }
634
635 static block_t *BlockRTP( access_t *p_access )
636 {
637     access_sys_t *p_sys = p_access->p_sys;
638     block_t *p;
639
640     while ( !p_sys->p_list ||
641              ( mdate() - p_sys->p_list->i_pts ) < p_sys->i_rtp_late )
642     {
643         p = BlockParseRTP( p_access,
644                            p_sys->b_framed_rtp ? BlockTCP( p_access )
645                                                : BlockUDP( p_access ) );
646         if ( !p )
647             return NULL;
648
649         rtp_ChainInsert( p_access, p );
650     }
651
652     p = p_sys->p_list;
653     p_sys->p_list = p_sys->p_list->p_next;
654     p_sys->i_last_seqno++;
655     if( p_sys->i_last_seqno != (uint16_t) p->i_dts )
656     {
657         msg_Dbg( p_access, "RTP: packet(s) lost, expected %d, got %d",
658                  p_sys->i_last_seqno, (uint16_t) p->i_dts );
659         p_sys->i_last_seqno = (uint16_t) p->i_dts;
660     }
661     p->p_next = NULL;
662     return p;
663 }
664
665 /*****************************************************************************
666  * BlockChoose: decide between RTP and UDP
667  *****************************************************************************/
668 static block_t *BlockChoose( access_t *p_access )
669 {
670     block_t *p_block;
671     int     i_rtp_version;
672     int     i_CSRC_count;
673     int     i_payload_type;
674
675     if( ( p_block = BlockUDP( p_access ) ) == NULL )
676         return NULL;
677
678     if( p_block->p_buffer[0] == 0x47 )
679     {
680         msg_Dbg( p_access, "detected TS over raw UDP" );
681         p_access->pf_block = BlockUDP;
682         p_access->info.b_prebuffered = VLC_TRUE;
683         return p_block;
684     }
685
686     if( p_block->i_buffer < RTP_HEADER_LEN )
687         return p_block;
688
689     /* Parse the header and make some verifications.
690      * See RFC 3550. */
691
692     i_rtp_version  = ( p_block->p_buffer[0] & 0xC0 ) >> 6;
693     i_CSRC_count   = ( p_block->p_buffer[0] & 0x0F );
694     i_payload_type = ( p_block->p_buffer[1] & 0x7F );
695
696     if( i_rtp_version != 2 )
697     {
698         msg_Dbg( p_access, "no supported RTP header detected" );
699         p_access->pf_block = BlockUDP;
700         p_access->info.b_prebuffered = VLC_TRUE;
701         return p_block;
702     }
703
704     switch( i_payload_type )
705     {
706         case 33:
707             msg_Dbg( p_access, "detected TS over RTP" );
708             p_access->psz_demux = strdup( "ts" );
709             break;
710
711         case 14:
712             msg_Dbg( p_access, "detected MPEG audio over RTP" );
713             p_access->psz_demux = strdup( "mpga" );
714             break;
715
716         case 32:
717             msg_Dbg( p_access, "detected MPEG video over RTP" );
718             p_access->psz_demux = strdup( "mpgv" );
719             break;
720
721         default:
722             msg_Dbg( p_access, "no RTP header detected" );
723             p_access->pf_block = BlockUDP;
724             p_access->info.b_prebuffered = VLC_TRUE;
725             return p_block;
726     }
727
728     if( !BlockParseRTP( p_access, p_block )) return NULL;
729
730     p_access->pf_block = BlockRTP;
731
732     return BlockPrebufferRTP( p_access, p_block );
733 }