]> git.sesse.net Git - vlc/blob - modules/demux/flac.c
* all : demuxers *have to* set pf_demux_control. (demux_vaControlDefault
[vlc] / modules / demux / flac.c
1 /*****************************************************************************
2  * flac.c : FLAC demuc module for vlc
3  *****************************************************************************
4  * Copyright (C) 2001 VideoLAN
5  * $Id: flac.c,v 1.5 2003/09/07 22:48:29 fenrir Exp $
6  *
7  * Authors: Sigmund Augdal <sigmunau@idi.ntnu.no>
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <stdlib.h>                                      /* malloc(), free() */
28 #include <string.h>                                              /* strdup() */
29 #include <errno.h>
30
31 #include <vlc/vlc.h>
32 #include <vlc/input.h>
33
34 #include <sys/types.h>
35
36 /*****************************************************************************
37  * Constants
38  *****************************************************************************/
39 #define FLAC_PACKET_SIZE 16384
40 #define MAX_PACKETS_IN_FIFO 1
41
42 /*****************************************************************************
43  * Local prototypes
44  *****************************************************************************/
45 static int  Init  ( vlc_object_t * );
46 static int  Demux ( input_thread_t * );
47
48 /*****************************************************************************
49  * Module descriptor
50  *****************************************************************************/
51 vlc_module_begin();                                      
52     set_description( _("flac demuxer") );                       
53     set_capability( "demux", 155 );
54     set_callbacks( Init, NULL );
55     add_shortcut( "flac" );
56 vlc_module_end();
57
58 /*****************************************************************************
59  * Init: initializes ES structures
60  *****************************************************************************/
61 static int Init( vlc_object_t * p_this )
62 {
63     input_thread_t *    p_input = (input_thread_t *)p_this;
64     es_descriptor_t *   p_es;
65     byte_t *            p_peek;
66
67     /* Initialize access plug-in structures. */
68     if( p_input->i_mtu == 0 )
69     {
70         /* Improve speed. */
71         p_input->i_bufsize = INPUT_DEFAULT_BUFSIZE;
72     }
73
74     p_input->pf_demux = Demux;
75     p_input->pf_demux_control = demux_vaControlDefault;
76     p_input->pf_rewind = NULL;
77
78     /* Have a peep at the show. */
79     if( input_Peek( p_input, &p_peek, 4 ) < 4 )
80     {
81         /* Stream shorter than 4 bytes... */
82         msg_Err( p_input, "cannot peek()" );
83         return( -1 );
84     }
85
86     if( *p_peek != 'f' || *(p_peek + 1) != 'L' || *(p_peek +2) != 'a'
87         || *(p_peek+3) != 'C')
88     {
89         if( *p_input->psz_demux && !strncmp( p_input->psz_demux, "flac", 4 ) )
90         {
91             /* User forced */
92             msg_Err( p_input, "this doesn't look like an flac stream, "
93                      "continuing anyway" );
94         }
95         else
96         {
97             msg_Warn( p_input, "flac module discarded (no startcode)" );
98             return( -1 );
99         }
100     }
101
102     if( input_InitStream( p_input, 0 ) == -1 )
103     {
104         return( -1 );
105     }
106     input_AddProgram( p_input, 0, 0 );
107     p_input->stream.p_selected_program = p_input->stream.pp_programs[0];
108     vlc_mutex_lock( &p_input->stream.stream_lock );
109     p_es = input_AddES( p_input, p_input->stream.p_selected_program, 1,
110                         AUDIO_ES, NULL, 0 );
111     p_es->i_stream_id = 1;
112     p_es->i_fourcc = VLC_FOURCC('f','l','a','c');
113     input_SelectES( p_input, p_es );
114     p_input->stream.p_selected_program->b_is_ok = 1;
115     vlc_mutex_unlock( &p_input->stream.stream_lock );
116
117     return( 0 );
118 }
119
120 /*****************************************************************************
121  * Demux: reads and demuxes data packets
122  *****************************************************************************
123  * Returns -1 in case of error, 0 in case of EOF, 1 otherwise
124  *****************************************************************************/
125 static int Demux( input_thread_t * p_input )
126 {
127     ssize_t         i_read;
128     decoder_fifo_t * p_fifo =
129         p_input->stream.p_selected_program->pp_es[0]->p_decoder_fifo;
130     pes_packet_t *  p_pes;
131     data_packet_t * p_data;
132
133     if( p_fifo == NULL )
134     {
135         return -1;
136     }
137
138     i_read = input_SplitBuffer( p_input, &p_data, FLAC_PACKET_SIZE );
139
140     if ( i_read <= 0 )
141     {
142         return i_read;
143     }
144
145     p_pes = input_NewPES( p_input->p_method_data );
146
147     if( p_pes == NULL )
148     {
149         msg_Err( p_input, "out of memory" );
150         input_DeletePacket( p_input->p_method_data, p_data );
151         return( -1 );
152     }
153
154     p_pes->i_rate = p_input->stream.control.i_rate;
155     p_pes->p_first = p_pes->p_last = p_data;
156     p_pes->i_pes_size = i_read;
157     p_pes->i_nb_data = 1;
158
159     vlc_mutex_lock( &p_fifo->data_lock );
160     if( p_fifo->i_depth >= MAX_PACKETS_IN_FIFO )
161     {
162         /* Wait for the decoder. */
163         vlc_cond_wait( &p_fifo->data_wait, &p_fifo->data_lock );
164     }
165     vlc_mutex_unlock( &p_fifo->data_lock );
166
167     if( (p_input->stream.p_selected_program->i_synchro_state == SYNCHRO_REINIT)
168        |(p_input->stream.p_selected_program->i_synchro_state == SYNCHRO_START)
169          | (input_ClockManageControl( p_input, 
170                       p_input->stream.p_selected_program,
171                          (mtime_t)0 ) == PAUSE_S) )
172     {
173         msg_Warn( p_input, "synchro reinit" );
174         p_pes->i_pts = mdate() + DEFAULT_PTS_DELAY;
175         p_input->stream.p_selected_program->i_synchro_state = SYNCHRO_OK;
176     }
177
178     input_DecodePES( p_fifo, p_pes );
179
180     return 1;
181 }