]> git.sesse.net Git - vlc/blob - modules/demux/mpeg/m4a.c
m4a demuxer: last missing include
[vlc] / modules / demux / mpeg / m4a.c
1 /*****************************************************************************
2  * m4a.c : MPEG-4 audio demuxer
3  *****************************************************************************
4  * Copyright (C) 2002-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 #include <vlc/vlc.h>
29 #include <vlc_demux.h>
30 #include <vlc_codec.h>
31 #include <vlc_meta.h>
32 #include <vlc_input.h>
33
34 /*****************************************************************************
35  * Module descriptor
36  *****************************************************************************/
37 static int  Open ( vlc_object_t * );
38 static void Close( vlc_object_t * );
39
40 vlc_module_begin();
41     set_category( CAT_INPUT );
42     set_subcategory( SUBCAT_INPUT_DEMUX );
43     set_description( _("MPEG-4 audio demuxer" ) );
44     set_capability( "demux2", 110 );
45     set_callbacks( Open, Close );
46     add_shortcut( "m4a" );
47     add_shortcut( "mp4a" );
48     add_shortcut( "aac" );
49 vlc_module_end();
50
51 /*****************************************************************************
52  * Local prototypes
53  *****************************************************************************/
54 struct demux_sys_t
55 {
56     vlc_bool_t  b_start;
57     es_out_id_t *p_es;
58     vlc_meta_t  *meta;
59
60     decoder_t   *p_packetizer;
61
62     mtime_t     i_pts;
63     int64_t     i_bytes;
64     mtime_t     i_time_offset;
65     int         i_bitrate_avg;
66 };
67
68 static int Demux( demux_t * );
69 static int Control( demux_t *, int, va_list );
70
71 #define M4A_PACKET_SIZE 4096
72 #define M4A_PTS_START 1
73
74 /*****************************************************************************
75  * Open: initializes demux structures
76  *****************************************************************************/
77 static int Open( vlc_object_t * p_this )
78 {
79     demux_t     *p_demux = (demux_t*)p_this;
80     demux_sys_t *p_sys;
81     module_t    *p_id3;
82     const uint8_t *p_peek;
83     int         b_forced = VLC_FALSE;
84
85     if( demux2_IsPathExtension( p_demux, ".aac" ) )
86         b_forced = VLC_TRUE;
87
88     if( !p_demux->b_force && !b_forced )
89         return VLC_EGENERIC;
90
91     /* peek the begining (10 is for adts header) */
92     if( stream_Peek( p_demux->s, &p_peek, 10 ) < 10 )
93     {
94         msg_Err( p_demux, "cannot peek" );
95         return VLC_EGENERIC;
96     }
97     if( !strncmp( (char *)p_peek, "ADIF", 4 ) )
98     {
99         msg_Err( p_demux, "ADIF file. Not yet supported. (Please report)" );
100         return VLC_EGENERIC;
101     }
102
103     p_demux->pf_demux  = Demux;
104     p_demux->pf_control= Control;
105     p_demux->p_sys     = p_sys = calloc( sizeof( demux_sys_t ), 1 );
106     p_sys->b_start     = VLC_TRUE;
107
108     /* Load the mpeg 4 audio packetizer */
109     INIT_APACKETIZER( p_sys->p_packetizer,  'm', 'p', '4', 'a'  );
110     es_format_Init( &p_sys->p_packetizer->fmt_out, UNKNOWN_ES, 0 );
111     LOAD_PACKETIZER_OR_FAIL( p_sys->p_packetizer, "mp4 audio" );
112
113     /* Parse possible id3 header */
114     if( !var_CreateGetBool( p_demux, "meta-preparsed" ) )
115     {
116         p_demux->p_private = malloc( sizeof( demux_meta_t ) );
117         if( !p_demux->p_private )
118             return VLC_ENOMEM;
119         if( ( p_id3 = module_Need( p_demux, "meta reader", NULL, 0 ) ) )
120         {
121             module_Unneed( p_demux, p_id3 );
122             demux_meta_t *p_demux_meta = (demux_meta_t *)p_demux->p_private;
123             p_sys->meta = p_demux_meta->p_meta;
124             int i;
125             /* attachments not supported in this demuxer */
126             for( i = 0; i < p_demux_meta->i_attachments; i++ )
127                 free( p_demux_meta->attachments[i] );
128             TAB_CLEAN( p_demux_meta->i_attachments, p_demux_meta->attachments );
129         }
130         free( p_demux->p_private );
131     }
132     return VLC_SUCCESS;
133 }
134
135 /*****************************************************************************
136  * Close: frees unused data
137  *****************************************************************************/
138 static void Close( vlc_object_t * p_this )
139 {
140     demux_t     *p_demux = (demux_t*)p_this;
141     demux_sys_t *p_sys = p_demux->p_sys;
142
143     var_Destroy( p_demux, "meta-preparsed" );
144     if( p_sys->meta ) vlc_meta_Delete( p_sys->meta );
145
146     DESTROY_PACKETIZER( p_sys->p_packetizer );
147
148     free( p_sys );
149 }
150
151 /*****************************************************************************
152  * Demux: reads and demuxes data packets
153  *****************************************************************************
154  * Returns -1 in case of error, 0 in case of EOF, 1 otherwise
155  *****************************************************************************/
156 static int Demux( demux_t *p_demux)
157 {
158     demux_sys_t *p_sys = p_demux->p_sys;
159     block_t *p_block_in, *p_block_out;
160
161     if( ( p_block_in = stream_Block( p_demux->s, M4A_PACKET_SIZE ) ) == NULL )
162     {
163         return 0;
164     }
165
166     p_block_in->i_pts = p_block_in->i_dts = p_sys->b_start ? M4A_PTS_START : 0;
167     p_sys->b_start = VLC_FALSE;
168
169     while( (p_block_out = p_sys->p_packetizer->pf_packetize(
170                                           p_sys->p_packetizer, &p_block_in )) )
171     {
172         while( p_block_out )
173         {
174             block_t *p_next = p_block_out->p_next;
175
176             if( p_sys->p_es == NULL )
177             {
178                 p_sys->p_packetizer->fmt_out.b_packetized = VLC_TRUE;
179                 vlc_audio_replay_gain_MergeFromMeta( &p_sys->p_packetizer->fmt_out.audio_replay_gain,
180                                                      p_sys->meta );
181                 p_sys->p_es = es_out_Add( p_demux->out,
182                                           &p_sys->p_packetizer->fmt_out);
183             }
184
185             es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_block_out->i_dts );
186
187             p_block_out->p_next = NULL;
188
189             p_sys->i_pts = p_block_out->i_pts;
190             if( p_sys->i_pts > M4A_PTS_START + I64C(500000) )
191                 p_sys->i_bitrate_avg =
192                     8*I64C(1000000)*p_sys->i_bytes/(p_sys->i_pts-M4A_PTS_START);
193
194             p_sys->i_bytes += p_block_out->i_buffer;
195             es_out_Send( p_demux->out, p_sys->p_es, p_block_out );
196
197             p_block_out = p_next;
198         }
199     }
200     return 1;
201 }
202
203 /*****************************************************************************
204  * Control:
205  *****************************************************************************/
206 static int Control( demux_t *p_demux, int i_query, va_list args )
207 {
208     demux_sys_t *p_sys = p_demux->p_sys;
209     vlc_meta_t *p_meta;
210
211     int64_t *pi64;
212     int i_ret;
213
214     switch( i_query )
215     {
216     case DEMUX_GET_META:
217         p_meta = (vlc_meta_t *)va_arg( args, vlc_meta_t* );
218         vlc_meta_Merge( p_meta, p_sys->meta );
219         return VLC_SUCCESS;
220
221     case DEMUX_GET_TIME:
222         pi64 = (int64_t*)va_arg( args, int64_t * );
223         *pi64 = p_sys->i_pts + p_sys->i_time_offset;
224         return VLC_SUCCESS;
225
226     case DEMUX_SET_TIME: /* TODO high precision seek for multi-input */
227     default:
228         i_ret = demux2_vaControlHelper( p_demux->s, 0, -1,
229                                         p_sys->i_bitrate_avg, 1, i_query, args);
230         /* Fix time_offset */
231         if( (i_query == DEMUX_SET_POSITION || i_query == DEMUX_SET_TIME ) &&
232             i_ret == VLC_SUCCESS && p_sys->i_bitrate_avg > 0 )
233         {
234             int64_t i_time = I64C(8000000) * stream_Tell(p_demux->s) /
235                 p_sys->i_bitrate_avg;
236
237             if( i_time >= 0 )
238                 p_sys->i_time_offset = i_time - p_sys->i_pts;
239         }
240         return i_ret;
241     }
242 }
243