fix check for needed binaries
[platform/upstream/flac.git] / test / test_streams.sh
1 #!/bin/sh
2
3 #  FLAC - Free Lossless Audio Codec
4 #  Copyright (C) 2001,2002  Josh Coalson
5 #
6 #  This program is part of FLAC; you can redistribute it and/or
7 #  modify it under the terms of the GNU General Public License
8 #  as published by the Free Software Foundation; either version 2
9 #  of the License, or (at your option) any later version.
10 #
11 #  This program is distributed in the hope that it will be useful,
12 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 #  GNU General Public License for more details.
15 #
16 #  You should have received a copy of the GNU General Public License
17 #  along with this program; if not, write to the Free Software
18 #  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19
20 LD_LIBRARY_PATH=../src/libFLAC/.libs:../obj/lib:$LD_LIBRARY_PATH
21 export LD_LIBRARY_PATH
22 PATH=../src/flac:../src/test_streams:../obj/bin:$PATH
23
24 flac --help 1>/dev/null 2>/dev/null || (echo "ERROR can't find flac executable" 1>&2 && exit 1)
25 if [ $? != 0 ] ; then exit 1 ; fi
26
27 echo "Generating streams..."
28 if test_streams ; then : ; else
29         echo "ERROR during test_streams" 1>&2
30         exit 1
31 fi
32
33 test_file ()
34 {
35         name=$1
36         channels=$2
37         bps=$3
38         encode_options="$4"
39
40         echo -n "$name: encode..."
41         cmd="flac -V -s -fr -fb -fs 44100 -fp $bps -fc $channels $encode_options $name.raw"
42         echo "### ENCODE $name #######################################################" >> ./streams.log
43         echo "###    cmd=$cmd" >> ./streams.log
44         if $cmd 2>>./streams.log ; then : ; else
45                 echo "ERROR during encode of $name" 1>&2
46                 exit 1
47         fi
48         echo -n "decode..."
49         cmd="flac -s -fb -d -fr -o $name.cmp $name.flac"
50         echo "### DECODE $name #######################################################" >> ./streams.log
51         echo "###    cmd=$cmd" >> ./streams.log
52         if $cmd 2>>./streams.log ; then : ; else
53                 echo "ERROR during decode of $name" 1>&2
54                 exit 1
55         fi
56         ls -1l $name.raw >> ./streams.log
57         ls -1l $name.flac >> ./streams.log
58         ls -1l $name.cmp >> ./streams.log
59         echo -n "compare..."
60         if cmp $name.raw $name.cmp ; then : ; else
61                 echo "ERROR during compare of $name" 1>&2
62                 exit 1
63         fi
64         echo OK
65 }
66
67 test_file_piped ()
68 {
69         name=$1
70         channels=$2
71         bps=$3
72         encode_options="$4"
73
74         if [ `env | grep -ic '^comspec='` != 0 ] ; then
75                 is_win=yes
76         else
77                 is_win=no
78         fi
79
80         echo -n "$name: encode via pipes..."
81         if [ $is_win = yes ] ; then
82                 cmd="flac -V -s -fr -fb -fs 44100 -fp $bps -fc $channels $encode_options -c $name.raw"
83                 echo "### ENCODE $name #######################################################" >> ./streams.log
84                 echo "###    cmd=$cmd" >> ./streams.log
85                 if $cmd 1>$name.flac 2>>./streams.log ; then : ; else
86                         echo "ERROR during encode of $name" 1>&2
87                         exit 1
88                 fi
89         else
90                 cmd="flac -V -s -fr -fb -fs 44100 -fp $bps -fc $channels $encode_options -c -"
91                 echo "### ENCODE $name #######################################################" >> ./streams.log
92                 echo "###    cmd=$cmd" >> ./streams.log
93                 if cat $name.raw | $cmd 1>$name.flac 2>>./streams.log ; then : ; else
94                         echo "ERROR during encode of $name" 1>&2
95                         exit 1
96                 fi
97         fi
98         echo -n "decode via pipes..."
99         if [ $is_win = yes ] ; then
100                 cmd="flac -s -fb -d -fr -c $name.flac"
101                 echo "### DECODE $name #######################################################" >> ./streams.log
102                 echo "###    cmd=$cmd" >> ./streams.log
103                 if $cmd 1>$name.cmp 2>>./streams.log ; then : ; else
104                         echo "ERROR during decode of $name" 1>&2
105                         exit 1
106                 fi
107         else
108                 cmd="flac -s -fb -d -fr -c -"
109                 echo "### DECODE $name #######################################################" >> ./streams.log
110                 echo "###    cmd=$cmd" >> ./streams.log
111                 if cat $name.flac | $cmd 1>$name.cmp 2>>./streams.log ; then : ; else
112                         echo "ERROR during decode of $name" 1>&2
113                         exit 1
114                 fi
115         fi
116         ls -1l $name.raw >> ./streams.log
117         ls -1l $name.flac >> ./streams.log
118         ls -1l $name.cmp >> ./streams.log
119         echo -n "compare..."
120         if cmp $name.raw $name.cmp ; then : ; else
121                 echo "ERROR during compare of $name" 1>&2
122                 exit 1
123         fi
124         echo OK
125 }
126
127 echo "Testing noise through pipes..."
128 test_file_piped noise 1 8 "-0"
129
130 echo "Testing small files..."
131 test_file test01 1 16 "-0 -l 16 -m -e -p"
132 test_file test02 2 16 "-0 -l 16 -m -e -p"
133 test_file test03 1 16 "-0 -l 16 -m -e -p"
134 test_file test04 2 16 "-0 -l 16 -m -e -p"
135
136 echo "Testing 8-bit full-scale deflection streams..."
137 for b in 01 02 03 04 05 06 07 ; do
138         test_file fsd8-$b 1 8 "-0 -l 16 -m -e -p"
139 done
140
141 echo "Testing 16-bit full-scale deflection streams..."
142 for b in 01 02 03 04 05 06 07 ; do
143         test_file fsd16-$b 1 16 "-0 -l 16 -m -e -p"
144 done
145
146 echo "Testing 24-bit full-scale deflection streams..."
147 for b in 01 02 03 04 05 06 07 ; do
148         test_file fsd24-$b 1 24 "-0 -l 16 -m -e -p"
149 done
150
151 echo "Testing 16-bit wasted-bits-per-sample streams..."
152 for b in 01 ; do
153         test_file wbps16-$b 1 16 "-0 -l 16 -m -e -p"
154 done
155
156 for bps in 16 24 ; do
157         echo "Testing $bps-bit sine wave streams..."
158         for b in 00 01 02 03 04 ; do
159                 test_file sine${bps}-$b 1 $bps "-0 -l 16 -m -e"
160         done
161         for b in 10 11 12 13 14 15 16 17 18 19 ; do
162                 test_file sine${bps}-$b 2 $bps "-0 -l 16 -m -e"
163         done
164 done
165
166 echo "Testing some frame header variations..."
167 test_file sine16-01 1 16 "-0 -l 8 -m -e -p --lax -b 16"
168 test_file sine16-01 1 16 "-0 -l 8 -m -e -p --lax -b 65535"
169 test_file sine16-01 1 16 "-0 -l 8 -m -e -p -b 16"
170 test_file sine16-01 1 16 "-0 -l 8 -m -e -p -b 65535"
171 test_file sine16-01 1 16 "-0 -l 8 -m -e -p --lax -fs 9"
172 test_file sine16-01 1 16 "-0 -l 8 -m -e -p --lax -fs 90"
173 test_file sine16-01 1 16 "-0 -l 8 -m -e -p --lax -fs 90000"
174 test_file sine16-01 1 16 "-0 -l 8 -m -e -p -fs 9"
175 test_file sine16-01 1 16 "-0 -l 8 -m -e -p -fs 90"
176 test_file sine16-01 1 16 "-0 -l 8 -m -e -p -fs 90000"
177
178 echo "Testing option variations..."
179 for f in 00 01 02 03 04 ; do
180         for opt in 0 1 2 4 5 6 8 ; do
181                 for extras in '' '-p' '-e' ; do
182                         test_file sine16-$f 1 16 "-$opt $extras"
183                 done
184         done
185 done
186 for f in 10 11 12 13 14 15 16 17 18 19 ; do
187         for opt in 0 1 2 4 5 6 8 ; do
188                 for extras in '' '-p' '-e' ; do
189                         test_file sine16-$f 2 16 "-$opt $extras"
190                 done
191         done
192 done
193
194 echo "Testing noise..."
195 for opt in 0 1 2 3 4 5 6 7 8 ; do
196         for extras in '' '-p' '-e' ; do
197                 for blocksize in '' '-b 32' '-b 32768' '-b 65535' ; do
198                         for channels in 1 2 4 8 ; do
199                                 for bps in 8 16 24 ; do
200                                         test_file noise $channels $bps "-$opt $extras $blocksize"
201                                 done
202                         done
203                 done
204         done
205 done