change to not use pipes so it works better on windows
[platform/upstream/flac.git] / test / test_streams.sh
1 #!/bin/sh
2
3 #  FLAC - Free Lossless Audio Codec
4 #  Copyright (C) 2001  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 echo "Generating streams..."
25 if test_streams ; then : ; else
26         echo "ERROR during test_streams" 1>&2
27         exit 1
28 fi
29
30 test_file ()
31 {
32         name=$1
33         channels=$2
34         bps=$3
35         encode_options="$4"
36
37         echo -n "$name: encode..."
38         cmd="flac -V -s -fr -fb -fs 44100 -fp $bps -fc $channels $encode_options $name.raw"
39         echo "### ENCODE $name #######################################################" >> ./streams.log
40         echo "###    cmd=$cmd" >> ./streams.log
41         if $cmd 2>>./streams.log ; then : ; else
42                 echo "ERROR during encode of $name" 1>&2
43                 exit 1
44         fi
45         echo -n "decode..."
46         cmd="flac -s -fb -d -fr -o $name.cmp $name.flac"
47         echo "### DECODE $name #######################################################" >> ./streams.log
48         echo "###    cmd=$cmd" >> ./streams.log
49         if $cmd 2>>./streams.log ; then : ; else
50                 echo "ERROR during decode of $name" 1>&2
51                 exit 1
52         fi
53         ls -1l $name.raw >> ./streams.log
54         ls -1l $name.flac >> ./streams.log
55         ls -1l $name.cmp >> ./streams.log
56         echo -n "compare..."
57         if cmp $name.raw $name.cmp ; then : ; else
58                 echo "ERROR during compare of $name" 1>&2
59                 exit 1
60         fi
61         echo OK
62 }
63
64 echo "Testing small files..."
65 test_file test01 1 16 "-0 -l 16 -m -e -p"
66 test_file test02 2 16 "-0 -l 16 -m -e -p"
67 test_file test03 1 16 "-0 -l 16 -m -e -p"
68 test_file test04 2 16 "-0 -l 16 -m -e -p"
69
70 echo "Testing 8-bit full-scale deflection streams..."
71 for b in 01 02 03 04 05 06 07 ; do
72         test_file fsd8-$b 1 8 "-0 -l 16 -m -e -p"
73 done
74
75 echo "Testing 16-bit full-scale deflection streams..."
76 for b in 01 02 03 04 05 06 07 ; do
77         test_file fsd16-$b 1 16 "-0 -l 16 -m -e -p"
78 done
79
80 echo "Testing 24-bit full-scale deflection streams..."
81 for b in 01 02 03 04 05 06 07 ; do
82         test_file fsd24-$b 1 24 "-0 -l 16 -m -e -p"
83 done
84
85 echo "Testing 16-bit wasted-bits-per-sample streams..."
86 for b in 01 ; do
87         test_file wbps16-$b 1 16 "-0 -l 16 -m -e -p"
88 done
89
90 for bps in 16 24 ; do
91         echo "Testing $bps-bit sine wave streams..."
92         for b in 00 01 02 03 04 ; do
93                 test_file sine${bps}-$b 1 $bps "-0 -l 16 -m -e"
94         done
95         for b in 10 11 12 13 14 15 16 17 18 19 ; do
96                 test_file sine${bps}-$b 2 $bps "-0 -l 16 -m -e"
97         done
98 done
99
100 echo "Testing some frame header variations..."
101 test_file sine16-01 1 16 "-0 -l 8 -m -e -p --lax -b 16"
102 test_file sine16-01 1 16 "-0 -l 8 -m -e -p --lax -b 65535"
103 test_file sine16-01 1 16 "-0 -l 8 -m -e -p -b 16"
104 test_file sine16-01 1 16 "-0 -l 8 -m -e -p -b 65535"
105 test_file sine16-01 1 16 "-0 -l 8 -m -e -p --lax -fs 9"
106 test_file sine16-01 1 16 "-0 -l 8 -m -e -p --lax -fs 90"
107 test_file sine16-01 1 16 "-0 -l 8 -m -e -p --lax -fs 90000"
108 test_file sine16-01 1 16 "-0 -l 8 -m -e -p -fs 9"
109 test_file sine16-01 1 16 "-0 -l 8 -m -e -p -fs 90"
110 test_file sine16-01 1 16 "-0 -l 8 -m -e -p -fs 90000"
111
112 echo "Testing option variations..."
113 for f in 00 01 02 03 04 ; do
114         for opt in 0 1 2 4 5 6 8 ; do
115                 for extras in '' '-p' '-e' ; do
116                         test_file sine16-$f 1 16 "-$opt $extras"
117                 done
118         done
119 done
120 for f in 10 11 12 13 14 15 16 17 18 19 ; do
121         for opt in 0 1 2 4 5 6 8 ; do
122                 for extras in '' '-p' '-e' ; do
123                         test_file sine16-$f 2 16 "-$opt $extras"
124                 done
125         done
126 done
127
128 echo "Testing noise..."
129 for opt in 0 1 2 4 5 6 8 ; do
130         for extras in '' '-p' '-e' ; do
131                 for blocksize in '' '-b 32' '-b 32768' '-b 65535' ; do
132                         for channels in 1 2 4 8 ; do
133                                 for bps in 8 16 24 ; do
134                                         test_file noise $channels $bps "-$opt $extras $blocksize"
135                                 done
136                         done
137                 done
138         done
139 done