]> git.sesse.net Git - vlc/blob - modules/demux/demuxdump.c
* all : demuxers *have to* set pf_demux_control. (demux_vaControlDefault
[vlc] / modules / demux / demuxdump.c
1 /*****************************************************************************
2  * demuxdump.c : Pseudo demux module for vlc (dump raw stream)
3  *****************************************************************************
4  * Copyright (C) 2001 VideoLAN
5  * $Id: demuxdump.c,v 1.10 2003/09/07 22:48:29 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 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <stdlib.h>                                      /* malloc(), free() */
28 #include <string.h>                                              /* strdup() */
29 #include <errno.h>
30
31 #include <vlc/vlc.h>
32 #include <vlc/input.h>
33
34 #include <sys/types.h>
35
36 /*****************************************************************************
37  * Local prototypes
38  *****************************************************************************/
39 static int  Activate ( vlc_object_t * );
40 static int  Demux ( input_thread_t * );
41 static void Desactivate ( vlc_object_t * );
42
43 #define DUMP_BLOCKSIZE  16384
44
45 /*****************************************************************************
46  * Module descriptor
47  *****************************************************************************/
48 #define FILE_TEXT N_("Dump file name")
49 #define FILE_LONGTEXT N_( \
50     "Specify a file name to which the raw stream will be dumped." )
51
52 vlc_module_begin();
53     set_description( _("file dump demuxer") );
54     set_capability( "demux", 0 );
55     add_category_hint( "File", NULL, VLC_FALSE );
56         add_file( "demuxdump-file", "stream-demux.dump", NULL, FILE_TEXT, 
57                   FILE_LONGTEXT, VLC_FALSE );
58     set_callbacks( Activate, Desactivate );
59     add_shortcut( "dump" );
60 vlc_module_end();
61
62 struct demux_sys_t
63 {
64     char        *psz_name;
65     FILE        *p_file;
66     uint64_t    i_write;
67
68     void        *p_demux_data_sav;
69 };
70
71 /*
72  * Data reading functions
73  */
74
75 /*****************************************************************************
76  * Activate: initializes dump structures
77  *****************************************************************************/
78 static int Activate( vlc_object_t * p_this )
79 {
80     input_thread_t      *p_input = (input_thread_t *)p_this;
81     demux_sys_t         *p_demux;
82
83     char                *psz_name;
84
85     /* Set the demux function */
86     p_input->pf_demux = Demux;
87     p_input->pf_demux_control = demux_vaControlDefault;
88
89     /* Initialize access plug-in structures. */
90     if( p_input->i_mtu == 0 )
91     {
92         /* Improve speed. */
93         p_input->i_bufsize = INPUT_DEFAULT_BUFSIZE;
94     }
95     
96     psz_name = config_GetPsz( p_input, "demuxdump-file" );
97     if( !psz_name || !*psz_name )
98     {
99         msg_Warn( p_input, "no dump file name given" );
100         return VLC_EGENERIC;
101     }
102
103     p_demux = malloc( sizeof( demux_sys_t ) );
104     memset( p_demux, 0, sizeof( demux_sys_t ) );
105
106     if( !strcmp( psz_name, "-" ) )
107     {
108         msg_Info( p_input,
109                   "dumping raw stream to standard output" );
110         p_demux->p_file = stdout;
111         p_demux->psz_name = psz_name;
112     }
113     else if( !( p_demux->p_file = fopen( psz_name, "wb" ) ) )
114     {
115         msg_Err( p_input,
116                  "cannot create `%s' for writing", 
117                  psz_name );
118         free( p_demux );
119         return VLC_EGENERIC;
120     }
121     else
122     {
123         msg_Info( p_input,
124                   "dumping raw stream to file `%s'", 
125                   psz_name );
126         p_demux->psz_name = psz_name;
127     }
128
129     p_demux->i_write = 0;
130     p_demux->p_demux_data_sav = p_input->p_demux_data;
131
132     if( p_input->stream.p_selected_program != NULL )
133     {
134         /* workaround for dvd access */
135         msg_Warn( p_input, "demux data already initializated (by access?)" );
136     }
137     else
138     {
139
140         if( input_InitStream( p_input, 0 ) == -1 )
141         {
142             if( p_demux->p_file != stdout )
143                 fclose( p_demux->p_file );
144             free( p_demux );
145             return VLC_EGENERIC;
146         }
147         input_AddProgram( p_input, 0, 0 );
148         p_input->stream.p_selected_program = p_input->stream.pp_programs[0];
149
150         vlc_mutex_lock( &p_input->stream.stream_lock );
151         p_input->stream.p_selected_area->i_tell = 0;
152         vlc_mutex_unlock( &p_input->stream.stream_lock );
153     }
154
155     p_input->p_demux_data = p_demux;
156
157     vlc_mutex_lock( &p_input->stream.stream_lock );
158     p_input->stream.p_selected_program->b_is_ok = 1;
159     vlc_mutex_unlock( &p_input->stream.stream_lock );
160     
161     return VLC_SUCCESS;
162 }
163
164 /*****************************************************************************
165  * Desctivate: initializes dump structures
166  *****************************************************************************/
167 static void Desactivate ( vlc_object_t *p_this )
168 {
169     input_thread_t      *p_input = (input_thread_t *)p_this;
170     demux_sys_t         *p_demux = (demux_sys_t*)p_input->p_demux_data;
171
172     msg_Info( p_input,
173               "closing %s ("I64Fd" Kbytes dumped)",
174               p_demux->psz_name,
175               p_demux->i_write / 1024 );
176
177     if( p_demux->p_file )
178     {
179         if( p_demux->p_file != stdout )
180             fclose( p_demux->p_file );
181         p_demux->p_file = NULL;
182     }
183     if( p_demux->psz_name )
184     {
185         free( p_demux->psz_name );
186     }
187     p_input->p_demux_data = p_demux->p_demux_data_sav;
188     free( p_demux );
189 }
190
191 /*****************************************************************************
192  * Demux: reads and demuxes data packets
193  *****************************************************************************
194  * Returns -1 in case of error, 0 in case of EOF, 1 otherwise
195  *****************************************************************************/
196 static int Demux( input_thread_t * p_input )
197 {
198     demux_sys_t         *p_demux = (demux_sys_t*)p_input->p_demux_data;
199
200     ssize_t         i_read;
201     data_packet_t * p_data;
202     int             i_write;
203
204     p_input->p_demux_data = p_demux->p_demux_data_sav;
205     i_read = input_SplitBuffer( p_input, &p_data, DUMP_BLOCKSIZE );
206     p_input->p_demux_data = p_demux;
207     
208     if ( i_read <= 0 )
209     {
210         return i_read;
211     }
212
213     i_write = fwrite( p_data->p_payload_start,
214                        1,
215                        i_read,
216                        p_demux->p_file );
217     
218     input_DeletePacket( p_input->p_method_data, p_data );
219
220     if( i_write < 0 )
221     {
222         msg_Err( p_input, 
223                  "failed to write %d bytes",
224                  i_write );
225         return( -1 );
226     }
227     else
228     {
229         msg_Dbg( p_input,
230                  "dumped %d bytes",
231                  i_write );
232         p_demux->i_write += i_write;
233     }
234
235
236     if( (p_input->stream.p_selected_program->i_synchro_state == SYNCHRO_REINIT)
237          | (input_ClockManageControl( p_input, 
238                       p_input->stream.p_selected_program,
239                          (mtime_t)0 ) == PAUSE_S) )
240     {
241         msg_Warn( p_input, "synchro reinit" );
242         p_input->stream.p_selected_program->i_synchro_state = SYNCHRO_OK;
243     }
244
245     return( 1 );
246 }