]> git.sesse.net Git - vlc/blob - modules/stream_out/gather.c
Honor --ffmpeg-skip-frame setting when used with --ffmpeg-hurry-up.
[vlc] / modules / stream_out / gather.c
1 /*****************************************************************************
2  * gather.c: gathering stream output module
3  *****************************************************************************
4  * Copyright (C) 2003-2004 the VideoLAN team
5  * $Id$
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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27
28 #include <vlc/vlc.h>
29 #include <vlc_input.h>
30 #include <vlc_sout.h>
31
32 /*****************************************************************************
33  * Module descriptor
34  *****************************************************************************/
35 static int      Open    ( vlc_object_t * );
36 static void     Close   ( vlc_object_t * );
37
38 vlc_module_begin();
39     set_description( _("Gathering stream output") );
40     set_capability( "sout stream", 50 );
41     add_shortcut( "gather" );
42     set_callbacks( Open, Close );
43 vlc_module_end();
44
45 /*****************************************************************************
46  * Exported prototypes
47  *****************************************************************************/
48 static sout_stream_id_t *Add ( sout_stream_t *, es_format_t * );
49 static int               Del ( sout_stream_t *, sout_stream_id_t * );
50 static int               Send( sout_stream_t *, sout_stream_id_t *, block_t* );
51
52 struct sout_stream_id_t
53 {
54     vlc_bool_t    b_used;
55
56     es_format_t fmt;
57     void          *id;
58 };
59
60 struct sout_stream_sys_t
61 {
62     sout_stream_t   *p_out;
63
64     int              i_id;
65     sout_stream_id_t **id;
66 };
67
68 /*****************************************************************************
69  * Open:
70  *****************************************************************************/
71 static int Open( vlc_object_t *p_this )
72 {
73     sout_stream_t     *p_stream = (sout_stream_t*)p_this;
74     sout_stream_sys_t *p_sys;
75
76     p_stream->p_sys = p_sys = malloc( sizeof( sout_stream_sys_t ) );
77     p_sys->p_out    = sout_StreamNew( p_stream->p_sout, p_stream->psz_next );
78     if( p_sys->p_out == NULL )
79     {
80         free( p_sys );
81         return VLC_EGENERIC;
82     }
83     p_stream->pf_add    = Add;
84     p_stream->pf_del    = Del;
85     p_stream->pf_send   = Send;
86
87     TAB_INIT( p_sys->i_id, p_sys->id );
88
89     return VLC_SUCCESS;
90 }
91
92 /*****************************************************************************
93  * Close:
94  *****************************************************************************/
95 static void Close( vlc_object_t * p_this )
96 {
97     sout_stream_t     *p_stream = (sout_stream_t*)p_this;
98     sout_stream_sys_t *p_sys = p_stream->p_sys;
99     int i;
100
101     for( i = 0; i < p_sys->i_id; i++ )
102     {
103         sout_stream_id_t *id = p_sys->id[i];
104
105         sout_StreamIdDel( p_sys->p_out, id->id );
106         es_format_Clean( &id->fmt );
107         free( id );
108     }
109     TAB_CLEAN( p_sys->i_id, p_sys->id );
110
111     sout_StreamDelete( p_sys->p_out );
112     free( p_sys );
113 }
114
115 /*****************************************************************************
116  * Add:
117  *****************************************************************************/
118 static sout_stream_id_t * Add( sout_stream_t *p_stream, es_format_t *p_fmt )
119 {
120     sout_stream_sys_t *p_sys = p_stream->p_sys;
121     sout_stream_id_t  *id;
122     int i;
123
124     /* search a compatible output */
125     for( i = 0; i < p_sys->i_id; i++ )
126     {
127         id = p_sys->id[i];
128         if( id->b_used )
129             continue;
130
131         if( id->fmt.i_cat != p_fmt->i_cat || id->fmt.i_codec != p_fmt->i_codec )
132             continue;
133
134         if( id->fmt.i_cat == AUDIO_ES )
135         {
136             audio_format_t *p_a = &id->fmt.audio;
137             if( p_a->i_rate != p_fmt->audio.i_rate ||
138                 p_a->i_channels != p_fmt->audio.i_channels ||
139                 p_a->i_blockalign != p_fmt->audio.i_blockalign )
140                 continue;
141         }
142         else if( id->fmt.i_cat == VIDEO_ES )
143         {
144             video_format_t *p_v = &id->fmt.video;
145             if( p_v->i_width != p_fmt->video.i_width ||
146                 p_v->i_height != p_fmt->video.i_height )
147                 continue;
148         }
149
150         /* */
151         msg_Dbg( p_stream, "reusing already opened output" );
152         id->b_used = VLC_TRUE;
153         return id;
154     }
155
156     /* destroy all outputs from the same category */
157     for( i = 0; i < p_sys->i_id; i++ )
158     {
159         id = p_sys->id[i];
160         if( !id->b_used && id->fmt.i_cat == p_fmt->i_cat )
161         {
162             TAB_REMOVE( p_sys->i_id, p_sys->id, id );
163             sout_StreamIdDel( p_sys->p_out, id->id );
164             es_format_Clean( &id->fmt );
165             free( id );
166
167             i = 0;
168             continue;
169         }
170     }
171
172     msg_Dbg( p_stream, "creating new output" );
173     id = malloc( sizeof( sout_stream_id_t ) );
174     es_format_Copy( &id->fmt, p_fmt );
175     id->b_used           = VLC_TRUE;
176     id->id               = sout_StreamIdAdd( p_sys->p_out, &id->fmt );
177     if( id->id == NULL )
178     {
179         free( id );
180         return NULL;
181     }
182     TAB_APPEND( p_sys->i_id, p_sys->id, id );
183
184     return id;
185 }
186
187 /*****************************************************************************
188  * Del:
189  *****************************************************************************/
190 static int Del( sout_stream_t *p_stream, sout_stream_id_t *id )
191 {
192     id->b_used = VLC_FALSE;
193     return VLC_SUCCESS;
194 }
195
196 /*****************************************************************************
197  * Send:
198  *****************************************************************************/
199 static int Send( sout_stream_t *p_stream,
200                  sout_stream_id_t *id, block_t *p_buffer )
201 {
202     sout_stream_sys_t *p_sys = p_stream->p_sys;
203
204     return sout_StreamIdSend( p_sys->p_out, id->id, p_buffer );
205 }
206