]> git.sesse.net Git - vlc/blob - src/ac3_spdif/ac3_spdif.h
* Closing Debian bug #119369 which was fixed a while ago.
[vlc] / src / ac3_spdif / ac3_spdif.h
1 /*****************************************************************************
2  * ac3_spdif.h: header for ac3 pass-through
3  *****************************************************************************
4  * Copyright (C) 2001 VideoLAN
5  * $Id: ac3_spdif.h,v 1.5 2001/09/30 20:25:13 bozo Exp $
6  *
7  * Authors: Stéphane Borel <stef@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 typedef struct ac3_info_s
25 {
26     int i_bit_rate;
27     int i_frame_size;
28     int i_sample_rate;
29     int i_bs_mod;
30 } ac3_info_t;
31
32 /*****************************************************************************
33  * ac3_spdif_thread_t : ac3 pass-through thread descriptor
34  *****************************************************************************/
35 typedef struct ac3_spdif_thread_s
36 {
37     /*
38      * Thread properties
39      */
40     vlc_thread_t        thread_id;                /* id for thread functions */
41
42     /*
43      * Input properties
44      */
45     decoder_fifo_t *    p_fifo;                /* stores the PES stream data */
46     adec_config_t *     p_config;
47
48     /* The bit stream structure handles the PES stream at the bit level */
49     bit_stream_t        bit_stream;
50     int                 i_available;
51
52     /*
53      * Decoder properties
54      */
55     ac3_info_t          ac3_info;
56     u8 *                p_ac3;
57     u8 *                p_iec;
58
59     /* current pes date */
60     mtime_t             i_pts;
61     mtime_t             i_real_pts;
62
63     /*
64      * Output properties
65      */
66     aout_fifo_t *       p_aout_fifo; /* stores the decompressed audio frames */
67
68 } ac3_spdif_thread_t;
69
70 /*****************************************************************************
71  * Prototypes
72  *****************************************************************************/
73 vlc_thread_t    spdif_CreateThread( adec_config_t * p_config );
74