1 /*****************************************************************************
3 *****************************************************************************
4 * Copyright (C) 1999-2008 VLC authors and VideoLAN
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 *****************************************************************************/
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 ****************************************************************************/
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 */
74 s
= stream_CommonNew( p_obj
);
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
);
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;
100 if( ( p_sys
->p_fifo
= block_FifoNew() ) == NULL
)
102 stream_CommonDelete( s
);
103 free( p_sys
->psz_name
);
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
);
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
;
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
);
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
);
147 vlc_mutex_lock( &sys
->lock
);
148 *va_arg( args
, int64_t * ) = sys
->stats
.time
;
149 vlc_mutex_unlock( &sys
->lock
);
157 static void DStreamDelete( stream_t
*s
)
159 stream_sys_t
*p_sys
= s
->p_sys
;
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
);
169 block_Release( p_sys
->p_block
);
171 block_FifoRelease( p_sys
->p_fifo
);
172 free( p_sys
->psz_name
);
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
;
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
;
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
);
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
;
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
;
227 //msg_Dbg( s, "DStreamPeek: wanted %d bytes", i_peek );
229 while( atomic_load( &p_sys
->active
) && !s
->b_error
&& i_peek
)
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
);
245 if( i_peek
) pp_block
= &(*pp_block
)->p_next
;
251 p_sys
->p_block
= block_ChainGather( p_sys
->p_block
);
252 *pp_peek
= p_sys
->p_block
->p_buffer
;
258 static int DStreamControl( stream_t
*s
, int i_query
, va_list args
)
260 stream_sys_t
*p_sys
= s
->p_sys
;
265 case STREAM_GET_SIZE
:
266 p_i64
= va_arg( args
, uint64_t * );
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;
277 case STREAM_GET_POSITION
:
278 p_i64
= va_arg( args
, uint64_t * );
279 *p_i64
= p_sys
->i_pos
;
282 case STREAM_SET_POSITION
:
284 uint64_t i64
= va_arg( args
, uint64_t );
285 if( i64
< p_sys
->i_pos
)
288 uint64_t i_skip
= i64
- p_sys
->i_pos
;
291 int i_read
= DStreamRead( s
, NULL
, __MIN(i_skip
, INT_MAX
) );
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
:
311 msg_Err( s
, "invalid DStreamControl query=0x%x", i_query
);
316 static void* DStreamThread( void *obj
)
318 stream_t
*s
= (stream_t
*)obj
;
319 stream_sys_t
*p_sys
= s
->p_sys
;
322 /* Create the demuxer */
323 p_demux
= demux_New( s
, s
->p_input
, "", p_sys
->psz_name
, "", s
, p_sys
->out
,
325 if( p_demux
== 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
);
333 mtime_t next_update
= 0;
334 while( atomic_load( &p_sys
->active
) )
336 if( p_demux
->info
.i_update
|| mdate() >= next_update
)
339 int64_t newlen
, newtime
;
341 if( demux_Control( p_demux
, DEMUX_GET_POSITION
, &newpos
) )
343 if( demux_Control( p_demux
, DEMUX_GET_LENGTH
, &newlen
) )
345 if( demux_Control( p_demux
, DEMUX_GET_TIME
, &newtime
) )
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 )
362 demux_Delete( p_demux
);