]> git.sesse.net Git - vlc/blob - modules/codec/flac.c
Simplify FLAC extradata (streaminfo) parsing
[vlc] / modules / codec / flac.c
1 /*****************************************************************************
2  * flac.c: flac decoder/encoder module making use of libflac
3  *****************************************************************************
4  * Copyright (C) 1999-2001 VLC authors and VideoLAN
5  * $Id$
6  *
7  * Authors: Gildas Bazin <gbazin@videolan.org>
8  *          Sigmund Augdal Helberg <dnumgis@videolan.org>
9  *
10  * This program is free software; you can redistribute it and/or modify it
11  * under the terms of the GNU Lesser General Public License as published by
12  * the Free Software Foundation; either version 2.1 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  * GNU Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public License
21  * along with this program; if not, write to the Free Software Foundation,
22  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28
29 /* workaround libflac overriding assert.h system header */
30 #define assert(x) do {} while(0)
31
32 #ifdef HAVE_CONFIG_H
33 # include "config.h"
34 #endif
35
36 #include <vlc_common.h>
37 #include <vlc_plugin.h>
38 #include <vlc_codec.h>
39
40 #include <FLAC/stream_decoder.h>
41 #include <FLAC/stream_encoder.h>
42
43 #include <vlc_block_helper.h>
44 #include <vlc_bits.h>
45
46 #if defined(FLAC_API_VERSION_CURRENT) && FLAC_API_VERSION_CURRENT >= 8
47 #   define USE_NEW_FLAC_API
48 #endif
49
50 /*****************************************************************************
51  * decoder_sys_t : FLAC decoder descriptor
52  *****************************************************************************/
53 struct decoder_sys_t
54 {
55     /*
56      * Input/Output properties
57      */
58     block_t *p_block;
59     block_t *p_aout_buffer;
60     date_t   end_date;
61
62     /*
63      * FLAC properties
64      */
65     FLAC__StreamDecoder *p_flac;
66     FLAC__StreamMetadata_StreamInfo stream_info;
67     bool b_stream_info;
68 };
69
70 static const int pi_channels_maps[9] =
71 {
72     0,
73     AOUT_CHAN_CENTER,
74     AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT,
75     AOUT_CHAN_CENTER | AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT,
76     AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_REARLEFT
77      | AOUT_CHAN_REARRIGHT,
78     AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
79      | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT,
80     AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
81      | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT | AOUT_CHAN_LFE,
82     AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
83      | AOUT_CHAN_REARCENTER | AOUT_CHAN_MIDDLELEFT| AOUT_CHAN_MIDDLERIGHT
84      | AOUT_CHAN_LFE,
85     AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER | AOUT_CHAN_REARLEFT
86      | AOUT_CHAN_REARRIGHT | AOUT_CHAN_MIDDLELEFT | AOUT_CHAN_MIDDLERIGHT
87      | AOUT_CHAN_LFE
88 };
89
90 /*****************************************************************************
91  * Local prototypes
92  *****************************************************************************/
93 static int  OpenDecoder   ( vlc_object_t * );
94 static void CloseDecoder  ( vlc_object_t * );
95
96 #ifdef ENABLE_SOUT
97 static int OpenEncoder   ( vlc_object_t * );
98 static void CloseEncoder ( vlc_object_t * );
99 #endif
100
101 static block_t *DecodeBlock( decoder_t *, block_t ** );
102
103 /*****************************************************************************
104  * Module descriptor
105  *****************************************************************************/
106 vlc_module_begin ()
107
108     set_category( CAT_INPUT )
109     set_subcategory( SUBCAT_INPUT_ACODEC )
110     add_shortcut( "flac" )
111
112     set_description( N_("Flac audio decoder") )
113     set_capability( "decoder", 100 )
114     set_callbacks( OpenDecoder, CloseDecoder )
115
116 #ifdef ENABLE_SOUT
117     add_submodule ()
118     add_shortcut( "flac" )
119     set_description( N_("Flac audio encoder") )
120     set_capability( "encoder", 100 )
121     set_callbacks( OpenEncoder, CloseEncoder )
122 #endif
123
124 vlc_module_end ()
125
126 /*****************************************************************************
127  * Interleave: helper function to interleave channels
128  *****************************************************************************/
129 static void Interleave( int32_t *p_out, const int32_t * const *pp_in,
130                         const unsigned char *restrict pi_index, unsigned i_nb_channels,
131                         unsigned i_samples, unsigned bits )
132 {
133     unsigned shift = 32 - bits;
134
135     for( unsigned j = 0; j < i_samples; j++ )
136         for( unsigned i = 0; i < i_nb_channels; i++ )
137             p_out[j * i_nb_channels + i] = pp_in[pi_index[i]][j] << shift;
138 }
139
140 /*****************************************************************************
141  * DecoderWriteCallback: called by libflac to output decoded samples
142  *****************************************************************************/
143 static FLAC__StreamDecoderWriteStatus
144 DecoderWriteCallback( const FLAC__StreamDecoder *decoder,
145                       const FLAC__Frame *frame,
146                       const FLAC__int32 *const buffer[], void *client_data )
147 {
148     /* XXX it supposes our internal format is WG4 */
149     static const unsigned char ppi_reorder[1+8][8] = {
150         { },
151         { 0, },
152         { 0, 1 },
153         { 0, 1, 2 },
154         { 0, 1, 2, 3 },
155         { 0, 1, 3, 4, 2 },
156         { 0, 1, 4, 5, 2, 3 },
157         { 0, 1, 5, 6, 4, 2, 3 },
158         { 0, 1, 6, 7, 4, 5, 2, 3 },
159     };
160
161     VLC_UNUSED(decoder);
162     decoder_t *p_dec = (decoder_t *)client_data;
163     decoder_sys_t *p_sys = p_dec->p_sys;
164
165     if( p_dec->fmt_out.audio.i_channels <= 0 ||
166         p_dec->fmt_out.audio.i_channels > 8 )
167         return FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE;
168     if( date_Get( &p_sys->end_date ) <= VLC_TS_INVALID )
169         return FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE;
170
171     const unsigned char *pi_reorder = ppi_reorder[p_dec->fmt_out.audio.i_channels];
172
173     p_sys->p_aout_buffer =
174         decoder_NewAudioBuffer( p_dec, frame->header.blocksize );
175
176     if( p_sys->p_aout_buffer == NULL )
177         return FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE;
178
179     Interleave( (int32_t *)p_sys->p_aout_buffer->p_buffer, buffer, pi_reorder,
180                  frame->header.channels, frame->header.blocksize,
181                  frame->header.bits_per_sample );
182
183     /* Date management (already done by packetizer) */
184     p_sys->p_aout_buffer->i_pts = date_Get( &p_sys->end_date );
185     p_sys->p_aout_buffer->i_length =
186         date_Increment( &p_sys->end_date, frame->header.blocksize ) -
187         p_sys->p_aout_buffer->i_pts;
188
189     return FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE;
190 }
191
192 /*****************************************************************************
193  * DecoderReadCallback: called by libflac when it needs more data
194  *****************************************************************************/
195 static FLAC__StreamDecoderReadStatus
196 DecoderReadCallback( const FLAC__StreamDecoder *decoder, FLAC__byte buffer[],
197                      size_t *bytes, void *client_data )
198 {
199     VLC_UNUSED(decoder);
200     decoder_t *p_dec = (decoder_t *)client_data;
201     decoder_sys_t *p_sys = p_dec->p_sys;
202
203     if( p_sys->p_block && p_sys->p_block->i_buffer )
204     {
205         *bytes = __MIN(*bytes, p_sys->p_block->i_buffer);
206         memcpy( buffer, p_sys->p_block->p_buffer, *bytes );
207         p_sys->p_block->i_buffer -= *bytes;
208         p_sys->p_block->p_buffer += *bytes;
209     }
210     else
211     {
212         *bytes = 0;
213         return FLAC__STREAM_DECODER_READ_STATUS_ABORT;
214     }
215
216     return FLAC__STREAM_DECODER_READ_STATUS_CONTINUE;
217 }
218
219 /*****************************************************************************
220  * DecoderMetadataCallback: called by libflac to when it encounters metadata
221  *****************************************************************************/
222 static void DecoderMetadataCallback( const FLAC__StreamDecoder *decoder,
223                                      const FLAC__StreamMetadata *metadata,
224                                      void *client_data )
225 {
226     VLC_UNUSED(decoder);
227     decoder_t *p_dec = (decoder_t *)client_data;
228     decoder_sys_t *p_sys = p_dec->p_sys;
229
230     /* Setup the format */
231     p_dec->fmt_out.audio.i_rate     = metadata->data.stream_info.sample_rate;
232     p_dec->fmt_out.audio.i_channels = metadata->data.stream_info.channels;
233     p_dec->fmt_out.audio.i_physical_channels =
234         p_dec->fmt_out.audio.i_original_channels =
235             pi_channels_maps[metadata->data.stream_info.channels];
236     p_dec->fmt_out.audio.i_bitspersample =
237         metadata->data.stream_info.bits_per_sample;
238
239     msg_Dbg( p_dec, "channels:%d samplerate:%d bitspersamples:%d",
240              p_dec->fmt_out.audio.i_channels, p_dec->fmt_out.audio.i_rate,
241              p_dec->fmt_out.audio.i_bitspersample );
242
243     p_sys->b_stream_info = true;
244     p_sys->stream_info = metadata->data.stream_info;
245
246     date_Init( &p_sys->end_date, p_dec->fmt_out.audio.i_rate, 1 );
247     date_Set( &p_sys->end_date, VLC_TS_INVALID );
248 }
249
250 /*****************************************************************************
251  * DecoderErrorCallback: called when the libflac decoder encounters an error
252  *****************************************************************************/
253 static void DecoderErrorCallback( const FLAC__StreamDecoder *decoder,
254                                   FLAC__StreamDecoderErrorStatus status,
255                                   void *client_data )
256 {
257     VLC_UNUSED(decoder);
258     decoder_t *p_dec = (decoder_t *)client_data;
259
260     switch( status )
261     {
262     case FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC:
263         msg_Warn( p_dec, "an error in the stream caused the decoder to "
264                  "lose synchronization." );
265         break;
266     case FLAC__STREAM_DECODER_ERROR_STATUS_BAD_HEADER:
267         msg_Err( p_dec, "the decoder encountered a corrupted frame header." );
268         break;
269     case FLAC__STREAM_DECODER_ERROR_STATUS_FRAME_CRC_MISMATCH:
270         msg_Err( p_dec, "frame's data did not match the CRC in the "
271                  "footer." );
272         break;
273     default:
274         msg_Err( p_dec, "got decoder error: %d", status );
275     }
276
277     FLAC__stream_decoder_flush( p_dec->p_sys->p_flac );
278     return;
279 }
280 /*****************************************************************************
281  * OpenDecoder: probe the decoder and return score
282  *****************************************************************************/
283 static int OpenDecoder( vlc_object_t *p_this )
284 {
285     decoder_t *p_dec = (decoder_t*)p_this;
286     decoder_sys_t *p_sys;
287
288     if( p_dec->fmt_in.i_codec != VLC_CODEC_FLAC )
289     {
290         return VLC_EGENERIC;
291     }
292
293     /* Allocate the memory needed to store the decoder's structure */
294     if( ( p_dec->p_sys = p_sys = malloc(sizeof(*p_sys)) ) == NULL )
295         return VLC_ENOMEM;
296
297     /* Misc init */
298     p_sys->b_stream_info = false;
299     p_sys->p_block = NULL;
300
301     /* Take care of flac init */
302     if( !(p_sys->p_flac = FLAC__stream_decoder_new()) )
303     {
304         msg_Err( p_dec, "FLAC__stream_decoder_new() failed" );
305         free( p_sys );
306         return VLC_EGENERIC;
307     }
308
309 #ifdef USE_NEW_FLAC_API
310     if( FLAC__stream_decoder_init_stream( p_sys->p_flac,
311                                           DecoderReadCallback,
312                                           NULL,
313                                           NULL,
314                                           NULL,
315                                           NULL,
316                                           DecoderWriteCallback,
317                                           DecoderMetadataCallback,
318                                           DecoderErrorCallback,
319                                           p_dec )
320         != FLAC__STREAM_DECODER_INIT_STATUS_OK )
321     {
322         msg_Err( p_dec, "FLAC__stream_decoder_init_stream() failed" );
323         FLAC__stream_decoder_delete( p_sys->p_flac );
324         free( p_sys );
325         return VLC_EGENERIC;
326     }
327 #else
328     FLAC__stream_decoder_set_read_callback( p_sys->p_flac,
329                                             DecoderReadCallback );
330     FLAC__stream_decoder_set_write_callback( p_sys->p_flac,
331                                              DecoderWriteCallback );
332     FLAC__stream_decoder_set_metadata_callback( p_sys->p_flac,
333                                                 DecoderMetadataCallback );
334     FLAC__stream_decoder_set_error_callback( p_sys->p_flac,
335                                              DecoderErrorCallback );
336     FLAC__stream_decoder_set_client_data( p_sys->p_flac, p_dec );
337
338     FLAC__stream_decoder_init( p_sys->p_flac );
339 #endif
340
341     /* Set output properties */
342     p_dec->fmt_out.i_cat = AUDIO_ES;
343     p_dec->fmt_out.i_codec = VLC_CODEC_S32N;
344
345     /* Set callbacks */
346     p_dec->pf_decode_audio = DecodeBlock;
347
348     /* */
349     p_dec->b_need_packetized = true;
350
351     return VLC_SUCCESS;
352 }
353
354 /*****************************************************************************
355  * CloseDecoder: flac decoder destruction
356  *****************************************************************************/
357 static void CloseDecoder( vlc_object_t *p_this )
358 {
359     decoder_t *p_dec = (decoder_t *)p_this;
360     decoder_sys_t *p_sys = p_dec->p_sys;
361
362     FLAC__stream_decoder_finish( p_sys->p_flac );
363     FLAC__stream_decoder_delete( p_sys->p_flac );
364
365     if( p_sys->p_block )
366         block_Release( p_sys->p_block );
367     free( p_sys );
368 }
369
370 /*****************************************************************************
371  * ProcessHeader: process Flac header.
372  *****************************************************************************/
373 static void ProcessHeader( decoder_t *p_dec )
374 {
375     decoder_sys_t *p_sys = p_dec->p_sys;
376
377     if( !p_dec->fmt_in.i_extra )
378         return;
379
380     /* Decode STREAMINFO */
381     msg_Dbg( p_dec, "decode STREAMINFO" );
382     size_t i_extra = p_dec->fmt_in.i_extra;
383     switch (i_extra) {
384     case 34:
385         p_sys->p_block = block_Alloc( 8 + i_extra );
386         memcpy( p_sys->p_block->p_buffer + 8, p_dec->fmt_in.p_extra, i_extra );
387         memcpy( p_sys->p_block->p_buffer, "fLaC", 4);
388         uint8_t *p = p_sys->p_block->p_buffer;
389         p[4] = 0x80 | 0; /* STREAMINFO faked as last block */
390         p[5] = 0;
391         p[6] = 0;
392         p[7] = 34; /* block size */
393         break;
394     case 42:
395         p_sys->p_block = block_Alloc( i_extra );
396         memcpy( p_sys->p_block->p_buffer, p_dec->fmt_in.p_extra, i_extra );
397         break;
398     default:
399         msg_Err(p_dec, "Invalid flac header size %zu", i_extra);
400         return;
401     }
402     FLAC__stream_decoder_process_until_end_of_metadata( p_sys->p_flac );
403     msg_Dbg( p_dec, "STREAMINFO decoded" );
404 }
405
406 /*****************************************************************************
407  * decoder_state_error: print meaningful error messages
408  *****************************************************************************/
409 static void decoder_state_error( decoder_t *p_dec,
410                                  FLAC__StreamDecoderState state )
411 {
412     switch ( state )
413     {
414     case FLAC__STREAM_DECODER_SEARCH_FOR_METADATA:
415         msg_Dbg( p_dec, "the decoder is ready to search for metadata." );
416         break;
417     case FLAC__STREAM_DECODER_READ_METADATA:
418         msg_Dbg( p_dec, "the decoder is ready to or is in the process of "
419                  "reading metadata." );
420         break;
421     case FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC:
422         msg_Dbg( p_dec, "the decoder is ready to or is in the process of "
423                  "searching for the frame sync code." );
424         break;
425     case FLAC__STREAM_DECODER_READ_FRAME:
426         msg_Dbg( p_dec, "the decoder is ready to or is in the process of "
427                  "reading a frame." );
428         break;
429     case FLAC__STREAM_DECODER_END_OF_STREAM:
430         msg_Dbg( p_dec, "the decoder has reached the end of the stream." );
431         break;
432 #ifdef USE_NEW_FLAC_API
433     case FLAC__STREAM_DECODER_OGG_ERROR:
434         msg_Err( p_dec, "error occurred in the Ogg layer." );
435         break;
436     case FLAC__STREAM_DECODER_SEEK_ERROR:
437         msg_Err( p_dec, "error occurred while seeking." );
438         break;
439 #endif
440     case FLAC__STREAM_DECODER_ABORTED:
441         msg_Warn( p_dec, "the decoder was aborted by the read callback." );
442         break;
443 #ifndef USE_NEW_FLAC_API
444     case FLAC__STREAM_DECODER_UNPARSEABLE_STREAM:
445         msg_Warn( p_dec, "the decoder encountered reserved fields in use "
446                  "in the stream." );
447         break;
448 #endif
449     case FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR:
450         msg_Err( p_dec, "error when allocating memory." );
451         break;
452 #ifndef USE_NEW_FLAC_API
453     case FLAC__STREAM_DECODER_ALREADY_INITIALIZED:
454         msg_Err( p_dec, "FLAC__stream_decoder_init() was called when the "
455                  "decoder was already initialized, usually because "
456                  "FLAC__stream_decoder_finish() was not called." );
457         break;
458     case FLAC__STREAM_DECODER_INVALID_CALLBACK:
459         msg_Err( p_dec, "FLAC__stream_decoder_init() was called without "
460                  "all callbacks being set." );
461         break;
462 #endif
463     case FLAC__STREAM_DECODER_UNINITIALIZED:
464         msg_Err( p_dec, "decoder in uninitialized state." );
465         break;
466     default:
467         msg_Warn(p_dec, "unknown error" );
468     }
469 }
470
471 /****************************************************************************
472  * DecodeBlock: the whole thing
473  ****************************************************************************/
474 static block_t *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
475 {
476     decoder_sys_t *p_sys = p_dec->p_sys;
477
478     if( !pp_block || !*pp_block )
479         return NULL;
480     if( (*pp_block)->i_flags&(BLOCK_FLAG_DISCONTINUITY|BLOCK_FLAG_CORRUPTED) )
481     {
482         block_Release( *pp_block );
483         return NULL;
484     }
485
486     if( !p_sys->b_stream_info )
487         ProcessHeader( p_dec );
488
489     p_sys->p_block = *pp_block;
490     *pp_block = NULL;
491
492     if( p_sys->p_block->i_pts > VLC_TS_INVALID &&
493         p_sys->p_block->i_pts != date_Get( &p_sys->end_date ) )
494         date_Set( &p_sys->end_date, p_sys->p_block->i_pts );
495
496     p_sys->p_aout_buffer = 0;
497
498     if( !FLAC__stream_decoder_process_single( p_sys->p_flac ) )
499     {
500         decoder_state_error( p_dec,
501                              FLAC__stream_decoder_get_state( p_sys->p_flac ) );
502         FLAC__stream_decoder_flush( p_dec->p_sys->p_flac );
503     }
504
505     /* If the decoder is in the "aborted" state,
506      * FLAC__stream_decoder_process_single() won't return an error. */
507     if( FLAC__stream_decoder_get_state(p_dec->p_sys->p_flac)
508         == FLAC__STREAM_DECODER_ABORTED )
509     {
510         FLAC__stream_decoder_flush( p_dec->p_sys->p_flac );
511     }
512
513     block_Release( p_sys->p_block );
514     p_sys->p_block = NULL;
515
516     return p_sys->p_aout_buffer;
517 }
518
519 #ifdef ENABLE_SOUT
520
521 /*****************************************************************************
522  * encoder_sys_t : flac encoder descriptor
523  *****************************************************************************/
524 struct encoder_sys_t
525 {
526     /*
527      * Input properties
528      */
529     int i_headers;
530
531     int i_samples_delay;
532
533     FLAC__int32 *p_buffer;
534     unsigned int i_buffer;
535
536     block_t *p_chain;
537
538     /*
539      * FLAC properties
540      */
541     FLAC__StreamEncoder *p_flac;
542     FLAC__StreamMetadata_StreamInfo stream_info;
543
544     /*
545      * Common properties
546      */
547     mtime_t i_pts;
548 };
549
550 #define STREAMINFO_SIZE 34
551
552 static block_t *Encode( encoder_t *, block_t * );
553
554 /*****************************************************************************
555  * EncoderWriteCallback: called by libflac to output encoded samples
556  *****************************************************************************/
557 static FLAC__StreamEncoderWriteStatus
558 EncoderWriteCallback( const FLAC__StreamEncoder *encoder,
559                       const FLAC__byte buffer[],
560                       size_t bytes, unsigned samples,
561                       unsigned current_frame, void *client_data )
562 {
563     VLC_UNUSED(encoder); VLC_UNUSED(current_frame);
564     encoder_t *p_enc = (encoder_t *)client_data;
565     encoder_sys_t *p_sys = p_enc->p_sys;
566     block_t *p_block;
567
568     if( samples == 0 )
569     {
570         if( p_sys->i_headers == 1 )
571         {
572             msg_Dbg( p_enc, "Writing STREAMINFO: %zu", bytes );
573
574             /* Backup the STREAMINFO metadata block */
575             p_enc->fmt_out.i_extra = STREAMINFO_SIZE;
576             p_enc->fmt_out.p_extra = xmalloc( STREAMINFO_SIZE );
577             memcpy(p_enc->fmt_out.p_extra, buffer + 4, STREAMINFO_SIZE );
578         }
579         p_sys->i_headers++;
580         return FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE;
581     }
582
583     p_block = block_Alloc( bytes );
584     memcpy( p_block->p_buffer, buffer, bytes );
585
586     p_block->i_dts = p_block->i_pts = p_sys->i_pts;
587
588     p_sys->i_samples_delay -= samples;
589
590     p_block->i_length = (mtime_t)1000000 *
591         (mtime_t)samples / (mtime_t)p_enc->fmt_in.audio.i_rate;
592
593     /* Update pts */
594     p_sys->i_pts += p_block->i_length;
595
596     block_ChainAppend( &p_sys->p_chain, p_block );
597
598     return FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE;
599 }
600 /*****************************************************************************
601  * EncoderMetadataCallback: called by libflac to output metadata
602  *****************************************************************************/
603 static void EncoderMetadataCallback( const FLAC__StreamEncoder *encoder,
604                                      const FLAC__StreamMetadata *metadata,
605                                      void *client_data )
606 {
607     VLC_UNUSED(encoder);
608     encoder_t *p_enc = (encoder_t *)client_data;
609
610     msg_Err( p_enc, "MetadataCallback: %i", metadata->type );
611     return;
612 }
613
614 /*****************************************************************************
615  * OpenEncoder: probe the encoder and return score
616  *****************************************************************************/
617 static int OpenEncoder( vlc_object_t *p_this )
618 {
619     encoder_t *p_enc = (encoder_t *)p_this;
620     encoder_sys_t *p_sys;
621
622     if( p_enc->fmt_out.i_codec != VLC_CODEC_FLAC &&
623         !p_enc->b_force )
624     {
625         return VLC_EGENERIC;
626     }
627
628     /* Allocate the memory needed to store the decoder's structure */
629     if( ( p_sys = (encoder_sys_t *)malloc(sizeof(encoder_sys_t)) ) == NULL )
630         return VLC_ENOMEM;
631     p_enc->p_sys = p_sys;
632     p_enc->pf_encode_audio = Encode;
633     p_enc->fmt_out.i_codec = VLC_CODEC_FLAC;
634
635     p_sys->i_headers = 0;
636     p_sys->p_buffer = 0;
637     p_sys->i_buffer = 0;
638     p_sys->i_samples_delay = 0;
639
640     /* Create flac encoder */
641     if( !(p_sys->p_flac = FLAC__stream_encoder_new()) )
642     {
643         msg_Err( p_enc, "FLAC__stream_encoder_new() failed" );
644         free( p_sys );
645         return VLC_EGENERIC;
646     }
647
648     FLAC__stream_encoder_set_streamable_subset( p_sys->p_flac, 1 );
649     FLAC__stream_encoder_set_channels( p_sys->p_flac,
650                                        p_enc->fmt_in.audio.i_channels );
651     FLAC__stream_encoder_set_sample_rate( p_sys->p_flac,
652                                           p_enc->fmt_in.audio.i_rate );
653     FLAC__stream_encoder_set_bits_per_sample( p_sys->p_flac, 16 );
654     p_enc->fmt_in.i_codec = VLC_CODEC_S16N;
655
656     /* Get and store the STREAMINFO metadata block as a p_extra */
657     p_sys->p_chain = 0;
658
659 #ifdef USE_NEW_FLAC_API
660     if( FLAC__stream_encoder_init_stream( p_sys->p_flac,
661                                           EncoderWriteCallback,
662                                           NULL,
663                                           NULL,
664                                           EncoderMetadataCallback,
665                                           p_enc )
666         != FLAC__STREAM_ENCODER_INIT_STATUS_OK )
667     {
668         msg_Err( p_enc, "FLAC__stream_encoder_init_stream() failed" );
669         FLAC__stream_encoder_delete( p_sys->p_flac );
670         free( p_sys );
671         return VLC_EGENERIC;
672     }
673 #else
674     FLAC__stream_encoder_set_write_callback( p_sys->p_flac,
675         EncoderWriteCallback );
676     FLAC__stream_encoder_set_metadata_callback( p_sys->p_flac,
677         EncoderMetadataCallback );
678     FLAC__stream_encoder_set_client_data( p_sys->p_flac, p_enc );
679
680     FLAC__stream_encoder_init( p_sys->p_flac );
681 #endif
682
683     return VLC_SUCCESS;
684 }
685
686 /****************************************************************************
687  * Encode: the whole thing
688  ****************************************************************************
689  * This function spits out ogg packets.
690  ****************************************************************************/
691 static block_t *Encode( encoder_t *p_enc, block_t *p_aout_buf )
692 {
693     encoder_sys_t *p_sys = p_enc->p_sys;
694     block_t *p_chain;
695     unsigned int i;
696
697     /* FIXME: p_aout_buf is NULL when it's time to flush*/
698     if( unlikely( !p_aout_buf ) ) return NULL;
699
700     p_sys->i_pts = p_aout_buf->i_pts -
701                 (mtime_t)1000000 * (mtime_t)p_sys->i_samples_delay /
702                 (mtime_t)p_enc->fmt_in.audio.i_rate;
703
704     p_sys->i_samples_delay += p_aout_buf->i_nb_samples;
705
706     /* Convert samples to FLAC__int32 */
707     if( p_sys->i_buffer < p_aout_buf->i_buffer * 2 )
708     {
709         p_sys->p_buffer =
710             xrealloc( p_sys->p_buffer, p_aout_buf->i_buffer * 2 );
711         p_sys->i_buffer = p_aout_buf->i_buffer * 2;
712     }
713
714     for( i = 0 ; i < p_aout_buf->i_buffer / 2 ; i++ )
715     {
716         p_sys->p_buffer[i]= ((int16_t *)p_aout_buf->p_buffer)[i];
717     }
718
719     FLAC__stream_encoder_process_interleaved( p_sys->p_flac, p_sys->p_buffer,
720                                               p_aout_buf->i_nb_samples );
721
722     p_chain = p_sys->p_chain;
723     p_sys->p_chain = 0;
724
725     return p_chain;
726 }
727
728 /*****************************************************************************
729  * CloseEncoder: encoder destruction
730  *****************************************************************************/
731 static void CloseEncoder( vlc_object_t *p_this )
732 {
733     encoder_t *p_enc = (encoder_t *)p_this;
734     encoder_sys_t *p_sys = p_enc->p_sys;
735
736     FLAC__stream_encoder_delete( p_sys->p_flac );
737
738     free( p_sys->p_buffer );
739     free( p_sys );
740 }
741 #endif