]> git.sesse.net Git - vlc/blob - modules/stream_out/description.c
fix crash with directory access
[vlc] / modules / stream_out / description.c
1 /*****************************************************************************
2  * description.c: description stream output module (gathers ES info)
3  *****************************************************************************
4  * Copyright (C) 2003-2004 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Gildas Bazin <gbazin@videolan.org>
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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
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>
37
38 #include <assert.h>
39
40 /*****************************************************************************
41  * Exported prototypes
42  *****************************************************************************/
43 static int      Open    ( vlc_object_t * );
44 static void     Close   ( vlc_object_t * );
45
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* );
49
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 ()
59
60 struct sout_stream_sys_t
61 {
62     sout_description_data_t *data;
63     mtime_t i_stream_start;
64 };
65
66 struct sout_stream_id_t
67 {
68 };
69
70 /*****************************************************************************
71  * Open:
72  *****************************************************************************/
73 static int Open( vlc_object_t *p_this )
74 {
75     sout_stream_t *p_stream = (sout_stream_t*)p_this;
76     sout_stream_sys_t *p_sys;
77
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));
82
83     p_sys->data = var_InheritAddress(p_stream, "sout-description-data");
84     if (p_sys->data == NULL)
85     {
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;
90     }
91     p_sys->i_stream_start = 0;
92
93     return VLC_SUCCESS;
94 }
95
96 /*****************************************************************************
97  * Close:
98  *****************************************************************************/
99 static void Close( vlc_object_t *p_this )
100 {
101     sout_stream_t *p_stream = (sout_stream_t *)p_this;
102     sout_stream_sys_t *p_sys = p_stream->p_sys;
103
104     msg_Dbg( p_this, "Closing" );
105
106     free( p_sys );
107 }
108
109 static sout_stream_id_t *Add( sout_stream_t *p_stream, es_format_t *p_fmt )
110 {
111     sout_stream_sys_t *p_sys = p_stream->p_sys;
112     sout_stream_id_t *id;
113     es_format_t *p_fmt_copy;
114
115     msg_Dbg( p_stream, "Adding a stream" );
116  
117     p_fmt_copy = malloc(sizeof(es_format_t));
118     es_format_Copy( p_fmt_copy, p_fmt );
119
120     TAB_APPEND( p_sys->data->i_es, p_sys->data->es, p_fmt_copy );
121
122     if( p_sys->i_stream_start <= 0 )
123         p_sys->i_stream_start = mdate();
124
125     id = malloc( sizeof( sout_stream_id_t ) );
126     return id;
127 }
128
129 static int Del( sout_stream_t *p_stream, sout_stream_id_t *id )
130 {
131     msg_Dbg( p_stream, "Removing a stream" );
132
133     free( id );
134     return VLC_SUCCESS;
135 }
136
137 static int Send( sout_stream_t *p_stream, sout_stream_id_t *id,
138                  block_t *p_buffer )
139 {
140     VLC_UNUSED(id);
141     sout_stream_sys_t *p_sys = p_stream->p_sys;
142
143     block_ChainRelease( p_buffer );
144
145     if( p_sys->i_stream_start + 1500000 < mdate() )
146         vlc_sem_post(p_sys->data->sem);
147
148     return VLC_SUCCESS;
149 }