]> git.sesse.net Git - vlc/blob - modules/access/udp.c
17e6a673482d26d1a4734c66cd44130910da2a6c
[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
35 #include <vlc/vlc.h>
36 #include <vlc_access.h>
37 #include <vlc_network.h>
38
39 #ifndef SOCK_DCCP /* provisional API */
40 # ifdef __linux__
41 #  define SOCK_DCCP 6
42 # endif
43 #endif
44
45 #ifndef IPPROTO_DCCP
46 # define IPPROTO_DCCP 33 /* IANA */
47 #endif
48
49 #ifndef IPPROTO_UDPLITE
50 # define IPPROTO_UDPLITE 136 /* from IANA */
51 #endif
52
53 #define MTU 65535
54
55 /*****************************************************************************
56  * Module descriptor
57  *****************************************************************************/
58 #define CACHING_TEXT N_("Caching value in ms")
59 #define CACHING_LONGTEXT N_( \
60     "Caching value for UDP streams. This " \
61     "value should be set in milliseconds." )
62
63 #define RTP_LATE_TEXT N_("RTP reordering timeout in ms")
64 #define RTP_LATE_LONGTEXT N_( \
65     "VLC reorders RTP packets. The input will wait for late packets at most "\
66     "the time specified here (in milliseconds)." )
67
68 static int  Open ( vlc_object_t * );
69 static void Close( vlc_object_t * );
70
71 vlc_module_begin();
72     set_shortname( _("UDP/RTP" ) );
73     set_description( _("UDP/RTP input") );
74     set_category( CAT_INPUT );
75     set_subcategory( SUBCAT_INPUT_ACCESS );
76
77     add_integer( "udp-caching", DEFAULT_PTS_DELAY / 1000, NULL, CACHING_TEXT,
78                  CACHING_LONGTEXT, VLC_TRUE );
79     add_integer( "rtp-late", 100, NULL, RTP_LATE_TEXT, RTP_LATE_LONGTEXT, VLC_TRUE );
80     add_obsolete_bool( "udp-auto-mtu" );
81
82     set_capability( "access2", 0 );
83     add_shortcut( "udp" );
84     add_shortcut( "udpstream" );
85     add_shortcut( "udp4" );
86     add_shortcut( "udp6" );
87     add_shortcut( "rtp" );
88     add_shortcut( "rtp4" );
89     add_shortcut( "rtp6" );
90     add_shortcut( "udplite" );
91     add_shortcut( "rtptcp" ); /* tcp name is already taken */
92     add_shortcut( "dccp" );
93
94     set_callbacks( Open, Close );
95 vlc_module_end();
96
97 /*****************************************************************************
98  * Local prototypes
99  *****************************************************************************/
100 #define RTP_HEADER_LEN 12
101
102 static block_t *BlockUDP( access_t * );
103 static block_t *BlockStartRTP( access_t * );
104 static block_t *BlockRTP( access_t * );
105 static block_t *BlockChoose( access_t * );
106 static int Control( access_t *, int, va_list );
107
108 struct access_sys_t
109 {
110     int fd;
111
112     vlc_bool_t b_framed_rtp, b_comedia;
113
114     /* reorder rtp packets when out-of-sequence */
115     uint16_t i_last_seqno;
116     mtime_t i_rtp_late;
117     block_t *p_list;
118     block_t *p_end;
119     block_t *p_partial_frame; /* Partial Framed RTP packet */
120 };
121
122 /*****************************************************************************
123  * Open: open the socket
124  *****************************************************************************/
125 static int Open( vlc_object_t *p_this )
126 {
127     access_t     *p_access = (access_t*)p_this;
128     access_sys_t *p_sys;
129
130     char *psz_name = strdup( p_access->psz_path );
131     char *psz_parser;
132     const char *psz_server_addr, *psz_bind_addr = "";
133     int  i_bind_port, i_server_port = 0;
134     int fam = AF_UNSPEC, proto = IPPROTO_UDP;
135
136     /* Set up p_access */
137     access_InitFields( p_access );
138     ACCESS_SET_CALLBACKS( NULL, BlockStartRTP, Control, NULL );
139     p_access->info.b_prebuffered = VLC_FALSE;
140     MALLOC_ERR( p_access->p_sys, access_sys_t ); p_sys = p_access->p_sys;
141     memset (p_sys, 0, sizeof (*p_sys));
142
143     if (strlen (p_access->psz_access) > 0)
144     {
145         switch (p_access->psz_access[strlen (p_access->psz_access) - 1])
146         {
147             case '4':
148                 fam = AF_INET;
149                 break;
150
151             case '6':
152                 fam = AF_INET6;
153                 break;
154         }
155
156         if (strcmp (p_access->psz_access, "udplite") == 0)
157             proto = IPPROTO_UDPLITE;
158         else
159         if (strncmp (p_access->psz_access, "udp", 3 ) == 0 )
160             p_access->pf_block = BlockChoose;
161         else
162         if (strcmp (p_access->psz_access, "rtptcp") == 0)
163             proto = IPPROTO_TCP;
164         else
165         if (strcmp (p_access->psz_access, "dccp") == 0)
166             proto = IPPROTO_DCCP;
167     }
168
169     i_bind_port = var_CreateGetInteger( p_access, "server-port" );
170
171     /* Parse psz_name syntax :
172      * [serveraddr[:serverport]][@[bindaddr]:[bindport]] */
173     psz_parser = strchr( psz_name, '@' );
174     if( psz_parser != NULL )
175     {
176         /* Found bind address and/or bind port */
177         *psz_parser++ = '\0';
178         psz_bind_addr = psz_parser;
179
180         if( psz_bind_addr[0] == '[' )
181             /* skips bracket'd IPv6 address */
182             psz_parser = strchr( psz_parser, ']' );
183
184         if( psz_parser != NULL )
185         {
186             psz_parser = strchr( psz_parser, ':' );
187             if( psz_parser != NULL )
188             {
189                 *psz_parser++ = '\0';
190                 i_bind_port = atoi( psz_parser );
191             }
192         }
193     }
194
195     psz_server_addr = psz_name;
196     psz_parser = ( psz_server_addr[0] == '[' )
197         ? strchr( psz_name, ']' ) /* skips bracket'd IPv6 address */
198         : psz_name;
199
200     if( psz_parser != NULL )
201     {
202         psz_parser = strchr( psz_parser, ':' );
203         if( psz_parser != NULL )
204         {
205             *psz_parser++ = '\0';
206             i_server_port = atoi( psz_parser );
207         }
208     }
209
210     msg_Dbg( p_access, "opening server=%s:%d local=%s:%d",
211              psz_server_addr, i_server_port, psz_bind_addr, i_bind_port );
212
213     /* Hmm, the net_* connection functions may need to be unified... */
214     switch (proto)
215     {
216         case IPPROTO_UDP:
217         case IPPROTO_UDPLITE:
218             p_sys->fd = net_OpenDgram( p_access, psz_bind_addr, i_bind_port,
219                                        psz_server_addr, i_server_port, fam,
220                                        proto );
221             break;
222
223         case IPPROTO_TCP:
224             p_sys->fd = net_ConnectTCP( p_access, psz_server_addr, i_server_port );
225             p_access->pf_block = BlockRTP;
226             p_sys->b_comedia = p_sys->b_framed_rtp = VLC_TRUE;
227             break;
228
229         case IPPROTO_DCCP:
230 #ifdef SOCK_DCCP
231             p_sys->fd = net_Connect( p_access, psz_server_addr, i_server_port,
232                                      SOCK_DCCP, IPPROTO_DCCP );
233 #else
234             p_sys->fd = -1;
235             msg_Err( p_access, "DCCP support not compiled-in!" );
236 #endif
237             p_sys->b_comedia = VLC_TRUE;
238             break;
239     }
240     free (psz_name);
241     if( p_sys->fd == -1 )
242     {
243         msg_Err( p_access, "cannot open socket" );
244         free( p_sys );
245         return VLC_EGENERIC;
246     }
247
248     shutdown( p_sys->fd, SHUT_WR );
249     net_SetCSCov (p_sys->fd, -1, 12);
250
251     /* Update default_pts to a suitable value for udp access */
252     var_Create( p_access, "udp-caching", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
253
254     /* RTP reordering for out-of-sequence packets */
255     p_sys->i_rtp_late = var_CreateGetInteger( p_access, "rtp-late" ) * 1000;
256     p_sys->i_last_seqno = 0;
257     p_sys->p_list = NULL;
258     p_sys->p_end = NULL;
259     return VLC_SUCCESS;
260 }
261
262 /*****************************************************************************
263  * Close: free unused data structures
264  *****************************************************************************/
265 static void Close( vlc_object_t *p_this )
266 {
267     access_t     *p_access = (access_t*)p_this;
268     access_sys_t *p_sys = p_access->p_sys;
269
270     block_ChainRelease( p_sys->p_list );
271     net_Close( p_sys->fd );
272     free( p_sys );
273 }
274
275 /*****************************************************************************
276  * Control:
277  *****************************************************************************/
278 static int Control( access_t *p_access, int i_query, va_list args )
279 {
280     vlc_bool_t   *pb_bool;
281     int          *pi_int;
282     int64_t      *pi_64;
283
284     switch( i_query )
285     {
286         /* */
287         case ACCESS_CAN_SEEK:
288         case ACCESS_CAN_FASTSEEK:
289         case ACCESS_CAN_PAUSE:
290         case ACCESS_CAN_CONTROL_PACE:
291             pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
292             *pb_bool = VLC_FALSE;
293             break;
294         /* */
295         case ACCESS_GET_MTU:
296             pi_int = (int*)va_arg( args, int * );
297             *pi_int = MTU;
298             break;
299
300         case ACCESS_GET_PTS_DELAY:
301             pi_64 = (int64_t*)va_arg( args, int64_t * );
302             *pi_64 = var_GetInteger( p_access, "udp-caching" ) * 1000;
303             break;
304
305         /* */
306         case ACCESS_SET_PAUSE_STATE:
307         case ACCESS_GET_TITLE_INFO:
308         case ACCESS_SET_TITLE:
309         case ACCESS_SET_SEEKPOINT:
310         case ACCESS_SET_PRIVATE_ID_STATE:
311             return VLC_EGENERIC;
312
313         default:
314             msg_Warn( p_access, "unimplemented query in control" );
315             return VLC_EGENERIC;
316
317     }
318     return VLC_SUCCESS;
319 }
320
321 /*****************************************************************************
322  * BlockUDP:
323  *****************************************************************************/
324 static block_t *BlockUDP( access_t *p_access )
325 {
326     access_sys_t *p_sys = p_access->p_sys;
327     block_t      *p_block;
328
329     if( p_access->info.b_eof )
330         return NULL;
331
332     /* Read data */
333     p_block = block_New( p_access, MTU );
334     p_block->i_buffer = net_Read( p_access, p_sys->fd, NULL,
335                                   p_block->p_buffer, MTU, VLC_FALSE );
336     if( ( p_block->i_buffer < 0 )
337      || ( p_sys->b_comedia && ( p_block->i_buffer == 0 ) ) )
338     {
339         if( p_sys->b_comedia )
340         {
341             p_access->info.b_eof = VLC_TRUE;
342             msg_Dbg( p_access, "connection-oriented media hangup" );
343         }
344         block_Release( p_block );
345         return NULL;
346     }
347
348     return block_Realloc( p_block, 0, p_block->i_buffer );
349 }
350
351 /*****************************************************************************
352  * BlockTCP: Framed RTP/AVP packet reception for COMEDIA (see RFC4571)
353  *****************************************************************************/
354 static block_t *BlockTCP( access_t *p_access )
355 {
356     access_sys_t *p_sys = p_access->p_sys;
357     block_t      *p_block = p_sys->p_partial_frame;
358
359     if( p_access->info.b_eof )
360         return NULL;
361
362     if( p_block == NULL )
363     {
364         /* MTU should always be 65535 in this case */
365         p_sys->p_partial_frame = p_block = block_New( p_access, 2 + MTU );
366         if (p_block == NULL)
367             return NULL;
368     }
369
370     /* Read RTP framing */
371     if (p_block->i_buffer < 2)
372     {
373         int i_read = net_Read( p_access, p_sys->fd, NULL,
374                                p_block->p_buffer + p_block->i_buffer,
375                                2 - p_block->i_buffer, VLC_FALSE );
376         if( i_read <= 0 )
377             goto error;
378
379         p_block->i_buffer += i_read;
380         if (p_block->i_buffer < 2)
381             return NULL;
382     }
383
384     uint16_t framelen = GetWLE( p_block->p_buffer );
385     /* Read RTP frame */
386     if( framelen > 0 )
387     {
388         int i_read = net_Read( p_access, p_sys->fd, NULL,
389                                p_block->p_buffer + p_block->i_buffer,
390                                2 + framelen - p_block->i_buffer, VLC_FALSE );
391         if( i_read <= 0 )
392             goto error;
393
394         p_block->i_buffer += i_read;
395     }
396
397     if( p_block->i_buffer < (2 + framelen) )
398         return NULL; // incomplete frame
399
400     /* Hide framing from RTP layer */
401     p_block->p_buffer += 2;
402     p_block->i_buffer -= 2;
403     p_sys->p_partial_frame = NULL;
404     return p_block;
405
406 error:
407     p_access->info.b_eof = VLC_TRUE;
408     block_Release( p_block );
409     p_sys->p_partial_frame = NULL;
410     return NULL;
411 }
412
413
414 /*
415  * rtp_ChainInsert - insert a p_block in the chain and
416  * look at the sequence numbers.
417  */
418 static inline vlc_bool_t rtp_ChainInsert( access_t *p_access, block_t *p_block )
419 {
420     access_sys_t *p_sys = (access_sys_t *) p_access->p_sys;
421     block_t *p_prev = NULL;
422     block_t *p = p_sys->p_end;
423     uint16_t i_new = (uint16_t) p_block->i_dts;
424     uint16_t i_tmp = 0;
425
426     if( !p_sys->p_list )
427     {
428         p_sys->p_list = p_block;
429         p_sys->p_end = p_block;
430         return VLC_TRUE;
431     }
432     /* walk through the queue from top down since the new packet is in
433     most cases just appended to the end */
434
435     for( ;; )
436     {
437         i_tmp = i_new - (uint16_t) p->i_dts;
438
439         if( !i_tmp )   /* trash duplicate */
440             break;
441
442         if ( i_tmp < 32768 )
443         {   /* insert after this block ( i_new > p->i_dts ) */
444             p_block->p_next = p->p_next;
445             p->p_next = p_block;
446             p_block->p_prev = p;
447             if (p_prev)
448             {
449                 p_prev->p_prev = p_block;
450                 msg_Dbg(p_access, "RTP reordering: insert after %d, new %d",
451                         (uint16_t) p->i_dts, i_new );
452             }
453             else
454             {
455                 p_sys->p_end = p_block;
456             }
457             return VLC_TRUE;
458         }
459         if( p == p_sys->p_list )
460         {   /* we've reached bottom of chain */
461             i_tmp = p_sys->i_last_seqno - i_new;
462             if( !p_access->info.b_prebuffered || (i_tmp > 32767) )
463             {
464                 msg_Dbg(p_access, "RTP reordering: prepend %d before %d",
465                         i_new, (uint16_t) p->i_dts );
466                 p_block->p_next = p;
467                 p->p_prev = p_block;
468                 p_sys->p_list = p_block;
469                 return VLC_TRUE;
470             }
471
472             if( !i_tmp )   /* trash duplicate */
473                 break;
474
475             /* reordering failed - append the packet to the end of queue */
476             msg_Dbg(p_access, "RTP: sequence changed (or buffer too small) "
477                     "new: %d, buffer %d...%d", i_new, (uint16_t) p->i_dts,
478                 (uint16_t) p_sys->p_end->i_dts);
479             p_sys->p_end->p_next = p_block;
480             p_block->p_prev = p_sys->p_end;
481             p_sys->p_end = p_block;
482             return VLC_TRUE;
483         }
484         p_prev = p;
485         p = p->p_prev;
486     }
487     block_Release( p_block );
488     return VLC_FALSE;
489 }
490
491 /*****************************************************************************
492  * BlockParseRTP: decapsulate the RTP packet and return it
493  *****************************************************************************/
494 static block_t *BlockParseRTP( access_t *p_access, block_t *p_block )
495 {
496     int      i_payload_type;
497     size_t   i_skip = RTP_HEADER_LEN;
498
499     if( p_block == NULL )
500         return NULL;
501
502     if( p_block->i_buffer < RTP_HEADER_LEN )
503     {
504         msg_Dbg( p_access, "short RTP packet received" );
505         goto trash;
506     }
507
508     /* Parse the header and make some verifications.
509      * See RFC 3550. */
510     // Version number:
511     if( ( p_block->p_buffer[0] >> 6 ) != 2)
512     {
513         msg_Dbg( p_access, "RTP version is %u instead of 2",
514                  p_block->p_buffer[0] >> 6 );
515         goto trash;
516     }
517     // Padding bit:
518     uint8_t pad = (p_block->p_buffer[0] & 0x20)
519                     ? p_block->p_buffer[p_block->i_buffer - 1] : 0;
520     // CSRC count:
521     i_skip += (p_block->p_buffer[0] & 0x0F) * 4;
522     // Extension header:
523     if (p_block->p_buffer[0] & 0x10) /* Extension header */
524     {
525         i_skip += 4;
526         if ((size_t)p_block->i_buffer < i_skip)
527             goto trash;
528
529         i_skip += 4 * GetWBE( p_block->p_buffer + i_skip - 2 );
530     }
531
532     i_payload_type    = p_block->p_buffer[1] & 0x7F;
533
534     /* Remember sequence number in i_dts */
535     p_block->i_pts = mdate();
536     p_block->i_dts = (mtime_t) GetWBE( p_block->p_buffer + 2 );
537
538     /* FIXME: use rtpmap */
539     const char *psz_demux = NULL;
540
541     switch( i_payload_type )
542     {
543         case 14: // MPA: MPEG Audio (RFC2250, §3.4)
544             i_skip += 4; // 32 bits RTP/MPA header
545             psz_demux = "mpga";
546             break;
547
548         case 32: // MPV: MPEG Video (RFC2250, §3.5)
549             i_skip += 4; // 32 bits RTP/MPV header
550             if( (size_t)p_block->i_buffer < i_skip )
551                 goto trash;
552             if( p_block->p_buffer[i_skip - 3] & 0x4 )
553             {
554                 /* MPEG2 Video extension header */
555                 /* TODO: shouldn't we skip this too ? */
556             }
557             psz_demux = "mpgv";
558             break;
559
560         case 33: // MP2: MPEG TS (RFC2250, §2)
561             /* plain TS over RTP */
562             psz_demux = "ts";
563             break;
564
565         case 72: /* muxed SR */
566         case 73: /* muxed RR */
567         case 74: /* muxed SDES */
568         case 75: /* muxed BYE */
569         case 76: /* muxed APP */
570             goto trash; /* ooh! ignoring RTCP is evil! */
571
572         default:
573             msg_Dbg( p_access, "unsupported RTP payload type: %u", i_payload_type );
574             goto trash;
575     }
576
577     if( (size_t)p_block->i_buffer < (i_skip + pad) )
578         goto trash;
579
580     /* Remove the RTP header */
581     p_block->i_buffer -= i_skip;
582     p_block->p_buffer += i_skip;
583
584     /* This is the place for deciphering and authentication */
585
586     /* Remove padding (at the end) */
587     p_block->i_buffer -= pad;
588
589 #if 0
590     /* Emulate packet loss */
591     if ( (i_sequence_number % 4000) == 0)
592     {
593         msg_Warn( p_access, "Emulating packet drop" );
594         block_Release( p_block );
595         return NULL;
596     }
597 #endif
598
599     if( !p_access->psz_demux || !*p_access->psz_demux )
600     {
601         free( p_access->psz_demux );
602         p_access->psz_demux = strdup( psz_demux );
603     }
604
605     return p_block;
606
607 trash:
608     block_Release( p_block );
609     return NULL;
610 }
611
612 /*****************************************************************************
613  * BlockRTP: receives an RTP packet, parses it, queues it queue,
614  * then dequeues the oldest packet and returns it to input/demux.
615  ****************************************************************************/
616 static block_t *BlockRTP( access_t *p_access )
617 {
618     access_sys_t *p_sys = p_access->p_sys;
619     block_t *p;
620
621     while ( !p_sys->p_list ||
622              ( mdate() - p_sys->p_list->i_pts ) < p_sys->i_rtp_late )
623     {
624         p = BlockParseRTP( p_access,
625                            p_sys->b_framed_rtp ? BlockTCP( p_access )
626                                                : BlockUDP( p_access ) );
627         if ( !p )
628             return NULL;
629
630         rtp_ChainInsert( p_access, p );
631     }
632
633     p = p_sys->p_list;
634     p_sys->p_list = p_sys->p_list->p_next;
635     p_sys->i_last_seqno++;
636     if( p_sys->i_last_seqno != (uint16_t) p->i_dts )
637     {
638         msg_Dbg( p_access, "RTP: packet(s) lost, expected %d, got %d",
639                  p_sys->i_last_seqno, (uint16_t) p->i_dts );
640         p_sys->i_last_seqno = (uint16_t) p->i_dts;
641     }
642     p->p_next = NULL;
643     return p;
644 }
645
646 /*****************************************************************************
647  * BlockPrebufferRTP: waits until we have at least two RTP datagrams,
648  * so that we can synchronize the RTP sequence number.
649  * This is only useful for non-reliable transport protocols.
650  ****************************************************************************/
651 static block_t *BlockPrebufferRTP( access_t *p_access, block_t *p_block )
652 {
653     access_sys_t *p_sys = p_access->p_sys;
654     mtime_t   i_first = mdate();
655     int       i_count = 0;
656     block_t   *p = p_block;
657
658     if( BlockParseRTP( p_access, p_block ) == NULL )
659         return NULL;
660
661     for( ;; )
662     {
663         mtime_t i_date = mdate();
664
665         if( p && rtp_ChainInsert( p_access, p ))
666             i_count++;
667
668         /* Require at least 2 packets in the buffer */
669         if( i_count > 2 && (i_date - i_first) > p_sys->i_rtp_late )
670             break;
671
672         p = BlockParseRTP( p_access, BlockUDP( p_access ) );
673         if( !p && (i_date - i_first) > p_sys->i_rtp_late )
674         {
675             msg_Err( p_access, "error in RTP prebuffering!" );
676             return NULL;
677         }
678     }
679
680     msg_Dbg( p_access, "RTP: prebuffered %d packets", i_count - 1 );
681     p_access->info.b_prebuffered = VLC_TRUE;
682     p = p_sys->p_list;
683     p_sys->p_list = p_sys->p_list->p_next;
684     p_sys->i_last_seqno = (uint16_t) p->i_dts;
685     p->p_next = NULL;
686     return p;
687 }
688
689 static block_t *BlockStartRTP( access_t *p_access )
690 {
691     p_access->pf_block = BlockRTP;
692     return BlockPrebufferRTP( p_access, BlockUDP( p_access ) );
693 }
694
695
696 /*****************************************************************************
697  * BlockChoose: decide between RTP and UDP
698  *****************************************************************************/
699 static block_t *BlockChoose( access_t *p_access )
700 {
701     block_t *p_block;
702     int     i_rtp_version;
703     int     i_payload_type;
704
705     if( ( p_block = BlockUDP( p_access ) ) == NULL )
706         return NULL;
707
708     if( p_block->p_buffer[0] == 0x47 )
709     {
710         msg_Dbg( p_access, "detected TS over raw UDP" );
711         p_access->pf_block = BlockUDP;
712         p_access->info.b_prebuffered = VLC_TRUE;
713         return p_block;
714     }
715
716     if( p_block->i_buffer < RTP_HEADER_LEN )
717         return p_block;
718
719     /* Parse the header and make some verifications.
720      * See RFC 3550. */
721
722     i_rtp_version  = p_block->p_buffer[0] >> 6;
723     i_payload_type = ( p_block->p_buffer[1] & 0x7F );
724
725     if( i_rtp_version != 2 )
726     {
727         msg_Dbg( p_access, "no supported RTP header detected" );
728         p_access->pf_block = BlockUDP;
729         p_access->info.b_prebuffered = VLC_TRUE;
730         return p_block;
731     }
732
733     switch( i_payload_type )
734     {
735         case 33:
736             msg_Dbg( p_access, "detected MPEG2 TS over RTP" );
737             p_access->psz_demux = strdup( "ts" );
738             break;
739
740         case 14:
741             msg_Dbg( p_access, "detected MPEG Audio over RTP" );
742             p_access->psz_demux = strdup( "mpga" );
743             break;
744
745         case 32:
746             msg_Dbg( p_access, "detected MPEG Video over RTP" );
747             p_access->psz_demux = strdup( "mpgv" );
748             break;
749
750         default:
751             msg_Dbg( p_access, "no RTP header detected" );
752             p_access->pf_block = BlockUDP;
753             p_access->info.b_prebuffered = VLC_TRUE;
754             return p_block;
755     }
756
757     p_access->pf_block = BlockRTP;
758     return BlockPrebufferRTP( p_access, p_block );
759 }