aed3d68963a09e1022a46578155a4e79fb6ee77e
[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 echo "Checking for --ogg support in flac..."
34 if flac --ogg wacky1.wav 1>/dev/null 2>&1 ; then
35         has_ogg=yes;
36         echo "flac --ogg works"
37 else
38         has_ogg=no;
39         echo "flac --ogg doesn't work"
40 fi
41
42 #
43 # multi-file tests
44 #
45 echo "Generating multiple input files from noise..."
46 if flac --verify --silent --force-raw-format --endian=big --sign=signed --sample-rate=44100 --bps=16 --channels=2 noise.raw ; then : ; else
47         echo "ERROR generating FLAC file" 1>&2
48         exit 1
49 fi
50 if flac --decode --silent noise.flac ; then : ; else
51         echo "ERROR generating WAVE file" 1>&2
52         exit 1
53 fi
54 rm -f noise.flac
55 mv noise.wav file0.wav
56 cp file0.wav file1.wav
57 cp file1.wav file2.wav
58
59 test_multifile ()
60 {
61         streamtype=$1
62         sector_align=$2
63         encode_options="$3"
64
65         if [ $streamtype = ogg ] ; then
66                 suffix=ogg
67                 encode_options="$encode_options --ogg"
68         else
69                 suffix=flac
70         fi
71
72         if [ $sector_align = sector_align ] ; then
73                 encode_options="$encode_options --sector-align"
74         fi
75
76         if flac $encode_options file0.wav file1.wav file2.wav ; then : ; else
77                 echo "ERROR" 1>&2
78                 exit 1
79         fi
80         for n in 0 1 2 ; do
81                 mv file$n.$suffix file${n}x.$suffix
82         done
83         if flac --decode file0x.$suffix file1x.$suffix file2x.$suffix ; then : ; else
84                 echo "ERROR" 1>&2
85                 exit 1
86         fi
87         if [ $sector_align != sector_align ] ; then
88                 for n in 0 1 2 ; do
89                         if cmp file$n.wav file${n}x.wav ; then : ; else
90                                 echo "ERROR: file mismatch on file #$n" 1>&2
91                                 exit 1
92                         fi
93                 done
94         fi
95         for n in 0 1 2 ; do
96                 rm -f file${n}x.$suffix file${n}x.wav
97         done
98 }
99
100 echo "Testing multiple files without verify..."
101 test_multifile flac no_sector_align ""
102
103 echo "Testing multiple files with verify..."
104 test_multifile flac no_sector_align "--verify"
105
106 echo "Testing multiple files with --sector-align, without verify..."
107 test_multifile flac sector_align ""
108
109 echo "Testing multiple files with --sector-align, with verify..."
110 test_multifile flac sector_align "--verify"
111
112 if [ $has_ogg = "yes" ] ; then
113         echo "Testing multiple files with --ogg, without verify..."
114         test_multifile ogg no_sector_align ""
115
116         echo "Testing multiple files with --ogg, with verify..."
117         test_multifile ogg no_sector_align "--verify"
118
119         echo "Testing multiple files with --ogg and --sector-align, without verify..."
120         test_multifile ogg sector_align ""
121
122         echo "Testing multiple files with --ogg and --sector-align, with verify..."
123         test_multifile sector_align ogg "--verify"
124 fi
125
126 #
127 # single-file tests
128 #
129
130 test_file ()
131 {
132         name=$1
133         channels=$2
134         bps=$3
135         encode_options="$4"
136
137         echo -n "$name (--channels=$channels --bps=$bps $encode_options): encode..."
138         cmd="flac --verify --silent --force-raw-format --endian=big --sign=signed --sample-rate=44100 --bps=$bps --channels=$channels $encode_options $name.raw"
139         echo "### ENCODE $name #######################################################" >> ./streams.log
140         echo "###    cmd=$cmd" >> ./streams.log
141         if $cmd 2>>./streams.log ; then : ; else
142                 echo "ERROR during encode of $name" 1>&2
143                 exit 1
144         fi
145         echo -n "decode..."
146         cmd="flac --silent --endian=big --sign=signed --decode --force-raw-format --output-name=$name.cmp $name.flac"
147         echo "### DECODE $name #######################################################" >> ./streams.log
148         echo "###    cmd=$cmd" >> ./streams.log
149         if $cmd 2>>./streams.log ; then : ; else
150                 echo "ERROR during decode of $name" 1>&2
151                 exit 1
152         fi
153         ls -1l $name.raw >> ./streams.log
154         ls -1l $name.flac >> ./streams.log
155         ls -1l $name.cmp >> ./streams.log
156         echo -n "compare..."
157         if cmp $name.raw $name.cmp ; then : ; else
158                 echo "ERROR during compare of $name" 1>&2
159                 exit 1
160         fi
161         echo OK
162 }
163
164 test_file_piped ()
165 {
166         name=$1
167         channels=$2
168         bps=$3
169         encode_options="$4"
170
171         if [ `env | grep -ic '^comspec='` != 0 ] ; then
172                 is_win=yes
173         else
174                 is_win=no
175         fi
176
177         echo -n "$name: encode via pipes..."
178         if [ $is_win = yes ] ; then
179                 cmd="flac --verify --silent --force-raw-format --endian=big --sign=signed --sample-rate=44100 --bps=$bps --channels=$channels $encode_options --stdout $name.raw"
180                 echo "### ENCODE $name #######################################################" >> ./streams.log
181                 echo "###    cmd=$cmd" >> ./streams.log
182                 if $cmd 1>$name.flac 2>>./streams.log ; then : ; else
183                         echo "ERROR during encode of $name" 1>&2
184                         exit 1
185                 fi
186         else
187                 cmd="flac --verify --silent --force-raw-format --endian=big --sign=signed --sample-rate=44100 --bps=$bps --channels=$channels $encode_options --stdout -"
188                 echo "### ENCODE $name #######################################################" >> ./streams.log
189                 echo "###    cmd=$cmd" >> ./streams.log
190                 if cat $name.raw | $cmd 1>$name.flac 2>>./streams.log ; then : ; else
191                         echo "ERROR during encode of $name" 1>&2
192                         exit 1
193                 fi
194         fi
195         echo -n "decode via pipes..."
196         if [ $is_win = yes ] ; then
197                 cmd="flac --silent --endian=big --sign=signed --decode --force-raw-format --stdout $name.flac"
198                 echo "### DECODE $name #######################################################" >> ./streams.log
199                 echo "###    cmd=$cmd" >> ./streams.log
200                 if $cmd 1>$name.cmp 2>>./streams.log ; then : ; else
201                         echo "ERROR during decode of $name" 1>&2
202                         exit 1
203                 fi
204         else
205                 cmd="flac --silent --endian=big --sign=signed --decode --force-raw-format --stdout -"
206                 echo "### DECODE $name #######################################################" >> ./streams.log
207                 echo "###    cmd=$cmd" >> ./streams.log
208                 if cat $name.flac | $cmd 1>$name.cmp 2>>./streams.log ; then : ; else
209                         echo "ERROR during decode of $name" 1>&2
210                         exit 1
211                 fi
212         fi
213         ls -1l $name.raw >> ./streams.log
214         ls -1l $name.flac >> ./streams.log
215         ls -1l $name.cmp >> ./streams.log
216         echo -n "compare..."
217         if cmp $name.raw $name.cmp ; then : ; else
218                 echo "ERROR during compare of $name" 1>&2
219                 exit 1
220         fi
221         echo OK
222 }
223
224 if [ "$FLAC__EXHAUSTIVE_TESTS" = yes ] ; then
225         max_lpc_order=32
226 else
227         max_lpc_order=16
228 fi
229
230 echo "Testing noise through pipes..."
231 test_file_piped noise 1 8 "-0"
232
233 echo "Testing small files..."
234 test_file test01 1 16 "-0 -l $max_lpc_order -m -e -p"
235 test_file test02 2 16 "-0 -l $max_lpc_order -m -e -p"
236 test_file test03 1 16 "-0 -l $max_lpc_order -m -e -p"
237 test_file test04 2 16 "-0 -l $max_lpc_order -m -e -p"
238
239 echo "Testing 8-bit full-scale deflection streams..."
240 for b in 01 02 03 04 05 06 07 ; do
241         test_file fsd8-$b 1 8 "-0 -l $max_lpc_order -m -e -p"
242 done
243
244 echo "Testing 16-bit full-scale deflection streams..."
245 for b in 01 02 03 04 05 06 07 ; do
246         test_file fsd16-$b 1 16 "-0 -l $max_lpc_order -m -e -p"
247 done
248
249 echo "Testing 24-bit full-scale deflection streams..."
250 for b in 01 02 03 04 05 06 07 ; do
251         test_file fsd24-$b 1 24 "-0 -l $max_lpc_order -m -e -p"
252 done
253
254 echo "Testing 16-bit wasted-bits-per-sample streams..."
255 for b in 01 ; do
256         test_file wbps16-$b 1 16 "-0 -l $max_lpc_order -m -e -p"
257 done
258
259 for bps in 8 16 24 ; do
260         echo "Testing $bps-bit sine wave streams..."
261         for b in 00 ; do
262                 test_file sine${bps}-$b 1 $bps "-0 -l $max_lpc_order -m -e --sample-rate=48000"
263         done
264         for b in 01 ; do
265                 test_file sine${bps}-$b 1 $bps "-0 -l $max_lpc_order -m -e --sample-rate=96000"
266         done
267         for b in 02 03 04 ; do
268                 test_file sine${bps}-$b 1 $bps "-0 -l $max_lpc_order -m -e"
269         done
270         for b in 10 11 ; do
271                 test_file sine${bps}-$b 2 $bps "-0 -l $max_lpc_order -m -e --sample-rate=48000"
272         done
273         for b in 12 ; do
274                 test_file sine${bps}-$b 2 $bps "-0 -l $max_lpc_order -m -e --sample-rate=96000"
275         done
276         for b in 13 14 15 16 17 18 19 ; do
277                 test_file sine${bps}-$b 2 $bps "-0 -l $max_lpc_order -m -e"
278         done
279 done
280
281 echo "Testing some frame header variations..."
282 test_file sine16-01 1 16 "-0 -l $max_lpc_order -m -e -p --lax -b $max_lpc_order"
283 test_file sine16-01 1 16 "-0 -l $max_lpc_order -m -e -p --lax -b 65535"
284 test_file sine16-01 1 16 "-0 -l $max_lpc_order -m -e -p --lax --sample-rate=9"
285 test_file sine16-01 1 16 "-0 -l $max_lpc_order -m -e -p --lax --sample-rate=90"
286 test_file sine16-01 1 16 "-0 -l $max_lpc_order -m -e -p --lax --sample-rate=90000"
287 test_file sine16-01 1 16 "-0 -l $max_lpc_order -m -e -p --sample-rate=9"
288 test_file sine16-01 1 16 "-0 -l $max_lpc_order -m -e -p --sample-rate=90"
289 test_file sine16-01 1 16 "-0 -l $max_lpc_order -m -e -p --sample-rate=90000"
290
291 echo "Testing option variations..."
292 for f in 00 01 02 03 04 ; do
293         for opt in 0 1 2 4 5 6 8 ; do
294                 for extras in '' '-p' '-e' ; do
295                         test_file sine16-$f 1 16 "-$opt $extras"
296                 done
297         done
298         if [ "$FLAC__EXHAUSTIVE_TESTS" = yes ] ; then
299                 test_file sine16-$f 1 16 "-b 16384 -m -r 8 -l $max_lpc_order -e -p"
300         fi
301 done
302
303 for f in 10 11 12 13 14 15 16 17 18 19 ; do
304         for opt in 0 1 2 4 5 6 8 ; do
305                 for extras in '' '-p' '-e' ; do
306                         test_file sine16-$f 2 16 "-$opt $extras"
307                 done
308         done
309         if [ "$FLAC__EXHAUSTIVE_TESTS" = yes ] ; then
310                 test_file sine16-$f 2 16 "-b 16384 -m -r 8 -l $max_lpc_order -e -p"
311         fi
312 done
313
314 echo "Testing noise..."
315 for channels in 1 2 4 8 ; do
316         for bps in 8 16 24 ; do
317                 for opt in 0 1 2 3 4 5 6 7 8 ; do
318                         for extras in '' '-p' '-e' ; do
319                                 for blocksize in '' '--lax -b 32' '--lax -b 32768' '--lax -b 65535' ; do
320                                         test_file noise $channels $bps "-$opt $extras $blocksize"
321                                 done
322                         done
323                 done
324                 if [ "$FLAC__EXHAUSTIVE_TESTS" = yes ] ; then
325                         test_file noise $channels $bps "-b 16384 -m -r 8 -l $max_lpc_order -e -p"
326                 fi
327         done
328 done