]> git.sesse.net Git - vlc/blob - plugins/mpeg/input_ts.c
* Upgraded version number to 0.2.61. Release is today.
[vlc] / plugins / mpeg / input_ts.c
1 /*****************************************************************************
2  * input_ts.c: TS demux and netlist management
3  *****************************************************************************
4  * Copyright (C) 1998, 1999, 2000 VideoLAN
5  * $Id: input_ts.c,v 1.3 2001/02/16 09:25:03 sam Exp $
6  *
7  * Authors: 
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 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include "defs.h"
28
29 #include <stdlib.h>
30 #include <string.h>
31 #include <errno.h>
32 #include <sys/uio.h>
33
34 #include <sys/types.h>
35 #include <sys/stat.h>
36 #include <unistd.h>
37 #include <fcntl.h>
38
39 #include "config.h"
40 #include "common.h"
41 #include "threads.h"
42 #include "mtime.h"
43 #include "tests.h"
44 #include "modules.h"
45
46 #include "intf_msg.h"
47
48 #include "stream_control.h"
49 #include "input_ext-intf.h"
50 #include "input_ext-dec.h"
51
52 #include "input.h"
53 #include "input_ts.h"
54
55 #include "mpeg_system.h"
56 #include "input_netlist.h"
57
58 /*****************************************************************************
59  * Local prototypes
60  *****************************************************************************/
61 static int  TSProbe     ( probedata_t * );
62 static int  TSRead      ( struct input_thread_s *,
63                           data_packet_t * p_packets[INPUT_READ_ONCE] );
64 static void TSInit      ( struct input_thread_s * );
65 static void TSEnd       ( struct input_thread_s * );
66
67 /*****************************************************************************
68  * Functions exported as capabilities. They are declared as static so that
69  * we don't pollute the namespace too much.
70  *****************************************************************************/
71 void input_getfunctions( function_list_t * p_function_list )
72 {
73 #define input p_function_list->functions.input
74     p_function_list->pf_probe = TSProbe;
75     input.pf_init             = TSInit;
76     input.pf_open             = input_FileOpen;
77     input.pf_close            = input_FileClose;
78     input.pf_end              = TSEnd;
79     input.pf_read             = TSRead;
80     input.pf_demux            = input_DemuxTS;
81     input.pf_new_packet       = input_NetlistNewPacket;
82     input.pf_new_pes          = input_NetlistNewPES;
83     input.pf_delete_packet    = input_NetlistDeletePacket;
84     input.pf_delete_pes       = input_NetlistDeletePES;
85     input.pf_rewind           = NULL;
86     input.pf_seek             = NULL;
87 #undef input
88 }
89
90 /*****************************************************************************
91  * TSProbe: verifies that the stream is a TS stream
92  *****************************************************************************/
93 static int TSProbe( probedata_t * p_data )
94 {
95     input_thread_t * p_input = (input_thread_t *)p_data;
96
97     char * psz_name = p_input->p_source;
98     int i_handle;
99     int i_score = 1;
100
101     if( TestMethod( INPUT_METHOD_VAR, "ts" ) )
102     {
103         return( 999 );
104     }
105
106     if( ( strlen(psz_name) > 5 ) && !strncasecmp( psz_name, "file:", 5 ) )
107     {
108         /* If the user specified "file:" then it's probably a file */
109         psz_name += 5;
110     }
111
112     i_handle = open( psz_name, 0 );
113     if( i_handle == -1 )
114     {
115         return( 0 );
116     }
117     close( i_handle );
118
119     return( i_score );
120 }
121
122 /*****************************************************************************
123  * TSInit: initializes TS structures
124  *****************************************************************************/
125 static void TSInit( input_thread_t * p_input )
126 {
127     /* Initialize netlist and TS structures */
128     thread_ts_data_t    * p_method;
129     pgrm_ts_data_t      * p_pgrm_demux;
130     es_descriptor_t     * kludge1;
131
132     /* Initialise structure */
133     p_method = malloc( sizeof( thread_ts_data_t ) );
134     if( p_method == NULL )
135     {
136         intf_ErrMsg( "Out of memory" );
137         p_input->b_error = 1;
138         return;
139     }
140  
141     p_input->p_plugin_data = (void *)p_method;
142     p_input->p_method_data = NULL;
143  
144     
145     /* XXX : For the time being, only file, after, i'll do the network */ 
146     
147     /* Initialize netlist */
148     if( input_NetlistInit( p_input, NB_DATA, NB_PES, TS_PACKET_SIZE, 
149                 INPUT_READ_ONCE ) )
150     {
151         intf_ErrMsg( "Could not initialize netlist" );
152         return;
153     }
154    
155     /* Initialize the stream */
156     input_InitStream( p_input, sizeof( stream_ts_data_t ) );
157
158     /* FIXME : PSIDemux and PSIDecode */
159     /* Add audio and video programs */
160     /* p_input->stream.pp_programs[0] = */
161     input_AddProgram( p_input, 0, sizeof( pgrm_ts_data_t ) );
162     p_pgrm_demux = 
163         (pgrm_ts_data_t *)p_input->stream.pp_programs[0]->p_demux_data;
164     p_pgrm_demux->i_pcr_pid = 0x78;
165
166     kludge1 = input_AddES( p_input, p_input->stream.pp_programs[0], 
167                            0x78, sizeof( es_ts_data_t ) );
168
169     // kludge
170     kludge1->i_type = MPEG2_VIDEO_ES;
171
172     input_SelectES( p_input, kludge1 );
173
174     vlc_mutex_lock( &(p_input->stream.stream_lock) );
175     p_input->stream.pp_programs[0]->b_is_ok = 1;
176     vlc_mutex_unlock( &(p_input->stream.stream_lock) );
177
178 //debug
179 intf_ErrMsg("End of TSINIT");    
180 }
181
182 /*****************************************************************************
183  * TSEnd: frees unused data
184  *****************************************************************************/
185 static void TSEnd( input_thread_t * p_input )
186 {
187
188 }
189
190 /*****************************************************************************
191  * TSRead: reads data packets
192  *****************************************************************************
193  * Returns -1 in case of error, 0 if everything went well, and 1 in case of
194  * EOF.
195  *****************************************************************************/
196 static int TSRead( input_thread_t * p_input,
197                    data_packet_t * pp_packets[INPUT_READ_ONCE] )
198 {
199     unsigned int i_read, i_loop;
200     struct iovec * p_iovec;
201     
202     memset( pp_packets, 0, INPUT_READ_ONCE*sizeof(data_packet_t *) );
203     
204     p_iovec = input_NetlistGetiovec( p_input->p_method_data );
205     
206     if ( p_iovec == NULL )
207     {
208         return( -1 ); /* empty netlist */
209     } 
210
211     i_read = readv( p_input->i_handle, p_iovec, INPUT_READ_ONCE );
212     
213     if( i_read == -1 )
214     {
215         intf_ErrMsg( "Could not readv" );
216         return( -1 );
217     }
218
219     input_NetlistMviovec( p_input->p_method_data, 
220             (int)(i_read/TS_PACKET_SIZE) , pp_packets );
221
222     /* check correct TS header */
223     for( i_loop=0; i_loop < (int)(i_read/TS_PACKET_SIZE); i_loop++ )
224     {
225         if( pp_packets[i_loop]->p_buffer[0] != 0x47 )
226             intf_ErrMsg( "Bad TS Packet (starcode != 0x47)." );
227     }
228     return 0;
229 }