]> git.sesse.net Git - vlc/blob - modules/access/udp.c
Attempt to fix today's RTP access changes
[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;
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_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             break;
238     }
239     free (psz_name);
240     if( p_sys->fd == -1 )
241     {
242         msg_Err( p_access, "cannot open socket" );
243         free( p_sys );
244         return VLC_EGENERIC;
245     }
246
247     shutdown( p_sys->fd, SHUT_WR );
248     net_SetCSCov (p_sys->fd, -1, 12);
249
250     /* Update default_pts to a suitable value for udp access */
251     var_Create( p_access, "udp-caching", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
252
253     /* RTP reordering for out-of-sequence packets */
254     p_sys->i_rtp_late = var_CreateGetInteger( p_access, "rtp-late" ) * 1000;
255     p_sys->i_last_seqno = 0;
256     p_sys->p_list = NULL;
257     p_sys->p_end = NULL;
258     return VLC_SUCCESS;
259 }
260
261 /*****************************************************************************
262  * Close: free unused data structures
263  *****************************************************************************/
264 static void Close( vlc_object_t *p_this )
265 {
266     access_t     *p_access = (access_t*)p_this;
267     access_sys_t *p_sys = p_access->p_sys;
268
269     block_ChainRelease( p_sys->p_list );
270     net_Close( p_sys->fd );
271     free( p_sys );
272 }
273
274 /*****************************************************************************
275  * Control:
276  *****************************************************************************/
277 static int Control( access_t *p_access, int i_query, va_list args )
278 {
279     vlc_bool_t   *pb_bool;
280     int          *pi_int;
281     int64_t      *pi_64;
282
283     switch( i_query )
284     {
285         /* */
286         case ACCESS_CAN_SEEK:
287         case ACCESS_CAN_FASTSEEK:
288         case ACCESS_CAN_PAUSE:
289         case ACCESS_CAN_CONTROL_PACE:
290             pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
291             *pb_bool = VLC_FALSE;
292             break;
293         /* */
294         case ACCESS_GET_MTU:
295             pi_int = (int*)va_arg( args, int * );
296             *pi_int = MTU;
297             break;
298
299         case ACCESS_GET_PTS_DELAY:
300             pi_64 = (int64_t*)va_arg( args, int64_t * );
301             *pi_64 = var_GetInteger( p_access, "udp-caching" ) * 1000;
302             break;
303
304         /* */
305         case ACCESS_SET_PAUSE_STATE:
306         case ACCESS_GET_TITLE_INFO:
307         case ACCESS_SET_TITLE:
308         case ACCESS_SET_SEEKPOINT:
309         case ACCESS_SET_PRIVATE_ID_STATE:
310             return VLC_EGENERIC;
311
312         default:
313             msg_Warn( p_access, "unimplemented query in control" );
314             return VLC_EGENERIC;
315
316     }
317     return VLC_SUCCESS;
318 }
319
320 /*****************************************************************************
321  * BlockUDP:
322  *****************************************************************************/
323 static block_t *BlockUDP( access_t *p_access )
324 {
325     access_sys_t *p_sys = p_access->p_sys;
326     block_t      *p_block;
327
328     /* Read data */
329     p_block = block_New( p_access, MTU );
330     p_block->i_buffer = net_Read( p_access, p_sys->fd, NULL,
331                                   p_block->p_buffer, MTU, VLC_FALSE );
332     if( p_block->i_buffer < 0 )
333     {
334         block_Release( p_block );
335         return NULL;
336     }
337
338     return block_Realloc( p_block, 0, p_block->i_buffer );
339 }
340
341 /*****************************************************************************
342  * BlockTCP: Framed RTP/AVP packet reception for COMEDIA (see RFC4571)
343  *****************************************************************************/
344 static block_t *BlockTCP( access_t *p_access )
345 {
346     access_sys_t *p_sys = p_access->p_sys;
347     block_t      *p_block = p_sys->p_partial_frame;
348
349     if( p_access->info.b_eof )
350         return NULL;
351
352     if( p_block == NULL )
353     {
354         /* MTU should always be 65535 in this case */
355         p_sys->p_partial_frame = p_block = block_New( p_access, 2 + MTU );
356         if (p_block == NULL)
357             return NULL;
358     }
359
360     /* Read RTP framing */
361     if (p_block->i_buffer < 2)
362     {
363         int i_read = net_Read( p_access, p_sys->fd, NULL,
364                                p_block->p_buffer + p_block->i_buffer,
365                                2 - p_block->i_buffer, VLC_FALSE );
366         if( i_read <= 0 )
367             goto error;
368
369         p_block->i_buffer += i_read;
370         if (p_block->i_buffer < 2)
371             return NULL;
372     }
373
374     uint16_t framelen = GetWLE( p_block->p_buffer );
375     /* Read RTP frame */
376     if( framelen > 0 )
377     {
378         int i_read = net_Read( p_access, p_sys->fd, NULL,
379                                p_block->p_buffer + p_block->i_buffer,
380                                2 + framelen - p_block->i_buffer, VLC_FALSE );
381         if( i_read <= 0 )
382             goto error;
383
384         p_block->i_buffer += i_read;
385     }
386
387     if( p_block->i_buffer < (2 + framelen) )
388         return NULL; // incomplete frame
389
390     /* Hide framing from RTP layer */
391     p_block->p_buffer += 2;
392     p_block->i_buffer -= 2;
393     p_sys->p_partial_frame = NULL;
394     return p_block;
395
396 error:
397     p_access->info.b_eof = VLC_TRUE;
398     block_Release( p_block );
399     p_sys->p_partial_frame = NULL;
400     return NULL;
401 }
402
403
404 /*
405  * rtp_ChainInsert - insert a p_block in the chain and
406  * look at the sequence numbers.
407  */
408 static inline vlc_bool_t rtp_ChainInsert( access_t *p_access, block_t *p_block )
409 {
410     access_sys_t *p_sys = (access_sys_t *) p_access->p_sys;
411     block_t *p_prev = NULL;
412     block_t *p = p_sys->p_end;
413     uint16_t i_new = (uint16_t) p_block->i_dts;
414     uint16_t i_tmp = 0;
415
416     if( !p_sys->p_list )
417     {
418         p_sys->p_list = p_block;
419         p_sys->p_end = p_block;
420         return VLC_TRUE;
421     }
422     /* walk through the queue from top down since the new packet is in
423     most cases just appended to the end */
424
425     for( ;; )
426     {
427         i_tmp = i_new - (uint16_t) p->i_dts;
428
429         if( !i_tmp )   /* trash duplicate */
430             break;
431
432         if ( i_tmp < 32768 )
433         {   /* insert after this block ( i_new > p->i_dts ) */
434             p_block->p_next = p->p_next;
435             p->p_next = p_block;
436             p_block->p_prev = p;
437             if (p_prev)
438             {
439                 p_prev->p_prev = p_block;
440                 msg_Dbg(p_access, "RTP reordering: insert after %d, new %d",
441                         (uint16_t) p->i_dts, i_new );
442             }
443             else
444             {
445                 p_sys->p_end = p_block;
446             }
447             return VLC_TRUE;
448         }
449         if( p == p_sys->p_list )
450         {   /* we've reached bottom of chain */
451             i_tmp = p_sys->i_last_seqno - i_new;
452             if( !p_access->info.b_prebuffered || (i_tmp > 32767) )
453             {
454                 msg_Dbg(p_access, "RTP reordering: prepend %d before %d",
455                         i_new, (uint16_t) p->i_dts );
456                 p_block->p_next = p;
457                 p->p_prev = p_block;
458                 p_sys->p_list = p_block;
459                 return VLC_TRUE;
460             }
461
462             if( !i_tmp )   /* trash duplicate */
463                 break;
464
465             /* reordering failed - append the packet to the end of queue */
466             msg_Dbg(p_access, "RTP: sequence changed (or buffer too small) "
467                     "new: %d, buffer %d...%d", i_new, (uint16_t) p->i_dts,
468                 (uint16_t) p_sys->p_end->i_dts);
469             p_sys->p_end->p_next = p_block;
470             p_block->p_prev = p_sys->p_end;
471             p_sys->p_end = p_block;
472             return VLC_TRUE;
473         }
474         p_prev = p;
475         p = p->p_prev;
476     }
477     block_Release( p_block );
478     return VLC_FALSE;
479 }
480
481 /*****************************************************************************
482  * BlockParseRTP: decapsulate the RTP packet and return it
483  *****************************************************************************/
484 static block_t *BlockParseRTP( access_t *p_access, block_t *p_block )
485 {
486     int      i_payload_type;
487     size_t   i_skip = RTP_HEADER_LEN;
488
489     if( p_block == NULL )
490         return NULL;
491
492     if( p_block->i_buffer < RTP_HEADER_LEN )
493     {
494         msg_Dbg( p_access, "short RTP packet received" );
495         goto trash;
496     }
497
498     /* Parse the header and make some verifications.
499      * See RFC 3550. */
500     // Version number:
501     if( ( p_block->p_buffer[0] >> 6 ) != 2)
502     {
503         msg_Dbg( p_access, "RTP version is %u instead of 2",
504                  p_block->p_buffer[0] >> 6 );
505         goto trash;
506     }
507     // Padding bit:
508     uint8_t pad = (p_block->p_buffer[0] & 0x20)
509                     ? p_block->p_buffer[p_block->i_buffer - 1] : 0;
510     // CSRC count:
511     i_skip += (p_block->p_buffer[0] & 0x0F) * 4;
512     // Extension header:
513     if (p_block->p_buffer[0] & 0x10) /* Extension header */
514     {
515         i_skip += 4;
516         if ((size_t)p_block->i_buffer < i_skip)
517             goto trash;
518
519         i_skip += 4 * GetWBE( p_block->p_buffer + i_skip - 2 );
520     }
521
522     i_payload_type    = p_block->p_buffer[1] & 0x7F;
523
524     /* Remember sequence number in i_dts */
525     p_block->i_pts = mdate();
526     p_block->i_dts = (mtime_t) GetWBE( p_block->p_buffer + 2 );
527
528     /* FIXME: use rtpmap */
529     const char *psz_demux = NULL;
530
531     switch( i_payload_type )
532     {
533         case 14: // MPA: MPEG Audio (RFC2250, §3.4)
534             i_skip += 4; // 32 bits RTP/MPA header
535             psz_demux = "mpga";
536             break;
537
538         case 32: // MPV: MPEG Video (RFC2250, §3.5)
539             i_skip += 4; // 32 bits RTP/MPV header
540             if( (size_t)p_block->i_buffer < i_skip )
541                 goto trash;
542             if( p_block->p_buffer[i_skip - 3] & 0x4 )
543             {
544                 /* MPEG2 Video extension header */
545                 /* TODO: shouldn't we skip this too ? */
546             }
547             psz_demux = "mpgv";
548             break;
549
550         case 33: // MP2: MPEG TS (RFC2250, §2)
551             /* plain TS over RTP */
552             psz_demux = "ts";
553             break;
554
555         case 72: /* muxed SR */
556         case 73: /* muxed RR */
557         case 74: /* muxed SDES */
558         case 75: /* muxed BYE */
559         case 76: /* muxed APP */
560             goto trash; /* ooh! ignoring RTCP is evil! */
561
562         default:
563             msg_Dbg( p_access, "unsupported RTP payload type: %u", i_payload_type );
564             goto trash;
565     }
566
567     if( (size_t)p_block->i_buffer < (i_skip + pad) )
568         goto trash;
569
570     /* Remove the RTP header */
571     p_block->i_buffer -= i_skip;
572     p_block->p_buffer += i_skip;
573
574     /* This is the place for deciphering and authentication */
575
576     /* Remove padding (at the end) */
577     p_block->i_buffer -= pad;
578
579 #if 0
580     /* Emulate packet loss */
581     if ( (i_sequence_number % 4000) == 0)
582     {
583         msg_Warn( p_access, "Emulating packet drop" );
584         block_Release( p_block );
585         return NULL;
586     }
587 #endif
588
589     if( !p_access->psz_demux || !*p_access->psz_demux )
590     {
591         free( p_access->psz_demux );
592         p_access->psz_demux = strdup( psz_demux );
593     }
594
595     return p_block;
596
597 trash:
598     block_Release( p_block );
599     return NULL;
600 }
601
602 /*****************************************************************************
603  * BlockRTP: receives an RTP packet, parses it, queues it queue,
604  * then dequeues the oldest packet and returns it to input/demux.
605  ****************************************************************************/
606 static block_t *BlockRTP( access_t *p_access )
607 {
608     access_sys_t *p_sys = p_access->p_sys;
609     block_t *p;
610
611     while ( !p_sys->p_list ||
612              ( mdate() - p_sys->p_list->i_pts ) < p_sys->i_rtp_late )
613     {
614         p = BlockParseRTP( p_access,
615                            p_sys->b_framed_rtp ? BlockTCP( p_access )
616                                                : BlockUDP( p_access ) );
617         if ( !p )
618             return NULL;
619
620         rtp_ChainInsert( p_access, p );
621     }
622
623     p = p_sys->p_list;
624     p_sys->p_list = p_sys->p_list->p_next;
625     p_sys->i_last_seqno++;
626     if( p_sys->i_last_seqno != (uint16_t) p->i_dts )
627     {
628         msg_Dbg( p_access, "RTP: packet(s) lost, expected %d, got %d",
629                  p_sys->i_last_seqno, (uint16_t) p->i_dts );
630         p_sys->i_last_seqno = (uint16_t) p->i_dts;
631     }
632     p->p_next = NULL;
633     return p;
634 }
635
636 /*****************************************************************************
637  * BlockPrebufferRTP: waits until we have at least two RTP datagrams,
638  * so that we can synchronize the RTP sequence number.
639  * This is only useful for non-reliable transport protocols.
640  ****************************************************************************/
641 static block_t *BlockPrebufferRTP( access_t *p_access, block_t *p_block )
642 {
643     access_sys_t *p_sys = p_access->p_sys;
644     mtime_t   i_first = mdate();
645     int       i_count = 0;
646     block_t   *p = p_block;
647
648     if( BlockParseRTP( p_access, p_block ) == NULL )
649         return NULL;
650
651     for( ;; )
652     {
653         mtime_t i_date = mdate();
654
655         if( p && rtp_ChainInsert( p_access, p ))
656             i_count++;
657
658         /* Require at least 2 packets in the buffer */
659         if( i_count > 2 && (i_date - i_first) > p_sys->i_rtp_late )
660             break;
661
662         p = BlockParseRTP( p_access, BlockUDP( p_access ) );
663         if( !p && (i_date - i_first) > p_sys->i_rtp_late )
664         {
665             msg_Err( p_access, "error in RTP prebuffering!" );
666             return NULL;
667         }
668     }
669
670     msg_Dbg( p_access, "RTP: prebuffered %d packets", i_count - 1 );
671     p_access->info.b_prebuffered = VLC_TRUE;
672     p = p_sys->p_list;
673     p_sys->p_list = p_sys->p_list->p_next;
674     p_sys->i_last_seqno = (uint16_t) p->i_dts;
675     p->p_next = NULL;
676     return p;
677 }
678
679 static block_t *BlockStartRTP( access_t *p_access )
680 {
681     return BlockPrebufferRTP( p_access, BlockUDP( p_access ) );
682 }
683
684
685 /*****************************************************************************
686  * BlockChoose: decide between RTP and UDP
687  *****************************************************************************/
688 static block_t *BlockChoose( access_t *p_access )
689 {
690     block_t *p_block;
691     int     i_rtp_version;
692     int     i_payload_type;
693
694     if( ( p_block = BlockUDP( p_access ) ) == NULL )
695         return NULL;
696
697     if( p_block->p_buffer[0] == 0x47 )
698     {
699         msg_Dbg( p_access, "detected TS over raw UDP" );
700         p_access->pf_block = BlockUDP;
701         p_access->info.b_prebuffered = VLC_TRUE;
702         return p_block;
703     }
704
705     if( p_block->i_buffer < RTP_HEADER_LEN )
706         return p_block;
707
708     /* Parse the header and make some verifications.
709      * See RFC 3550. */
710
711     i_rtp_version  = p_block->p_buffer[0] >> 6;
712     i_payload_type = ( p_block->p_buffer[1] & 0x7F );
713
714     if( i_rtp_version != 2 )
715     {
716         msg_Dbg( p_access, "no supported RTP header detected" );
717         p_access->pf_block = BlockUDP;
718         p_access->info.b_prebuffered = VLC_TRUE;
719         return p_block;
720     }
721
722     switch( i_payload_type )
723     {
724         case 33:
725             msg_Dbg( p_access, "detected MPEG2 TS over RTP" );
726             p_access->psz_demux = strdup( "ts" );
727             break;
728
729         case 14:
730             msg_Dbg( p_access, "detected MPEG Audio over RTP" );
731             p_access->psz_demux = strdup( "mpga" );
732             break;
733
734         case 32:
735             msg_Dbg( p_access, "detected MPEG Video over RTP" );
736             p_access->psz_demux = strdup( "mpgv" );
737             break;
738
739         default:
740             msg_Dbg( p_access, "no RTP header detected" );
741             p_access->pf_block = BlockUDP;
742             p_access->info.b_prebuffered = VLC_TRUE;
743             return p_block;
744     }
745
746     p_access->pf_block = BlockRTP;
747     return BlockPrebufferRTP( p_access, p_block );
748 }