]> git.sesse.net Git - vlc/blob - modules/codec/ffmpeg/audio.h
* all: some clean up with WAVEFORMATEX and endian issues. Somebody could
[vlc] / modules / codec / ffmpeg / audio.h
1 /*****************************************************************************
2  * audio.h: video decoder using ffmpeg library
3  *****************************************************************************
4  * Copyright (C) 1999-2001 VideoLAN
5  * $Id: audio.h,v 1.2 2002/11/14 22:38:47 massiot Exp $
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24
25 /* for an audio stream */
26 typedef struct waveformatex_s
27 {
28     u16 i_formattag;
29     u16 i_nb_channels;
30     u32 i_samplespersec;
31     u32 i_avgbytespersec;
32     u16 i_blockalign;
33     u16 i_bitspersample;
34     u16 i_size; /* the extra size in bytes */
35
36     u8  *p_data; /* The extra data */
37 } waveformatex_t;
38
39 typedef struct adec_thread_s
40 {
41     DECODER_THREAD_COMMON
42
43     waveformatex_t  format;
44
45     /*
46      * Output properties
47      */
48
49     u8 *                p_output;
50     
51     aout_instance_t *   p_aout;       /* opaque */
52     aout_input_t *      p_aout_input; /* opaque */
53     audio_sample_format_t output_format;
54
55     audio_date_t        date;
56
57 } adec_thread_t;
58
59 /*
60  * Local prototypes
61  */
62 int      E_( InitThread_Audio )   ( adec_thread_t * );
63 void     E_( EndThread_Audio )    ( adec_thread_t * );
64 void     E_( DecodeThread_Audio ) ( adec_thread_t * );
65