]> git.sesse.net Git - vlc/blob - modules/codec/faad/decoder.h
* modules/*: sanitization of the modules description strings.
[vlc] / modules / codec / faad / decoder.h
1 /*****************************************************************************
2  * decoder.h: faad decoder modules
3  *
4  *****************************************************************************
5  * Copyright (C) 2001 VideoLAN
6  * $Id: decoder.h,v 1.6 2003/01/25 18:09:30 fenrir Exp $
7  *
8  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 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 General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 #define AAC_MAXCHANNELS 64
26
27 typedef struct adec_thread_s
28 {
29
30     /*
31      * faad decoder session
32      */
33     /* faad stuff */
34     faacDecHandle *p_handle;
35
36     /* The bit stream structure handles the PES stream at the bit level */
37     bit_stream_t        bit_stream;
38
39     /*
40      * Input properties
41      */
42     decoder_fifo_t *p_fifo;
43
44     uint8_t        *p_buffer;
45     int             i_buffer;
46
47     /*
48      * Output properties
49      */
50     aout_instance_t *   p_aout;       /* opaque */
51     aout_input_t *      p_aout_input; /* opaque */
52     audio_sample_format_t output_format;
53
54     audio_date_t        date;
55     mtime_t             pts;
56
57 } adec_thread_t;
58