]> git.sesse.net Git - vlc/blob - modules/demux/ps.h
* ps: lalalala, fixed a bug in dts/pts parsing.
[vlc] / modules / demux / ps.h
1 /*****************************************************************************
2  * ps.h: Program Stream demuxer helper
3  *****************************************************************************
4  * Copyright (C) 2004 VideoLAN
5  * $Id: ps.h,v 1.5 2004/01/30 01:09:24 fenrir Exp $
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 #define PS_TK_COUNT (512 - 0xc0)
25 #define PS_ID_TO_TK( id ) ((id) <= 0xff ? (id) - 0xc0 : ((id)&0xff) + (256 - 0xc0))
26
27 typedef struct
28 {
29     vlc_bool_t  b_seen;
30     int         i_skip;
31     es_out_id_t *es;
32     es_format_t fmt;
33 } ps_track_t;
34
35 /* Init a set of track */
36 static inline void ps_track_init( ps_track_t tk[PS_TK_COUNT] )
37 {
38     int i;
39     for( i = 0; i < PS_TK_COUNT; i++ )
40     {
41         tk[i].b_seen = VLC_FALSE;
42         tk[i].i_skip = 0;
43         tk[i].es     = NULL;
44         es_format_Init( &tk[i].fmt, UNKNOWN_ES, 0 );
45     }
46 }
47
48 /* From id fill i_skip and es_format_t */
49 static inline int ps_track_fill( ps_track_t *tk, int i_id )
50 {
51     tk->i_skip = 0;
52     if( ( i_id&0xff00 ) == 0xbd00 )
53     {
54         if( ( i_id&0xf8 ) == 0x88 )
55         {
56             es_format_Init( &tk->fmt, AUDIO_ES, VLC_FOURCC('d','t','s',' ') );
57             tk->i_skip = 4;
58         }
59         else if( ( i_id&0xf0 ) == 0x80 )
60         {
61             es_format_Init( &tk->fmt, AUDIO_ES, VLC_FOURCC('a','5','2',' ') );
62             tk->i_skip = 4;
63         }
64         else if( ( i_id&0xe0 ) == 0x20 )
65         {
66             es_format_Init( &tk->fmt, SPU_ES, VLC_FOURCC('s','p','u',' ') );
67             tk->i_skip = 1;
68         }
69         else if( ( i_id&0xf0 ) == 0xa0 )
70         {
71             es_format_Init( &tk->fmt, AUDIO_ES, VLC_FOURCC('l','p','c','m') );
72             tk->i_skip = 1;
73         }
74         else if( ( i_id&0xff ) == 0x70 )
75         {
76             es_format_Init( &tk->fmt, SPU_ES, VLC_FOURCC('o','g','t',' ') );
77         }
78         else if( ( i_id&0xfc ) == 0x00 )
79         {
80             es_format_Init( &tk->fmt, SPU_ES, VLC_FOURCC('c','v','d',' ') );
81         }
82         else
83         {
84             es_format_Init( &tk->fmt, UNKNOWN_ES, 0 );
85             return VLC_EGENERIC;
86         }
87     }
88     else
89     {
90         if( ( i_id&0xf0 ) == 0xe0 )
91         {
92             es_format_Init( &tk->fmt, VIDEO_ES, VLC_FOURCC('m','p','g','v') );
93         }
94         else if( ( i_id&0xe0 ) == 0xc0 )
95         {
96             es_format_Init( &tk->fmt, AUDIO_ES, VLC_FOURCC('m','p','g','a') );
97         }
98         else
99         {
100             es_format_Init( &tk->fmt, UNKNOWN_ES, 0 );
101             return VLC_EGENERIC;
102         }
103     }
104     return VLC_SUCCESS;
105 }
106
107 /* return the id of a PES (should be valid) */
108 static inline int ps_pkt_id( block_t *p_pkt )
109 {
110     if( p_pkt->p_buffer[3] == 0xbd &&
111         p_pkt->i_buffer >= 9 &&
112         p_pkt->i_buffer >= 9 + p_pkt->p_buffer[8] )
113     {
114         return 0xbd00 | p_pkt->p_buffer[9+p_pkt->p_buffer[8]];
115     }
116     return p_pkt->p_buffer[3];
117 }
118
119 /* return the size of the next packet
120  * XXX you need to give him at least 14 bytes (and it need to start as a
121  * valid packet) */
122 static inline int ps_pkt_size( uint8_t *p, int i_peek )
123 {
124     if( p[3] == 0xb9 && i_peek >= 4 )
125     {
126         return 4;
127     }
128     else if( p[3] == 0xba )
129     {
130         if( (p[4] >> 6) == 0x01 && i_peek >= 14 )
131         {
132             return 14 + (p[13]&0x07);
133         }
134         else if( (p[4] >> 4) == 0x02 && i_peek >= 12 )
135         {
136             return 12;
137         }
138         return -1;
139     }
140     else if( i_peek >= 6 )
141     {
142         return 6 + ((p[4]<<8) | p[5] );
143     }
144     return -1;
145 }
146
147 /* parse a PACK PES */
148 static inline int ps_pkt_parse_pack( block_t *p_pkt, int64_t *pi_scr,
149                                      int *pi_mux_rate )
150 {
151     uint8_t *p = p_pkt->p_buffer;
152     if( p_pkt->i_buffer >= 14 && (p[4] >> 6) == 0x01 )
153     {
154         *pi_scr =((((int64_t)p[4]&0x38) << 27 )|
155                   (((int64_t)p[4]&0x03) << 28 )|
156                    ((int64_t)p[5] << 20 )|
157                   (((int64_t)p[6]&0xf8) << 12 )|
158                   (((int64_t)p[6]&0x03) << 13 )|
159                    ((int64_t)p[7] << 5 )|
160                    ((int64_t)p[8] >> 3 )) * 100 / 9;
161
162         *pi_mux_rate = ( p[10] << 14 )|( p[11] << 6 )|( p[12] >> 2);
163     }
164     else if( p_pkt->i_buffer >= 12 && (p[4] >> 4) == 0x02 )
165     {
166         *pi_scr =((((int64_t)p[4]&0x0e) << 29 )|
167                    ((int64_t)p[5] << 22 )|
168                   (((int64_t)p[6]&0xfe) << 14 )|
169                    ((int64_t)p[7] <<  7 )|
170                    ((int64_t)p[8] >> 1 )) * 100 / 9;
171
172         *pi_mux_rate = ( ( p[9]&0x7f )<< 15 )|( p[10] << 7 )|( p[11] >> 1);
173     }
174     else
175     {
176         return VLC_EGENERIC;
177     }
178     return VLC_SUCCESS;
179 }
180
181 /* Parse a SYSTEM PES */
182 static inline int ps_pkt_parse_system( block_t *p_pkt,
183                                        ps_track_t tk[PS_TK_COUNT] )
184 {
185     uint8_t *p = &p_pkt->p_buffer[6 + 3 + 1 + 1 + 1];
186
187     while( p < &p_pkt->p_buffer[p_pkt->i_buffer] )
188     {
189         /* msg_Dbg( p_demux, "   SYSTEM_START_CODE: id=0x%x", p[0] ); */
190         if( p[0] != 0xbd )
191         {
192             int i_id = p[0];
193             int i_tk = PS_ID_TO_TK( i_id );
194
195             if( !tk[i_tk].b_seen )
196             {
197                 if( !ps_track_fill( &tk[i_tk], i_id ) )
198                 {
199                     tk[i_tk].b_seen = VLC_TRUE;
200                 }
201             }
202             p += 2;
203         }
204         p++;
205     }
206     return VLC_SUCCESS;
207 }
208
209 /* Parse a PES (and skip i_skip_extra in the payload) */
210 static inline int ps_pkt_parse_pes( block_t *p_pes, int i_skip_extra )
211 {
212     uint8_t header[30];
213     int     i_skip  = 0;
214
215     memcpy( header, p_pes->p_buffer, __MIN( p_pes->i_buffer, 30 ) );
216
217     switch( header[3] )
218     {
219         case 0xBC:  /* Program stream map */
220         case 0xBE:  /* Padding */
221         case 0xBF:  /* Private stream 2 */
222         case 0xB0:  /* ECM */
223         case 0xB1:  /* EMM */
224         case 0xFF:  /* Program stream directory */
225         case 0xF2:  /* DSMCC stream */
226         case 0xF8:  /* ITU-T H.222.1 type E stream */
227             i_skip = 6;
228             break;
229
230         default:
231             if( ( header[6]&0xC0 ) == 0x80 )
232             {
233                 /* mpeg2 PES */
234                 i_skip = header[8] + 9;
235
236                 if( header[7]&0x80 )    /* has pts */
237                 {
238                     p_pes->i_pts = ((mtime_t)(header[ 9]&0x0e ) << 29)|
239                                     (mtime_t)(header[10] << 22)|
240                                    ((mtime_t)(header[11]&0xfe) << 14)|
241                                     (mtime_t)(header[12] << 7)|
242                                     (mtime_t)(header[13] >> 1);
243
244                     if( header[7]&0x40 )    /* has dts */
245                     {
246                          p_pes->i_dts = ((mtime_t)(header[14]&0x0e ) << 29)|
247                                          (mtime_t)(header[15] << 22)|
248                                         ((mtime_t)(header[16]&0xfe) << 14)|
249                                          (mtime_t)(header[17] << 7)|
250                                          (mtime_t)(header[18] >> 1);
251                     }
252                 }
253             }
254             else
255             {
256                 i_skip = 6;
257                 while( i_skip < 23 && header[i_skip] == 0xff )
258                 {
259                     i_skip++;
260                 }
261                 if( i_skip == 23 )
262                 {
263                     /* msg_Err( p_demux, "too much MPEG-1 stuffing" ); */
264                     return VLC_EGENERIC;
265                 }
266                 if( ( header[i_skip] & 0xC0 ) == 0x40 )
267                 {
268                     i_skip += 2;
269                 }
270
271                 if(  header[i_skip]&0x20 )
272                 {
273                      p_pes->i_pts = ((mtime_t)(header[i_skip]&0x0e ) << 29)|
274                                      (mtime_t)(header[i_skip+1] << 22)|
275                                     ((mtime_t)(header[i_skip+2]&0xfe) << 14)|
276                                      (mtime_t)(header[i_skip+3] << 7)|
277                                      (mtime_t)(header[i_skip+4] >> 1);
278
279                     if( header[i_skip]&0x10 )    /* has dts */
280                     {
281                          p_pes->i_dts = ((mtime_t)(header[i_skip+5]&0x0e ) << 29)|
282                                          (mtime_t)(header[i_skip+6] << 22)|
283                                         ((mtime_t)(header[i_skip+7]&0xfe) << 14)|
284                                          (mtime_t)(header[i_skip+8] << 7)|
285                                          (mtime_t)(header[i_skip+9] >> 1);
286                          i_skip += 10;
287                     }
288                     else
289                     {
290                         i_skip += 5;
291                     }
292                 }
293                 else
294                 {
295                     i_skip += 1;
296                 }
297             }
298     }
299
300     i_skip += i_skip_extra;
301
302     if( p_pes->i_buffer <= i_skip )
303     {
304         return VLC_EGENERIC;
305     }
306
307     p_pes->p_buffer += i_skip;
308     p_pes->i_buffer -= i_skip;
309
310     p_pes->i_dts = 100 * p_pes->i_dts / 9;
311     p_pes->i_pts = 100 * p_pes->i_pts / 9;
312
313     return VLC_SUCCESS;
314 }