Dash: major warnings cleanup
[vlc.git] / modules / stream_out / description.c
blobba44fb01bd22735ed04a41657ca476a2ab1685a9
1 /*****************************************************************************
2 * description.c: description stream output module (gathers ES info)
3 *****************************************************************************
4 * Copyright (C) 2003-2004 the VideoLAN team
5 * $Id$
7 * Authors: Gildas Bazin <gbazin@videolan.org>
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.
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.
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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
24 /*****************************************************************************
25 * Preamble
26 *****************************************************************************/
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
32 #include <vlc_common.h>
33 #include <vlc_plugin.h>
34 #include <vlc_input.h>
35 #include <vlc_block.h>
36 #include <vlc_sout.h>
38 #include <assert.h>
40 /*****************************************************************************
41 * Exported prototypes
42 *****************************************************************************/
43 static int Open ( vlc_object_t * );
44 static void Close ( vlc_object_t * );
46 static sout_stream_id_t *Add ( sout_stream_t *, es_format_t * );
47 static int Del ( sout_stream_t *, sout_stream_id_t * );
48 static int Send( sout_stream_t *, sout_stream_id_t *, block_t* );
50 /*****************************************************************************
51 * Module descriptor
52 *****************************************************************************/
53 vlc_module_begin ()
54 set_description( N_("Description stream output") )
55 set_capability( "sout stream", 50 )
56 add_shortcut( "description" )
57 set_callbacks( Open, Close )
58 vlc_module_end ()
60 struct sout_stream_sys_t
62 sout_description_data_t *data;
63 mtime_t i_stream_start;
66 struct sout_stream_id_t
70 /*****************************************************************************
71 * Open:
72 *****************************************************************************/
73 static int Open( vlc_object_t *p_this )
75 sout_stream_t *p_stream = (sout_stream_t*)p_this;
76 sout_stream_sys_t *p_sys;
78 p_stream->pf_add = Add;
79 p_stream->pf_del = Del;
80 p_stream->pf_send = Send;
81 p_sys = p_stream->p_sys = malloc(sizeof(sout_stream_sys_t));
83 p_sys->data = var_InheritAddress(p_stream, "sout-description-data");
84 if (p_sys->data == NULL)
86 msg_Err(p_stream, "Missing data: the description stream output is "
87 "not meant to be used without special setup from the core");
88 free(p_sys);
89 return VLC_EGENERIC;
91 p_sys->i_stream_start = 0;
93 return VLC_SUCCESS;
96 /*****************************************************************************
97 * Close:
98 *****************************************************************************/
99 static void Close( vlc_object_t *p_this )
101 sout_stream_t *p_stream = (sout_stream_t *)p_this;
102 sout_stream_sys_t *p_sys = p_stream->p_sys;
104 msg_Dbg( p_this, "Closing" );
106 free( p_sys );
109 static sout_stream_id_t *Add( sout_stream_t *p_stream, es_format_t *p_fmt )
111 sout_stream_sys_t *p_sys = p_stream->p_sys;
112 sout_stream_id_t *id;
113 es_format_t *p_fmt_copy;
115 msg_Dbg( p_stream, "Adding a stream" );
117 p_fmt_copy = malloc(sizeof(es_format_t));
118 es_format_Copy( p_fmt_copy, p_fmt );
120 TAB_APPEND( p_sys->data->i_es, p_sys->data->es, p_fmt_copy );
122 if( p_sys->i_stream_start <= 0 )
123 p_sys->i_stream_start = mdate();
125 id = malloc( sizeof( sout_stream_id_t ) );
126 return id;
129 static int Del( sout_stream_t *p_stream, sout_stream_id_t *id )
131 msg_Dbg( p_stream, "Removing a stream" );
133 free( id );
134 return VLC_SUCCESS;
137 static int Send( sout_stream_t *p_stream, sout_stream_id_t *id,
138 block_t *p_buffer )
140 VLC_UNUSED(id);
141 sout_stream_sys_t *p_sys = p_stream->p_sys;
143 block_ChainRelease( p_buffer );
145 if( p_sys->i_stream_start + 1500000 < mdate() )
146 vlc_sem_post(p_sys->data->sem);
148 return VLC_SUCCESS;