]> git.sesse.net Git - vlc/blob - plugins/ac3_adec/ac3_adec.h
* Fixed an alignment issue in the ac3 decoder.
[vlc] / plugins / ac3_adec / ac3_adec.h
1 /*****************************************************************************
2  * ac3_adec.h : ac3 decoder thread interface
3  *****************************************************************************
4  * Copyright (C) 1999, 2000 VideoLAN
5  * $Id: ac3_adec.h,v 1.2 2002/01/22 23:14:26 massiot Exp $
6  *
7  * Authors: Michel Kaempf <maxx@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  * ac3dec_thread_t : ac3 decoder thread descriptor
26  *****************************************************************************/
27
28 typedef struct ac3dec_thread_s
29 {
30     /*
31      * Decoder properties
32      */
33     ac3dec_t *          ac3_decoder;
34     
35     /*
36      * Thread properties
37      */
38     vlc_thread_t        thread_id;                /* id for thread functions */
39
40     /*
41      * Input properties
42      */
43     decoder_fifo_t *    p_fifo;                /* stores the PES stream data */
44     decoder_config_t *  p_config;
45
46     /*
47      * Output properties
48      */
49     aout_fifo_t *       p_aout_fifo; /* stores the decompressed audio frames */
50
51 } ac3dec_thread_t;
52
53 /*****************************************************************************
54  * Prototypes
55  *****************************************************************************/
56 vlc_thread_t            ac3dec_CreateThread( decoder_config_t * p_config );