]> git.sesse.net Git - vlc/blob - src/audio_decoder/adec_test.c
. this is a coding style patch which removes all "foo(bar){" constructions
[vlc] / src / audio_decoder / adec_test.c
1 /*****************************************************************************
2  * adec_test.c: MPEG Layer I-II audio decoder test program
3  *****************************************************************************
4  * Copyright (C) 1999, 2000 VideoLAN
5  *
6  * Authors:
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  * 
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
21  *****************************************************************************/
22
23 /*
24  * TODO :
25  *
26  * - optimiser les NeedBits() et les GetBits() du code là où c'est possible ;
27  * - vlc_cond_signal() / vlc_cond_wait() ;
28  *
29  */
30
31 /*****************************************************************************
32  * Preamble
33  *****************************************************************************/
34
35 #include <stdio.h>
36 #include <string.h>
37
38 #include "int_types.h"
39 #include "adec_generic.h"
40
41 #define ADEC_FRAME_SIZE (2*1152)
42
43 int main (void)
44 {
45     audiodec_t decoder;
46     adec_sync_info_t sync_info;
47     adec_byte_stream_t * stream;
48     s16 buffer [ADEC_FRAME_SIZE];
49
50     int framenum;
51
52     memset (&decoder, 0, sizeof (decoder));
53     if (adec_init (&decoder))
54     {
55         return 1;
56     }
57
58     stream = adec_byte_stream (&decoder);
59     stream->p_byte = NULL;
60     stream->p_end = NULL;
61     stream->info = stdin;
62
63     framenum = 0;
64
65     while (1)
66     {
67         int i;
68
69         if (adec_sync_frame (&decoder, &sync_info))
70         {
71             return 1;
72         }
73         if (adec_decode_frame (&decoder, buffer))
74         {
75             return 1;
76         }
77
78 #if 1
79         for (i = 0; i < (2*1152); i++)
80         {
81             fprintf ( stderr, "%04X\n",(u16)buffer[i] );
82         }
83 #endif
84     }
85
86     return 0;
87 }
88
89 void adec_byte_stream_next (adec_byte_stream_t * p_byte_stream)
90 {
91     static u8 buffer [1024];
92     static u8 dummy = 0;
93     FILE * fd;
94     int size;
95
96     fd = p_byte_stream->info;
97     size = fread (buffer, 1, 1024, fd);
98     if (size)
99     {
100         p_byte_stream->p_byte = buffer;
101         p_byte_stream->p_end = buffer + size;
102     }
103     else
104     {   /* end of stream, read dummy zeroes */
105         p_byte_stream->p_byte = &dummy;
106         p_byte_stream->p_end = &dummy + 1;
107     }
108 }