access: http: only warn on deflate errors
[vlc.git] / src / input / stream_demux.c
blob01d251c83950047237756942da8e6ea39b89895e
1 /*****************************************************************************
2 * stream_demux.c
3 *****************************************************************************
4 * Copyright (C) 1999-2008 VLC authors and VideoLAN
5 * $Id$
7 * Author: Laurent Aimar <fenrir _AT_ videolan _DOT_ org>
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU Lesser General Public License as published by
11 * the Free Software Foundation; either version 2.1 of the License, or
12 * (at your option) any later version.
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 Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public License
20 * along with this program; if not, write to the Free Software Foundation,
21 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
24 #ifdef HAVE_CONFIG_H
25 # include "config.h"
26 #endif
27 #include <limits.h>
29 #include "demux.h"
30 #include <libvlc.h>
31 #include <vlc_codec.h>
32 #include <vlc_atomic.h>
34 /****************************************************************************
35 * stream_Demux*: create a demuxer for an outpout stream (allow demuxer chain)
36 ****************************************************************************/
37 struct stream_sys_t
39 /* Data buffer */
40 block_fifo_t *p_fifo;
41 block_t *p_block;
43 uint64_t i_pos;
45 /* Demuxer */
46 char *psz_name;
47 es_out_t *out;
49 atomic_bool active;
50 vlc_thread_t thread;
51 vlc_mutex_t lock;
52 struct
54 double position;
55 int64_t length;
56 int64_t time;
57 } stats;
60 static int DStreamRead ( stream_t *, void *p_read, unsigned int i_read );
61 static int DStreamPeek ( stream_t *, const uint8_t **pp_peek, unsigned int i_peek );
62 static int DStreamControl( stream_t *, int i_query, va_list );
63 static void DStreamDelete ( stream_t * );
64 static void* DStreamThread ( void * );
67 stream_t *stream_DemuxNew( demux_t *p_demux, const char *psz_demux, es_out_t *out )
69 vlc_object_t *p_obj = VLC_OBJECT(p_demux);
70 /* We create a stream reader, and launch a thread */
71 stream_t *s;
72 stream_sys_t *p_sys;
74 s = stream_CommonNew( p_obj );
75 if( s == NULL )
76 return NULL;
77 s->p_input = p_demux->p_input;
78 s->psz_path = strdup(""); /* N/A */
79 s->pf_read = DStreamRead;
80 s->pf_peek = DStreamPeek;
81 s->pf_control= DStreamControl;
82 s->pf_destroy= DStreamDelete;
84 s->p_sys = p_sys = malloc( sizeof( *p_sys) );
85 if( !s->psz_path || !s->p_sys )
87 stream_CommonDelete( s );
88 return NULL;
91 p_sys->i_pos = 0;
92 p_sys->out = out;
93 p_sys->p_block = NULL;
94 p_sys->psz_name = strdup( psz_demux );
95 p_sys->stats.position = 0.;
96 p_sys->stats.length = 0;
97 p_sys->stats.time = 0;
99 /* decoder fifo */
100 if( ( p_sys->p_fifo = block_FifoNew() ) == NULL )
102 stream_CommonDelete( s );
103 free( p_sys->psz_name );
104 free( p_sys );
105 return NULL;
108 atomic_init( &p_sys->active, true );
109 vlc_mutex_init( &p_sys->lock );
111 if( vlc_clone( &p_sys->thread, DStreamThread, s, VLC_THREAD_PRIORITY_INPUT ) )
113 vlc_mutex_destroy( &p_sys->lock );
114 block_FifoRelease( p_sys->p_fifo );
115 stream_CommonDelete( s );
116 free( p_sys->psz_name );
117 free( p_sys );
118 return NULL;
121 return s;
124 void stream_DemuxSend( stream_t *s, block_t *p_block )
126 stream_sys_t *p_sys = s->p_sys;
127 block_FifoPut( p_sys->p_fifo, p_block );
130 int stream_DemuxControlVa( stream_t *s, int query, va_list args )
132 stream_sys_t *sys = s->p_sys;
134 switch( query )
136 case DEMUX_GET_POSITION:
137 vlc_mutex_lock( &sys->lock );
138 *va_arg( args, double * ) = sys->stats.position;
139 vlc_mutex_unlock( &sys->lock );
140 break;
141 case DEMUX_GET_LENGTH:
142 vlc_mutex_lock( &sys->lock );
143 *va_arg( args, int64_t * ) = sys->stats.length;
144 vlc_mutex_unlock( &sys->lock );
145 break;
146 case DEMUX_GET_TIME:
147 vlc_mutex_lock( &sys->lock );
148 *va_arg( args, int64_t * ) = sys->stats.time;
149 vlc_mutex_unlock( &sys->lock );
150 break;
151 default:
152 return VLC_EGENERIC;
154 return VLC_SUCCESS;
157 static void DStreamDelete( stream_t *s )
159 stream_sys_t *p_sys = s->p_sys;
160 block_t *p_empty;
162 atomic_store( &p_sys->active, false );
163 p_empty = block_Alloc( 0 );
164 block_FifoPut( p_sys->p_fifo, p_empty );
165 vlc_join( p_sys->thread, NULL );
166 vlc_mutex_destroy( &p_sys->lock );
168 if( p_sys->p_block )
169 block_Release( p_sys->p_block );
171 block_FifoRelease( p_sys->p_fifo );
172 free( p_sys->psz_name );
173 free( p_sys );
174 stream_CommonDelete( s );
178 static int DStreamRead( stream_t *s, void *p_read, unsigned int i_read )
180 stream_sys_t *p_sys = s->p_sys;
181 uint8_t *p_out = p_read;
182 int i_out = 0;
184 //msg_Dbg( s, "DStreamRead: wanted %d bytes", i_read );
186 while( atomic_load( &p_sys->active ) && !s->b_error && i_read )
188 block_t *p_block = p_sys->p_block;
189 int i_copy;
191 if( !p_block )
193 p_block = block_FifoGet( p_sys->p_fifo );
194 if( !p_block ) s->b_error = 1;
195 p_sys->p_block = p_block;
198 if( p_block && i_read )
200 i_copy = __MIN( i_read, p_block->i_buffer );
201 if( p_out && i_copy ) memcpy( p_out, p_block->p_buffer, i_copy );
202 i_read -= i_copy;
203 p_out += i_copy;
204 i_out += i_copy;
205 p_block->i_buffer -= i_copy;
206 p_block->p_buffer += i_copy;
208 if( !p_block->i_buffer )
210 block_Release( p_block );
211 p_sys->p_block = NULL;
216 p_sys->i_pos += i_out;
217 return i_out;
220 static int DStreamPeek( stream_t *s, const uint8_t **pp_peek, unsigned int i_peek )
222 stream_sys_t *p_sys = s->p_sys;
223 block_t **pp_block = &p_sys->p_block;
224 int i_out = 0;
225 *pp_peek = 0;
227 //msg_Dbg( s, "DStreamPeek: wanted %d bytes", i_peek );
229 while( atomic_load( &p_sys->active ) && !s->b_error && i_peek )
231 int i_copy;
233 if( !*pp_block )
235 *pp_block = block_FifoGet( p_sys->p_fifo );
236 if( !*pp_block ) s->b_error = 1;
239 if( *pp_block && i_peek )
241 i_copy = __MIN( i_peek, (*pp_block)->i_buffer );
242 i_peek -= i_copy;
243 i_out += i_copy;
245 if( i_peek ) pp_block = &(*pp_block)->p_next;
249 if( p_sys->p_block )
251 p_sys->p_block = block_ChainGather( p_sys->p_block );
252 *pp_peek = p_sys->p_block->p_buffer;
255 return i_out;
258 static int DStreamControl( stream_t *s, int i_query, va_list args )
260 stream_sys_t *p_sys = s->p_sys;
261 uint64_t *p_i64;
263 switch( i_query )
265 case STREAM_GET_SIZE:
266 p_i64 = va_arg( args, uint64_t * );
267 *p_i64 = 0;
268 return VLC_SUCCESS;
270 case STREAM_CAN_SEEK:
271 case STREAM_CAN_FASTSEEK:
272 case STREAM_CAN_PAUSE:
273 case STREAM_CAN_CONTROL_PACE:
274 *va_arg( args, bool * ) = false;
275 return VLC_SUCCESS;
277 case STREAM_GET_POSITION:
278 p_i64 = va_arg( args, uint64_t * );
279 *p_i64 = p_sys->i_pos;
280 return VLC_SUCCESS;
282 case STREAM_SET_POSITION:
284 uint64_t i64 = va_arg( args, uint64_t );
285 if( i64 < p_sys->i_pos )
286 return VLC_EGENERIC;
288 uint64_t i_skip = i64 - p_sys->i_pos;
289 while( i_skip > 0 )
291 int i_read = DStreamRead( s, NULL, __MIN(i_skip, INT_MAX) );
292 if( i_read <= 0 )
293 return VLC_EGENERIC;
294 i_skip -= i_read;
296 return VLC_SUCCESS;
299 case STREAM_CONTROL_ACCESS:
300 case STREAM_GET_TITLE_INFO:
301 case STREAM_GET_META:
302 case STREAM_GET_CONTENT_TYPE:
303 case STREAM_GET_SIGNAL:
304 case STREAM_SET_PAUSE_STATE:
305 case STREAM_SET_TITLE:
306 case STREAM_SET_SEEKPOINT:
307 case STREAM_SET_RECORD_STATE:
308 return VLC_EGENERIC;
310 default:
311 msg_Err( s, "invalid DStreamControl query=0x%x", i_query );
312 return VLC_EGENERIC;
316 static void* DStreamThread( void *obj )
318 stream_t *s = (stream_t *)obj;
319 stream_sys_t *p_sys = s->p_sys;
320 demux_t *p_demux;
322 /* Create the demuxer */
323 p_demux = demux_New( s, s->p_input, "", p_sys->psz_name, "", s, p_sys->out,
324 false );
325 if( p_demux == NULL )
326 return NULL;
328 /* stream_Demux cannot apply DVB filters.
329 * Get all programs and let the E/S output sort them out. */
330 demux_Control( p_demux, DEMUX_SET_GROUP, -1, NULL );
332 /* Main loop */
333 mtime_t next_update = 0;
334 while( atomic_load( &p_sys->active ) )
336 if( p_demux->info.i_update || mdate() >= next_update )
338 double newpos;
339 int64_t newlen, newtime;
341 if( demux_Control( p_demux, DEMUX_GET_POSITION, &newpos ) )
342 newpos = 0.;
343 if( demux_Control( p_demux, DEMUX_GET_LENGTH, &newlen ) )
344 newlen = 0;
345 if( demux_Control( p_demux, DEMUX_GET_TIME, &newtime ) )
346 newtime = 0;
348 vlc_mutex_lock( &p_sys->lock );
349 p_sys->stats.position = newpos;
350 p_sys->stats.length = newlen;
351 p_sys->stats.time = newtime;
352 vlc_mutex_unlock( &p_sys->lock );
354 p_demux->info.i_update = 0;
355 next_update = mdate() + (CLOCK_FREQ / 4);
358 if( demux_Demux( p_demux ) <= 0 )
359 break;
362 demux_Delete( p_demux );
364 return NULL;