]> git.sesse.net Git - vlc/blob - src/audio_decoder/audio_test.c
- fixed the ratio/position problem in YUV, now patching Stable.
[vlc] / src / audio_decoder / audio_test.c
1 /*****************************************************************************
2  * audio_test.c: MPEG1 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 "audio_decoder.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         return 1;
55
56     stream = adec_byte_stream (&decoder);
57     stream->p_byte = NULL;
58     stream->p_end = NULL;
59     stream->info = stdin;
60
61     framenum = 0;
62
63     while (1) {
64         int i;
65
66         if (adec_sync_frame (&decoder, &sync_info))
67             return 1;
68         if (adec_decode_frame (&decoder, buffer))
69             return 1;
70
71 #if 1
72         for (i = 0; i < (2*1152); i++)
73             fprintf ( stderr, "%04X\n",(u16)buffer[i] );
74 #endif
75     }
76
77     return 0;
78 }
79
80 void adec_byte_stream_next (adec_byte_stream_t * p_byte_stream)
81 {
82     static u8 buffer [1024];
83     static u8 dummy = 0;
84     FILE * fd;
85     int size;
86
87     fd = p_byte_stream->info;
88     size = fread (buffer, 1, 1024, fd);
89     if (size) {
90         p_byte_stream->p_byte = buffer;
91         p_byte_stream->p_end = buffer + size;
92     } else {    /* end of stream, read dummy zeroes */
93         p_byte_stream->p_byte = &dummy;
94         p_byte_stream->p_end = &dummy + 1;
95     }
96 }