]> git.sesse.net Git - vlc/blob - modules/mux/mpeg/pes.c
* ALL: Finally fixed the MSVC project files.
[vlc] / modules / mux / mpeg / pes.c
1 /*****************************************************************************
2  * pes.c
3  *****************************************************************************
4  * Copyright (C) 2001, 2002 VideoLAN
5  * $Id: pes.c,v 1.5 2003/03/03 14:21:08 gbazin Exp $
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *          Eric Petit <titer@videolan.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28 #include <stdlib.h>
29 #include <sys/types.h>
30 #include <sys/stat.h>
31 #include <string.h>
32 #include <errno.h>
33 #include <fcntl.h>
34
35 #include <vlc/vlc.h>
36 #include <vlc/input.h>
37 #include <vlc/sout.h>
38
39 #ifdef HAVE_UNISTD_H
40 #   include <unistd.h>
41 #endif
42
43 #include "codecs.h"
44 #include "pes.h"
45 #include "bits.h"
46
47 #define PES_PAYLOAD_SIZE_MAX 65500
48
49 static inline int PESHeader( uint8_t *p_hdr, mtime_t i_pts, mtime_t i_dts, int i_es_size, int i_stream_id, int i_private_id )
50 {
51     bits_buffer_t bits;
52
53     bits_initwrite( &bits, 30, p_hdr );
54
55     /* add start code */
56     bits_write( &bits, 24, 0x01 );
57     bits_write( &bits, 8, i_stream_id );
58     switch( i_stream_id )
59     {
60         case PES_PROGRAM_STREAM_MAP:
61         case PES_PADDING:
62         case PES_PRIVATE_STREAM_2:
63         case PES_ECM:
64         case PES_EMM:
65         case PES_PROGRAM_STREAM_DIRECTORY:
66         case PES_DSMCC_STREAM:
67         case PES_ITU_T_H222_1_TYPE_E_STREAM:
68             /* add pes data size  */
69             bits_write( &bits, 16, i_es_size );
70             bits_align( &bits );
71             return( bits.i_data );
72
73         default:
74             /* arg, a little more difficult */
75 //            if( b_mpeg2 ) // FIXME unsupported
76             {
77                 int     i_pts_dts;
78                 int     i_extra = 0;
79
80                 /* *** for PES_PRIVATE_STREAM_1 there is an extra header after the pes hdr *** */
81                 if( i_stream_id == PES_PRIVATE_STREAM_1 )
82                 {
83                     i_extra = 1;
84                     if( ( i_private_id&0xf0 ) == 0x80 )
85                     {
86                         i_extra += 3;
87                     }
88                 }
89
90                 if( i_dts >= 0 )
91                 {
92                     bits_write( &bits, 16, i_es_size + i_extra+ 13 );
93                     i_pts_dts = 0x03;
94                 }
95                 else
96                 {
97                     bits_write( &bits, 16, i_es_size  + i_extra + 8 );
98                     i_pts_dts = 0x02;
99                 }
100
101                 bits_write( &bits, 2, 0x02 ); // mpeg2 id
102                 bits_write( &bits, 2, 0x00 ); // pes scrambling control
103                 bits_write( &bits, 1, 0x00 ); // pes priority
104                 bits_write( &bits, 1, 0x00 ); // data alignement indicator
105                 bits_write( &bits, 1, 0x00 ); // copyright
106                 bits_write( &bits, 1, 0x00 ); // original or copy
107
108                 bits_write( &bits, 2, i_pts_dts ); // pts_dts flags
109                 bits_write( &bits, 1, 0x00 ); // escr flags
110                 bits_write( &bits, 1, 0x00 ); // es rate flag
111                 bits_write( &bits, 1, 0x00 ); // dsm trick mode flag
112                 bits_write( &bits, 1, 0x00 ); // additional copy info flag
113                 bits_write( &bits, 1, 0x00 ); // pes crc flag
114                 bits_write( &bits, 1, 0x00 ); // pes extention flags
115                 if( i_pts_dts & 0x01 )
116                 {
117                     bits_write( &bits, 8, 0x0a ); // header size -> pts and dts
118                 }
119                 else
120                 {
121                     bits_write( &bits, 8, 0x05 ); // header size -> pts
122                 }
123
124                 /* write pts */
125                 bits_write( &bits, 4, i_pts_dts ); // '0010' or '0011'
126                 bits_write( &bits, 3, i_pts >> 30 );
127                 bits_write( &bits, 1, 0x01 ); // marker
128                 bits_write( &bits, 15, i_pts >> 15 );
129                 bits_write( &bits, 1, 0x01 ); // marker
130                 bits_write( &bits, 15, i_pts );
131                 bits_write( &bits, 1, 0x01 ); // marker
132
133                 /* write i_dts */
134                 if( i_pts_dts & 0x01 )
135                 {
136                     bits_write( &bits, 4, 0x01 ); // '0001'
137                     bits_write( &bits, 3, i_dts >> 30 );
138                     bits_write( &bits, 1, 0x01 ); // marker
139                     bits_write( &bits, 15, i_dts >> 15 );
140                     bits_write( &bits, 1, 0x01 ); // marker
141                     bits_write( &bits, 15, i_dts );
142                     bits_write( &bits, 1, 0x01 ); // marker
143                 }
144             }
145             /* now should be stuffing */
146             /* and then pes data */
147
148             bits_align( &bits );
149             if( i_stream_id == PES_PRIVATE_STREAM_1 && i_private_id != -1 )
150             {
151                 bits_write( &bits, 8, i_private_id );
152                 if( ( i_private_id&0xf0 ) == 0x80 )
153                 {
154                     bits_write( &bits, 24, 0 ); // ac3
155                 }
156             }
157             bits_align( &bits );
158             return( bits.i_data );
159     }
160 }
161
162 int E_( EStoPES )( sout_instance_t *p_sout,
163                    sout_buffer_t **pp_pes,
164                    sout_buffer_t *p_es,
165                    int i_stream_id,
166                    int b_mpeg2 )
167 {
168     sout_buffer_t *p_es_sav, *p_pes;
169     mtime_t i_pts, i_dts;
170
171     uint8_t *p_data;
172     int     i_size;
173
174     int     i_private_id = -1;
175
176     uint8_t header[30];     // PES header + extra < 30 (more like 17)
177     int     i_pes_payload;
178     int     i_pes_header;
179
180     /* HACK for private stream 1 in ps */
181     if( ( i_stream_id >> 8 ) == PES_PRIVATE_STREAM_1 )
182     {
183         i_private_id = i_stream_id & 0xff;
184         i_stream_id  = PES_PRIVATE_STREAM_1;
185     }
186
187     i_pts = p_es->i_pts * 9 / 100; // 90000 units clock
188     i_dts = p_es->i_dts * 9 / 100; // 90000 units clock
189
190     i_size = p_es->i_size;
191     p_data = p_es->p_buffer;
192
193     *pp_pes = p_pes = NULL;
194     p_es_sav = p_es;
195
196     do
197     {
198         i_pes_payload = __MIN( i_size, PES_PAYLOAD_SIZE_MAX );
199         i_pes_header  = PESHeader( header, i_pts, i_dts, i_pes_payload, i_stream_id, i_private_id );
200         i_dts = -1; // only first PES has a dts
201
202         if( p_es  )
203         {
204             if( sout_BufferReallocFromPreHeader( p_sout, p_es, i_pes_header ) )
205             {
206                 msg_Err( p_sout, "cannot realloc prehader (should never happen)" );
207                 return( -1 );
208             }
209             /* reuse p_es for first frame */
210             *pp_pes = p_pes = p_es;
211             /* don't touch i_dts, i_pts, i_length as are already set :) */
212             p_es = NULL;
213         }
214         else
215         {
216             p_pes->p_next = sout_BufferNew( p_sout, i_pes_header + i_pes_payload );
217             p_pes = p_pes->p_next;
218
219             p_pes->i_dts    = 0;
220             p_pes->i_pts    = 0;
221             p_pes->i_length = 0;
222             if( i_pes_payload > 0 )
223             {
224                 p_sout->p_vlc->pf_memcpy( p_pes->p_buffer + i_pes_header, p_data, i_pes_payload );
225             }
226         }
227
228         /* copy header */
229         memcpy( p_pes->p_buffer, header, i_pes_header );
230
231         i_size -= i_pes_payload;
232         p_data += i_pes_payload;
233         p_pes->i_size =  i_pes_header + i_pes_payload;
234
235     } while( i_size > 0 );
236
237     /* sav some space */
238     if( p_es_sav->i_size + 10*1024 < p_es_sav->i_buffer_size )
239     {
240         sout_BufferRealloc( p_sout, p_es_sav, p_es_sav->i_size );
241     }
242
243     return( 0 );
244 }
245
246
247
248