8aebb0dac02355a14c7ab5df46dcd1147f3ed43c
[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 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 test_file_piped ()
65 {
66         name=$1
67         channels=$2
68         bps=$3
69         encode_options="$4"
70
71         echo -n "$name: encode via pipes..."
72         cmd="flac -V -s -fr -fb -fs 44100 -fp $bps -fc $channels $encode_options -c -"
73         echo "### ENCODE $name #######################################################" >> ./streams.log
74         echo "###    cmd=$cmd" >> ./streams.log
75         if cat $name.raw | $cmd 1>$name.flac 2>>./streams.log ; then : ; else
76                 echo "ERROR during encode of $name" 1>&2
77                 exit 1
78         fi
79         echo -n "decode via pipes..."
80         cmd="flac -s -fb -d -fr -c -"
81         echo "### DECODE $name #######################################################" >> ./streams.log
82         echo "###    cmd=$cmd" >> ./streams.log
83         if cat $name.flac | $cmd 1>$name.cmp 2>>./streams.log ; then : ; else
84                 echo "ERROR during decode of $name" 1>&2
85                 exit 1
86         fi
87         ls -1l $name.raw >> ./streams.log
88         ls -1l $name.flac >> ./streams.log
89         ls -1l $name.cmp >> ./streams.log
90         echo -n "compare..."
91         if cmp $name.raw $name.cmp ; then : ; else
92                 echo "ERROR during compare of $name" 1>&2
93                 exit 1
94         fi
95         echo OK
96 }
97
98 echo "Testing noise through pipes..."
99 test_file_piped noise 1 8 "-0"
100
101 echo "Testing small files..."
102 test_file test01 1 16 "-0 -l 16 -m -e -p"
103 test_file test02 2 16 "-0 -l 16 -m -e -p"
104 test_file test03 1 16 "-0 -l 16 -m -e -p"
105 test_file test04 2 16 "-0 -l 16 -m -e -p"
106
107 echo "Testing 8-bit full-scale deflection streams..."
108 for b in 01 02 03 04 05 06 07 ; do
109         test_file fsd8-$b 1 8 "-0 -l 16 -m -e -p"
110 done
111
112 echo "Testing 16-bit full-scale deflection streams..."
113 for b in 01 02 03 04 05 06 07 ; do
114         test_file fsd16-$b 1 16 "-0 -l 16 -m -e -p"
115 done
116
117 echo "Testing 24-bit full-scale deflection streams..."
118 for b in 01 02 03 04 05 06 07 ; do
119         test_file fsd24-$b 1 24 "-0 -l 16 -m -e -p"
120 done
121
122 echo "Testing 16-bit wasted-bits-per-sample streams..."
123 for b in 01 ; do
124         test_file wbps16-$b 1 16 "-0 -l 16 -m -e -p"
125 done
126
127 for bps in 16 24 ; do
128         echo "Testing $bps-bit sine wave streams..."
129         for b in 00 01 02 03 04 ; do
130                 test_file sine${bps}-$b 1 $bps "-0 -l 16 -m -e"
131         done
132         for b in 10 11 12 13 14 15 16 17 18 19 ; do
133                 test_file sine${bps}-$b 2 $bps "-0 -l 16 -m -e"
134         done
135 done
136
137 echo "Testing some frame header variations..."
138 test_file sine16-01 1 16 "-0 -l 8 -m -e -p --lax -b 16"
139 test_file sine16-01 1 16 "-0 -l 8 -m -e -p --lax -b 65535"
140 test_file sine16-01 1 16 "-0 -l 8 -m -e -p -b 16"
141 test_file sine16-01 1 16 "-0 -l 8 -m -e -p -b 65535"
142 test_file sine16-01 1 16 "-0 -l 8 -m -e -p --lax -fs 9"
143 test_file sine16-01 1 16 "-0 -l 8 -m -e -p --lax -fs 90"
144 test_file sine16-01 1 16 "-0 -l 8 -m -e -p --lax -fs 90000"
145 test_file sine16-01 1 16 "-0 -l 8 -m -e -p -fs 9"
146 test_file sine16-01 1 16 "-0 -l 8 -m -e -p -fs 90"
147 test_file sine16-01 1 16 "-0 -l 8 -m -e -p -fs 90000"
148
149 echo "Testing option variations..."
150 for f in 00 01 02 03 04 ; do
151         for opt in 0 1 2 4 5 6 8 ; do
152                 for extras in '' '-p' '-e' ; do
153                         test_file sine16-$f 1 16 "-$opt $extras"
154                 done
155         done
156 done
157 for f in 10 11 12 13 14 15 16 17 18 19 ; do
158         for opt in 0 1 2 4 5 6 8 ; do
159                 for extras in '' '-p' '-e' ; do
160                         test_file sine16-$f 2 16 "-$opt $extras"
161                 done
162         done
163 done
164
165 echo "Testing noise..."
166 for opt in 0 1 2 3 4 5 6 7 8 ; do
167         for extras in '' '-p' '-e' ; do
168                 for blocksize in '' '-b 32' '-b 32768' '-b 65535' ; do
169                         for channels in 1 2 4 8 ; do
170                                 for bps in 8 16 24 ; do
171                                         test_file noise $channels $bps "-$opt $extras $blocksize"
172                                 done
173                         done
174                 done
175         done
176 done