2014-11-27 05:03:13 +03:00
#!/bin/sh -e
2002-12-10 09:41:27 +03:00
# FLAC - Free Lossless Audio Codec
2013-05-25 11:11:19 +04:00
# Copyright (C) 2001-2009 Josh Coalson
2016-12-04 22:35:39 +03:00
# Copyright (C) 2011-2016 Xiph.Org Foundation
2002-12-10 09:41:27 +03:00
#
2003-02-07 03:14:32 +03:00
# This file is part the FLAC project. FLAC is comprised of several
2013-05-27 00:53:43 +04:00
# components distributed under different licenses. The codec libraries
2003-02-07 03:14:32 +03:00
# are distributed under Xiph.Org's BSD-like license (see the file
# COPYING.Xiph in this distribution). All other programs, libraries, and
# plugins are distributed under the GPL (see COPYING.GPL). The documentation
# is distributed under the Gnu FDL (see COPYING.FDL). Each file in the
# FLAC distribution contains at the top the terms under which it may be
# distributed.
2002-12-10 09:41:27 +03:00
#
2003-02-07 03:14:32 +03:00
# Since this particular file is relevant to all components of FLAC,
# it may be distributed under the Xiph.Org license, which is the least
# restrictive of those mentioned above. See the file COPYING.Xiph in this
# distribution.
2002-12-10 09:41:27 +03:00
2014-11-27 05:03:13 +03:00
. ./common.sh
2013-09-16 13:55:11 +04:00
2009-01-03 04:50:46 +03:00
# we use '.' as decimal separator in --skip/--until tests
export LANG = C LC_ALL = C
2006-11-08 19:25:55 +03:00
dddie = "die ERROR: creating files with dd"
2022-05-18 22:27:19 +03:00
PATH = " $( pwd ) /../src/flac: $PATH "
PATH = " $( pwd ) /../src/metaflac: $PATH "
PATH = " $( pwd ) /../src/test_streams: $PATH "
PATH = " $( pwd ) /../objs/ $BUILD /bin: $PATH "
2002-12-10 09:41:27 +03:00
2013-09-16 13:55:11 +04:00
flac${ EXE } --help 1>/dev/null 2>/dev/null || die "ERROR can't find flac executable"
2002-12-10 09:41:27 +03:00
run_flac ( )
{
2022-05-18 22:27:19 +03:00
if [ " $FLAC__TEST_WITH_VALGRIND " = yes ] ; then
2013-04-22 01:12:16 +04:00
echo " valgrind --leak-check=yes --show-reachable=yes --num-callers=50 flac $* " >>test_flac.valgrind.log
2015-02-13 11:47:30 +03:00
valgrind --leak-check= yes --show-reachable= yes --num-callers= 50 --log-fd= 4 flac${ EXE } $TOTALLY_SILENT --no-error-on-compression-fail $* 4>>test_flac.valgrind.log
2002-12-10 09:41:27 +03:00
else
2015-02-13 11:47:30 +03:00
flac${ EXE } $TOTALLY_SILENT --no-error-on-compression-fail $*
2002-12-10 09:41:27 +03:00
fi
}
2004-09-14 04:25:43 +04:00
run_metaflac ( )
{
2022-05-18 22:27:19 +03:00
if [ " $FLAC__TEST_WITH_VALGRIND " = yes ] ; then
2013-04-22 01:12:16 +04:00
echo " valgrind --leak-check=yes --show-reachable=yes --num-callers=50 metaflac $* " >>test_flac.valgrind.log
2013-09-16 13:55:11 +04:00
valgrind --leak-check= yes --show-reachable= yes --num-callers= 50 --log-fd= 4 metaflac${ EXE } $* 4>>test_flac.valgrind.log
2004-09-14 04:25:43 +04:00
else
2013-09-16 13:55:11 +04:00
metaflac${ EXE } $*
2004-09-14 04:25:43 +04:00
fi
}
2006-08-28 07:42:10 +04:00
md5cmp ( )
{
2022-05-18 22:27:19 +03:00
n = $( ( [ -f " $1 " ] && [ -f " $2 " ] && metaflac${ EXE } --show-md5sum --no-filename " $1 " " $2 " 2>/dev/null || exit 1 ) | uniq | wc -l)
2006-08-28 07:42:10 +04:00
[ " $n " != "" ] && [ $n = 1 ]
}
2002-12-10 09:41:27 +03:00
echo "Checking for --ogg support in flac..."
2015-02-13 11:47:30 +03:00
if flac${ EXE } --ogg $TOTTALY_SILENT --force-raw-format --endian= little --sign= signed --channels= 1 --bps= 8 --sample-rate= 44100 -c $0 1>/dev/null 2>& 1 ; then
2002-12-10 09:41:27 +03:00
has_ogg = yes;
echo "flac --ogg works"
else
has_ogg = no;
echo "flac --ogg doesn't work"
fi
2002-12-17 11:15:48 +03:00
echo "Generating streams..."
if [ ! -f wacky1.wav ] ; then
test_streams || die "ERROR during test_streams"
fi
2004-07-16 04:50:42 +04:00
############################################################################
# test that flac doesn't automatically overwrite files unless -f is used
############################################################################
echo "Try encoding to a file that exists; should fail"
cp wacky1.wav exist.wav
touch exist.flac
2015-02-13 11:47:30 +03:00
if run_flac -0 exist.wav ; then
2004-07-16 04:50:42 +04:00
die "ERROR: it should have failed but didn't"
else
echo "OK, it failed as it should"
fi
echo "Try encoding with -f to a file that exists; should succeed"
2015-02-13 11:47:30 +03:00
if run_flac -0 --force exist.wav ; then
2004-07-16 04:50:42 +04:00
echo "OK, it succeeded as it should"
else
die "ERROR: it should have succeeded but didn't"
fi
echo "Try decoding to a file that exists; should fail"
2015-02-13 11:47:30 +03:00
if run_flac -d exist.flac ; then
2004-07-16 04:50:42 +04:00
die "ERROR: it should have failed but didn't"
else
echo "OK, it failed as it should"
fi
echo "Try decoding with -f to a file that exists; should succeed"
2015-02-13 11:47:30 +03:00
if run_flac -d -f exist.flac ; then
2004-07-16 04:50:42 +04:00
echo "OK, it succeeded as it should"
else
die "ERROR: it should have succeeded but didn't"
fi
rm -f exist.wav exist.flac
2006-11-08 19:25:55 +03:00
############################################################################
# test fractional block sizes
############################################################################
2006-11-09 19:53:15 +03:00
test_fractional ( )
{
blocksize = $1
samples = $2
2006-11-08 19:25:55 +03:00
dd if = noise.raw ibs = 4 count = $samples of = pbs.raw 2>/dev/null || $dddie
2015-10-04 01:43:33 +03:00
echo $ECHO_N " fractional block size test (blocksize= $blocksize samples= $samples ) encode... " $ECHO_C
2015-02-13 11:47:30 +03:00
run_flac --force --verify --force-raw-format --endian= little --sign= signed --sample-rate= 44100 --bps= 16 --channels= 2 --blocksize= $blocksize --no-padding --lax -o pbs.flac pbs.raw || die "ERROR"
2015-10-04 01:43:33 +03:00
echo $ECHO_N "decode... " $ECHO_C
2015-02-13 11:47:30 +03:00
run_flac --force --decode --force-raw-format --endian= little --sign= signed -o pbs.cmp pbs.flac || die "ERROR"
2015-10-04 01:43:33 +03:00
echo $ECHO_N "compare... " $ECHO_C
2006-11-08 19:25:55 +03:00
cmp pbs.raw pbs.cmp || die "ERROR: file mismatch"
echo "OK"
rm -f pbs.raw pbs.flac pbs.cmp
2006-11-09 19:53:15 +03:00
}
# The special significance of 2048 is it's the # of samples that flac calls
# FLAC__stream_encoder_process() on.
#
# We're trying to make sure the 1-sample overread logic in the stream encoder
# (used for last-block checking) works; these values probe around common
# multiples of the flac sample chunk size (2048) and the blocksize.
for samples in 31 32 33 34 35 2046 2047 2048 2049 2050 ; do
test_fractional 33 $samples
done
for samples in 254 255 256 257 258 510 511 512 513 514 1022 1023 1024 1025 1026 2046 2047 2048 2049 2050 4094 4095 4096 4097 4098 ; do
test_fractional 256 $samples
done
for samples in 1022 1023 1024 1025 1026 2046 2047 2048 2049 2050 4094 4095 4096 4097 4098 ; do
test_fractional 2048 $samples
done
for samples in 1022 1023 1024 1025 1026 2046 2047 2048 2049 2050 4094 4095 4096 4097 4098 4606 4607 4608 4609 4610 8190 8191 8192 8193 8194 16382 16383 16384 16385 16386 ; do
test_fractional 4608 $samples
2006-11-08 19:25:55 +03:00
done
2002-12-17 11:15:48 +03:00
############################################################################
# basic 'round-trip' tests of various kinds of streams
############################################################################
rt_test_raw ( )
{
f = " $1 "
2008-09-09 11:24:23 +04:00
extra = " $2 "
2022-05-18 22:27:19 +03:00
channels = " $( echo $f | awk -F- '{print $2}' ) "
bps = " $( echo $f | awk -F- '{print $3}' ) "
sign = " $( echo $f | awk -F- '{print $4}' ) "
2015-09-07 08:21:47 +03:00
2015-10-04 01:43:33 +03:00
echo $ECHO_N " round-trip test ( $f ) encode... " $ECHO_C
2015-09-07 08:21:47 +03:00
run_flac --force --verify --force-raw-format --endian= little --sign= $sign --sample-rate= 44100 --bps= $bps --channels= $channels --no-padding --lax -o rt.flac $extra $f || die "ERROR"
2015-10-04 01:43:33 +03:00
echo $ECHO_N "decode... " $ECHO_C
2015-09-07 08:21:47 +03:00
run_flac --force --decode --force-raw-format --endian= little --sign= $sign -o rt.raw $extra rt.flac || die "ERROR"
2015-10-04 01:43:33 +03:00
echo $ECHO_N "compare... " $ECHO_C
2002-12-17 11:15:48 +03:00
cmp $f rt.raw || die "ERROR: file mismatch"
echo "OK"
rm -f rt.flac rt.raw
}
rt_test_wav ( )
{
f = " $1 "
2008-09-09 11:24:23 +04:00
extra = " $2 "
2015-10-04 01:43:33 +03:00
echo $ECHO_N " round-trip test ( $f ) encode... " $ECHO_C
2015-02-13 11:47:30 +03:00
run_flac --force --verify --channel-map= none --no-padding --lax -o rt.flac $extra $f || die "ERROR"
2015-10-04 01:43:33 +03:00
echo $ECHO_N "decode... " $ECHO_C
2015-02-13 11:47:30 +03:00
run_flac --force --decode --channel-map= none -o rt.wav $extra rt.flac || die "ERROR"
2015-10-04 01:43:33 +03:00
echo $ECHO_N "compare... " $ECHO_C
2002-12-17 11:15:48 +03:00
cmp $f rt.wav || die "ERROR: file mismatch"
echo "OK"
rm -f rt.flac rt.wav
}
2008-09-09 11:49:19 +04:00
rt_test_w64 ( )
{
f = " $1 "
extra = " $2 "
2015-10-04 01:43:33 +03:00
echo $ECHO_N " round-trip test ( $f ) encode... " $ECHO_C
2015-02-13 11:47:30 +03:00
run_flac --force --verify --channel-map= none --no-padding --lax -o rt.flac $extra $f || die "ERROR"
2015-10-04 01:43:33 +03:00
echo $ECHO_N "decode... " $ECHO_C
2015-02-13 11:47:30 +03:00
run_flac --force --decode --channel-map= none -o rt.w64 $extra rt.flac || die "ERROR"
2015-10-04 01:43:33 +03:00
echo $ECHO_N "compare... " $ECHO_C
2008-09-09 11:49:19 +04:00
cmp $f rt.w64 || die "ERROR: file mismatch"
echo "OK"
rm -f rt.flac rt.w64
}
2008-09-09 11:24:23 +04:00
rt_test_rf64 ( )
{
f = " $1 "
extra = " $2 "
2015-10-04 01:43:33 +03:00
echo $ECHO_N " round-trip test ( $f ) encode... " $ECHO_C
2015-02-13 11:47:30 +03:00
run_flac --force --verify --channel-map= none --no-padding --lax -o rt.flac $extra $f || die "ERROR"
2015-10-04 01:43:33 +03:00
echo $ECHO_N "decode... " $ECHO_C
2015-02-13 11:47:30 +03:00
run_flac --force --decode --channel-map= none -o rt.rf64 $extra rt.flac || die "ERROR"
2015-10-04 01:43:33 +03:00
echo $ECHO_N "compare... " $ECHO_C
2008-09-09 11:24:23 +04:00
cmp $f rt.rf64 || die "ERROR: file mismatch"
echo "OK"
rm -f rt.flac rt.rf64
}
2002-12-17 11:15:48 +03:00
rt_test_aiff ( )
{
f = " $1 "
2008-09-09 11:24:23 +04:00
extra = " $2 "
2015-10-04 01:43:33 +03:00
echo $ECHO_N " round-trip test ( $f ) encode... " $ECHO_C
2015-02-13 11:47:30 +03:00
run_flac --force --verify --channel-map= none --no-padding --lax -o rt.flac $extra $f || die "ERROR"
2015-10-04 01:43:33 +03:00
echo $ECHO_N "decode... " $ECHO_C
2015-02-13 11:47:30 +03:00
run_flac --force --decode --channel-map= none -o rt.aiff $extra rt.flac || die "ERROR"
2015-10-04 01:43:33 +03:00
echo $ECHO_N "compare... " $ECHO_C
2002-12-17 11:15:48 +03:00
cmp $f rt.aiff || die "ERROR: file mismatch"
echo "OK"
rm -f rt.flac rt.aiff
}
2006-08-28 07:42:10 +04:00
# assumes input file is WAVE; does not check the metadata-preserving features of flac-to-flac; that is checked later
rt_test_flac ( )
{
f = " $1 "
2008-09-09 11:24:23 +04:00
extra = " $2 "
2015-10-04 01:43:33 +03:00
echo $ECHO_N " round-trip test ( $f ->flac->flac->wav) encode... " $ECHO_C
2015-02-13 11:47:30 +03:00
run_flac --force --verify --channel-map= none --no-padding --lax -o rt.flac $extra $f || die "ERROR"
2015-10-04 01:43:33 +03:00
echo $ECHO_N "re-encode... " $ECHO_C
2015-02-13 11:47:30 +03:00
run_flac --force --verify --lax -o rt2.flac rt.flac || die "ERROR"
2015-10-04 01:43:33 +03:00
echo $ECHO_N "decode... " $ECHO_C
2015-02-13 11:47:30 +03:00
run_flac --force --decode --channel-map= none -o rt.wav $extra rt2.flac || die "ERROR"
2015-10-04 01:43:33 +03:00
echo $ECHO_N "compare... " $ECHO_C
2006-08-28 07:42:10 +04:00
cmp $f rt.wav || die "ERROR: file mismatch"
echo "OK"
rm -f rt.wav rt.flac rt2.flac
}
2006-11-04 06:04:21 +03:00
# assumes input file is WAVE; does not check the metadata-preserving features of flac-to-flac; that is checked later
rt_test_ogg_flac ( )
{
f = " $1 "
2008-09-09 11:24:23 +04:00
extra = " $2 "
2015-10-04 01:43:33 +03:00
echo $ECHO_N " round-trip test ( $f ->oggflac->oggflac->wav) encode... " $ECHO_C
2015-02-13 11:47:30 +03:00
run_flac --force --verify --channel-map= none --no-padding --lax -o rt.oga --ogg $extra $f || die "ERROR"
2015-10-04 01:43:33 +03:00
echo $ECHO_N "re-encode... " $ECHO_C
2015-02-13 11:47:30 +03:00
run_flac --force --verify --lax -o rt2.oga --ogg rt.oga || die "ERROR"
2015-10-04 01:43:33 +03:00
echo $ECHO_N "decode... " $ECHO_C
2015-02-13 11:47:30 +03:00
run_flac --force --decode --channel-map= none -o rt.wav $extra rt2.oga || die "ERROR"
2015-10-04 01:43:33 +03:00
echo $ECHO_N "compare... " $ECHO_C
2006-11-04 06:04:21 +03:00
cmp $f rt.wav || die "ERROR: file mismatch"
echo "OK"
2007-08-01 07:02:00 +04:00
rm -f rt.wav rt.oga rt2.oga
2006-11-04 06:04:21 +03:00
}
2002-12-17 11:15:48 +03:00
for f in rt-*.raw ; do
rt_test_raw $f
done
for f in rt-*.wav ; do
rt_test_wav $f
done
2008-09-09 11:49:19 +04:00
for f in rt-*.w64 ; do
rt_test_w64 $f
done
2008-09-09 11:24:23 +04:00
for f in rt-*.rf64 ; do
rt_test_rf64 $f
done
2002-12-17 11:15:48 +03:00
for f in rt-*.aiff ; do
rt_test_aiff $f
done
2006-08-28 07:42:10 +04:00
for f in rt-*.wav ; do
rt_test_flac $f
done
2006-11-04 06:04:21 +03:00
if [ $has_ogg = yes ] ; then
for f in rt-*.wav ; do
rt_test_ogg_flac $f
done
fi
2002-12-17 11:15:48 +03:00
2002-12-12 06:57:47 +03:00
############################################################################
# test --skip and --until
############################################################################
2002-12-10 09:41:27 +03:00
#
2002-12-14 09:22:22 +03:00
# first make some chopped-up raw files
2002-12-10 09:41:27 +03:00
#
2002-12-12 06:57:47 +03:00
echo "abcdefghijklmnopqrstuvwxyz1234567890ABCDEFGHIJKLMN" > master.raw
dd if = master.raw ibs = 1 count = 50 of = 50c.raw 2>/dev/null || $dddie
dd if = master.raw ibs = 1 skip = 10 count = 40 of = 50c.skip10.raw 2>/dev/null || $dddie
dd if = master.raw ibs = 1 skip = 11 count = 39 of = 50c.skip11.raw 2>/dev/null || $dddie
2004-07-17 04:23:17 +04:00
dd if = master.raw ibs = 1 skip = 20 count = 30 of = 50c.skip20.raw 2>/dev/null || $dddie
dd if = master.raw ibs = 1 skip = 30 count = 20 of = 50c.skip30.raw 2>/dev/null || $dddie
dd if = master.raw ibs = 1 skip = 40 count = 10 of = 50c.skip40.raw 2>/dev/null || $dddie
dd if = master.raw ibs = 1 count = 10 of = 50c.until10.raw 2>/dev/null || $dddie
dd if = master.raw ibs = 1 count = 20 of = 50c.until20.raw 2>/dev/null || $dddie
dd if = master.raw ibs = 1 count = 30 of = 50c.until30.raw 2>/dev/null || $dddie
2002-12-12 06:57:47 +03:00
dd if = master.raw ibs = 1 count = 39 of = 50c.until39.raw 2>/dev/null || $dddie
2004-07-17 04:23:17 +04:00
dd if = master.raw ibs = 1 count = 40 of = 50c.until40.raw 2>/dev/null || $dddie
dd if = master.raw ibs = 1 skip = 10 count = 20 of = 50c.skip10.until30.raw 2>/dev/null || $dddie
2002-12-12 06:57:47 +03:00
dd if = master.raw ibs = 1 skip = 10 count = 29 of = 50c.skip10.until39.raw 2>/dev/null || $dddie
2004-07-17 04:23:17 +04:00
dd if = master.raw ibs = 1 skip = 10 count = 30 of = 50c.skip10.until40.raw 2>/dev/null || $dddie
dd if = master.raw ibs = 1 skip = 20 count = 10 of = 50c.skip20.until30.raw 2>/dev/null || $dddie
dd if = master.raw ibs = 1 skip = 20 count = 20 of = 50c.skip20.until40.raw 2>/dev/null || $dddie
2002-12-10 09:41:27 +03:00
2015-02-13 11:47:30 +03:00
wav_eopt = "--force --verify --no-padding --lax"
wav_dopt = "--force --decode"
2002-12-12 06:57:47 +03:00
2006-11-17 10:26:39 +03:00
raw_eopt = " $wav_eopt --force-raw-format --endian=big --sign=signed --sample-rate=10 --bps=8 --channels=1 "
2002-12-14 09:22:22 +03:00
raw_dopt = " $wav_dopt --force-raw-format --endian=big --sign=signed "
2002-12-12 06:57:47 +03:00
#
2006-11-04 06:04:21 +03:00
# convert them to WAVE/AIFF/Ogg FLAC files
2002-12-12 06:57:47 +03:00
#
2002-12-14 09:22:22 +03:00
convert_to_wav ( )
{
2005-08-27 05:57:39 +04:00
run_flac " $2 " $1 .raw || die " ERROR converting $1 .raw to WAVE "
run_flac " $3 " $1 .flac || die " ERROR converting $1 .raw to WAVE "
2002-12-14 09:22:22 +03:00
}
2005-08-27 05:57:39 +04:00
convert_to_wav 50c " $raw_eopt " " $wav_dopt "
convert_to_wav 50c.skip10 " $raw_eopt " " $wav_dopt "
convert_to_wav 50c.skip11 " $raw_eopt " " $wav_dopt "
convert_to_wav 50c.skip20 " $raw_eopt " " $wav_dopt "
convert_to_wav 50c.skip30 " $raw_eopt " " $wav_dopt "
convert_to_wav 50c.skip40 " $raw_eopt " " $wav_dopt "
convert_to_wav 50c.until10 " $raw_eopt " " $wav_dopt "
convert_to_wav 50c.until20 " $raw_eopt " " $wav_dopt "
convert_to_wav 50c.until30 " $raw_eopt " " $wav_dopt "
convert_to_wav 50c.until39 " $raw_eopt " " $wav_dopt "
convert_to_wav 50c.until40 " $raw_eopt " " $wav_dopt "
convert_to_wav 50c.skip10.until30 " $raw_eopt " " $wav_dopt "
convert_to_wav 50c.skip10.until39 " $raw_eopt " " $wav_dopt "
convert_to_wav 50c.skip10.until40 " $raw_eopt " " $wav_dopt "
convert_to_wav 50c.skip20.until30 " $raw_eopt " " $wav_dopt "
convert_to_wav 50c.skip20.until40 " $raw_eopt " " $wav_dopt "
2002-12-14 09:22:22 +03:00
2002-12-17 11:15:48 +03:00
convert_to_aiff ( )
{
2005-08-27 05:57:39 +04:00
run_flac " $2 " $1 .raw || die " ERROR converting $1 .raw to AIFF "
run_flac " $3 " $1 .flac -o $1 .aiff || die " ERROR converting $1 .raw to AIFF "
2002-12-17 11:15:48 +03:00
}
2005-08-27 05:57:39 +04:00
convert_to_aiff 50c " $raw_eopt " " $wav_dopt "
convert_to_aiff 50c.skip10 " $raw_eopt " " $wav_dopt "
convert_to_aiff 50c.skip11 " $raw_eopt " " $wav_dopt "
convert_to_aiff 50c.skip20 " $raw_eopt " " $wav_dopt "
convert_to_aiff 50c.skip30 " $raw_eopt " " $wav_dopt "
convert_to_aiff 50c.skip40 " $raw_eopt " " $wav_dopt "
convert_to_aiff 50c.until10 " $raw_eopt " " $wav_dopt "
convert_to_aiff 50c.until20 " $raw_eopt " " $wav_dopt "
convert_to_aiff 50c.until30 " $raw_eopt " " $wav_dopt "
convert_to_aiff 50c.until39 " $raw_eopt " " $wav_dopt "
convert_to_aiff 50c.until40 " $raw_eopt " " $wav_dopt "
convert_to_aiff 50c.skip10.until30 " $raw_eopt " " $wav_dopt "
convert_to_aiff 50c.skip10.until39 " $raw_eopt " " $wav_dopt "
convert_to_aiff 50c.skip10.until40 " $raw_eopt " " $wav_dopt "
convert_to_aiff 50c.skip20.until30 " $raw_eopt " " $wav_dopt "
convert_to_aiff 50c.skip20.until40 " $raw_eopt " " $wav_dopt "
2002-12-17 11:15:48 +03:00
2006-11-04 06:04:21 +03:00
convert_to_ogg ( )
{
run_flac " $wav_eopt " --ogg $1 .wav || die " ERROR converting $1 .raw to Ogg FLAC "
}
if [ $has_ogg = yes ] ; then
convert_to_ogg 50c
convert_to_ogg 50c.skip10
convert_to_ogg 50c.skip11
convert_to_ogg 50c.skip20
convert_to_ogg 50c.skip30
convert_to_ogg 50c.skip40
convert_to_ogg 50c.until10
convert_to_ogg 50c.until20
convert_to_ogg 50c.until30
convert_to_ogg 50c.until39
convert_to_ogg 50c.until40
convert_to_ogg 50c.skip10.until30
convert_to_ogg 50c.skip10.until39
convert_to_ogg 50c.skip10.until40
convert_to_ogg 50c.skip20.until30
convert_to_ogg 50c.skip20.until40
fi
2002-12-14 09:22:22 +03:00
test_skip_until ( )
{
2004-07-07 11:39:59 +04:00
in_fmt = $1
out_fmt = $2
2002-12-12 06:57:47 +03:00
2006-11-04 06:04:21 +03:00
[ " $in_fmt " = wav ] || [ " $in_fmt " = aiff ] || [ " $in_fmt " = raw ] || [ " $in_fmt " = flac ] || [ " $in_fmt " = ogg ] || die " ERROR: internal error, bad 'in' format ' $in_fmt ' "
2002-12-12 06:57:47 +03:00
2004-07-07 11:39:59 +04:00
[ " $out_fmt " = flac ] || [ " $out_fmt " = ogg ] || die " ERROR: internal error, bad 'out' format ' $out_fmt ' "
if [ $in_fmt = raw ] ; then
2002-12-14 09:22:22 +03:00
eopt = " $raw_eopt "
dopt = " $raw_dopt "
else
eopt = " $wav_eopt "
dopt = " $wav_dopt "
fi
2002-12-12 06:57:47 +03:00
2022-05-18 22:27:19 +03:00
if [ $in_fmt = flac -o $in_fmt = ogg ] && [ $out_fmt = flac -o $out_fmt = ogg ] ; then
2006-08-28 07:42:10 +04:00
CMP = md5cmp
else
CMP = cmp
fi
2004-07-07 11:39:59 +04:00
if [ $out_fmt = ogg ] ; then
eopt = " --ogg $eopt "
fi
2002-12-14 09:22:22 +03:00
#
# test --skip when encoding
#
2004-07-07 11:39:59 +04:00
desc = " ( $in_fmt <-> $out_fmt ) "
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --skip=# (encode) $desc ... " $ECHO_C
2004-07-07 11:39:59 +04:00
run_flac $eopt --skip= 10 -o z50c.skip10.$out_fmt 50c.$in_fmt || die " ERROR generating FLAC file $desc "
2006-08-28 07:42:10 +04:00
[ $in_fmt = $out_fmt ] || run_flac $dopt -o z50c.skip10.$in_fmt z50c.skip10.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.skip10.$in_fmt z50c.skip10.$in_fmt || die " ERROR: file mismatch for --skip=10 (encode) $desc "
2004-07-07 11:39:59 +04:00
rm -f z50c.skip10.$out_fmt z50c.skip10.$in_fmt
2002-12-14 09:22:22 +03:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --skip=mm:ss (encode) $desc ... " $ECHO_C
2008-06-03 10:33:44 +04:00
run_flac $eopt --skip= 0:01 -o z50c.skip0_01.$out_fmt 50c.$in_fmt || die " ERROR generating FLAC file $desc "
2015-02-13 11:47:30 +03:00
2008-06-03 10:33:44 +04:00
[ $in_fmt = $out_fmt ] || run_flac $dopt -o z50c.skip0_01.$in_fmt z50c.skip0_01.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.skip10.$in_fmt z50c.skip0_01.$in_fmt || die " ERROR: file mismatch for --skip=0:01 (encode) $desc "
rm -f z50c.skip0_01.$out_fmt z50c.skip0_01.$in_fmt
2002-12-14 09:22:22 +03:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --skip=mm:ss.sss (encode) $desc ... " $ECHO_C
2008-06-03 10:33:44 +04:00
run_flac $eopt --skip= 0:01.1001 -o z50c.skip0_01.1001.$out_fmt 50c.$in_fmt || die " ERROR generating FLAC file $desc "
[ $in_fmt = $out_fmt ] || run_flac $dopt -o z50c.skip0_01.1001.$in_fmt z50c.skip0_01.1001.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.skip11.$in_fmt z50c.skip0_01.1001.$in_fmt || die " ERROR: file mismatch for --skip=0:01.1001 (encode) $desc "
rm -f z50c.skip0_01.1001.$out_fmt z50c.skip0_01.1001.$in_fmt
2002-12-14 09:22:22 +03:00
echo OK
#
# test --skip when decoding
#
2006-08-28 07:42:10 +04:00
if [ $in_fmt != $out_fmt ] ; then run_flac $eopt -o z50c.$out_fmt 50c.$in_fmt ; else cp -f 50c.$in_fmt z50c.$out_fmt ; fi || die " ERROR generating FLAC file $desc "
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --skip=# (decode) $desc ... " $ECHO_C
2004-07-07 11:39:59 +04:00
run_flac $dopt --skip= 10 -o z50c.skip10.$in_fmt z50c.$out_fmt || die " ERROR decoding FLAC file $desc "
2006-08-28 07:42:10 +04:00
$CMP 50c.skip10.$in_fmt z50c.skip10.$in_fmt || die " ERROR: file mismatch for --skip=10 (decode) $desc "
2004-07-07 11:39:59 +04:00
rm -f z50c.skip10.$in_fmt
2002-12-14 09:22:22 +03:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --skip=mm:ss (decode) $desc ... " $ECHO_C
2008-06-03 10:33:44 +04:00
run_flac $dopt --skip= 0:01 -o z50c.skip0_01.$in_fmt z50c.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.skip10.$in_fmt z50c.skip0_01.$in_fmt || die " ERROR: file mismatch for --skip=0:01 (decode) $desc "
rm -f z50c.skip0_01.$in_fmt
2002-12-14 09:22:22 +03:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --skip=mm:ss.sss (decode) $desc ... " $ECHO_C
2008-06-03 10:33:44 +04:00
run_flac $dopt --skip= 0:01.1001 -o z50c.skip0_01.1001.$in_fmt z50c.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.skip11.$in_fmt z50c.skip0_01.1001.$in_fmt || die " ERROR: file mismatch for --skip=0:01.1001 (decode) $desc "
rm -f z50c.skip0_01.1001.$in_fmt
2002-12-14 09:22:22 +03:00
echo OK
2004-07-07 11:39:59 +04:00
rm -f z50c.$out_fmt
2002-12-14 09:22:22 +03:00
#
# test --until when encoding
#
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --until=# (encode) $desc ... " $ECHO_C
2004-07-07 11:39:59 +04:00
run_flac $eopt --until= 40 -o z50c.until40.$out_fmt 50c.$in_fmt || die " ERROR generating FLAC file $desc "
2006-08-28 07:42:10 +04:00
[ $in_fmt = $out_fmt ] || run_flac $dopt -o z50c.until40.$in_fmt z50c.until40.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.until40.$in_fmt z50c.until40.$in_fmt || die " ERROR: file mismatch for --until=40 (encode) $desc "
2004-07-07 11:39:59 +04:00
rm -f z50c.until40.$out_fmt z50c.until40.$in_fmt
2002-12-14 09:22:22 +03:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --until=mm:ss (encode) $desc ... " $ECHO_C
2008-06-03 10:33:44 +04:00
run_flac $eopt --until= 0:04 -o z50c.until0_04.$out_fmt 50c.$in_fmt || die " ERROR generating FLAC file $desc "
[ $in_fmt = $out_fmt ] || run_flac $dopt -o z50c.until0_04.$in_fmt z50c.until0_04.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.until40.$in_fmt z50c.until0_04.$in_fmt || die " ERROR: file mismatch for --until=0:04 (encode) $desc "
rm -f z50c.until0_04.$out_fmt z50c.until0_04.$in_fmt
2002-12-14 09:22:22 +03:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --until=mm:ss.sss (encode) $desc ... " $ECHO_C
2008-06-03 10:33:44 +04:00
run_flac $eopt --until= 0:03.9001 -o z50c.until0_03.9001.$out_fmt 50c.$in_fmt || die " ERROR generating FLAC file $desc "
[ $in_fmt = $out_fmt ] || run_flac $dopt -o z50c.until0_03.9001.$in_fmt z50c.until0_03.9001.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.until39.$in_fmt z50c.until0_03.9001.$in_fmt || die " ERROR: file mismatch for --until=0:03.9001 (encode) $desc "
rm -f z50c.until0_03.9001.$out_fmt z50c.until0_03.9001.$in_fmt
2002-12-14 09:22:22 +03:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --until=-# (encode) $desc ... " $ECHO_C
2004-07-07 11:39:59 +04:00
run_flac $eopt --until= -10 -o z50c.until-10.$out_fmt 50c.$in_fmt || die " ERROR generating FLAC file $desc "
2006-08-28 07:42:10 +04:00
[ $in_fmt = $out_fmt ] || run_flac $dopt -o z50c.until-10.$in_fmt z50c.until-10.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.until40.$in_fmt z50c.until-10.$in_fmt || die " ERROR: file mismatch for --until=-10 (encode) $desc "
2004-07-07 11:39:59 +04:00
rm -f z50c.until-10.$out_fmt z50c.until-10.$in_fmt
2002-12-14 09:22:22 +03:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --until=-mm:ss (encode) $desc ... " $ECHO_C
2008-06-03 10:33:44 +04:00
run_flac $eopt --until= -0:01 -o z50c.until-0_01.$out_fmt 50c.$in_fmt || die " ERROR generating FLAC file $desc "
[ $in_fmt = $out_fmt ] || run_flac $dopt -o z50c.until-0_01.$in_fmt z50c.until-0_01.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.until40.$in_fmt z50c.until-0_01.$in_fmt || die " ERROR: file mismatch for --until=-0:01 (encode) $desc "
rm -f z50c.until-0_01.$out_fmt z50c.until-0_01.$in_fmt
2002-12-14 09:22:22 +03:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --until=-mm:ss.sss (encode) $desc ... " $ECHO_C
2008-06-03 10:33:44 +04:00
run_flac $eopt --until= -0:01.1001 -o z50c.until-0_01.1001.$out_fmt 50c.$in_fmt || die " ERROR generating FLAC file $desc "
[ $in_fmt = $out_fmt ] || run_flac $dopt -o z50c.until-0_01.1001.$in_fmt z50c.until-0_01.1001.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.until39.$in_fmt z50c.until-0_01.1001.$in_fmt || die " ERROR: file mismatch for --until=-0:01.1001 (encode) $desc "
rm -f z50c.until-0_01.1001.$out_fmt z50c.until-0_01.1001.$in_fmt
2002-12-14 09:22:22 +03:00
echo OK
#
# test --until when decoding
#
2006-08-28 07:42:10 +04:00
if [ $in_fmt != $out_fmt ] ; then run_flac $eopt -o z50c.$out_fmt 50c.$in_fmt ; else cp -f 50c.$in_fmt z50c.$out_fmt ; fi || die " ERROR generating FLAC file $desc "
2002-12-14 09:22:22 +03:00
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --until=# (decode) $desc ... " $ECHO_C
2004-07-07 11:39:59 +04:00
run_flac $dopt --until= 40 -o z50c.until40.$in_fmt z50c.$out_fmt || die " ERROR decoding FLAC file $desc "
2006-08-28 07:42:10 +04:00
$CMP 50c.until40.$in_fmt z50c.until40.$in_fmt || die " ERROR: file mismatch for --until=40 (decode) $desc "
2004-07-07 11:39:59 +04:00
rm -f z50c.until40.$in_fmt
2002-12-14 09:22:22 +03:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --until=mm:ss (decode) $desc ... " $ECHO_C
2008-06-03 10:33:44 +04:00
run_flac $dopt --until= 0:04 -o z50c.until0_04.$in_fmt z50c.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.until40.$in_fmt z50c.until0_04.$in_fmt || die " ERROR: file mismatch for --until=0:04 (decode) $desc "
rm -f z50c.until0_04.$in_fmt
2002-12-14 09:22:22 +03:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --until=mm:ss.sss (decode) $desc ... " $ECHO_C
2008-06-03 10:33:44 +04:00
run_flac $dopt --until= 0:03.9001 -o z50c.until0_03.9001.$in_fmt z50c.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.until39.$in_fmt z50c.until0_03.9001.$in_fmt || die " ERROR: file mismatch for --until=0:03.9001 (decode) $desc "
rm -f z50c.until0_03.9001.$in_fmt
2002-12-14 09:22:22 +03:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --until=-# (decode) $desc ... " $ECHO_C
2004-07-07 11:39:59 +04:00
run_flac $dopt --until= -10 -o z50c.until-10.$in_fmt z50c.$out_fmt || die " ERROR decoding FLAC file $desc "
2006-08-28 07:42:10 +04:00
$CMP 50c.until40.$in_fmt z50c.until-10.$in_fmt || die " ERROR: file mismatch for --until=-10 (decode) $desc "
2004-07-07 11:39:59 +04:00
rm -f z50c.until-10.$in_fmt
2002-12-14 09:22:22 +03:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --until=-mm:ss (decode) $desc ... " $ECHO_C
2008-06-03 10:33:44 +04:00
run_flac $dopt --until= -0:01 -o z50c.until-0_01.$in_fmt z50c.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.until40.$in_fmt z50c.until-0_01.$in_fmt || die " ERROR: file mismatch for --until=-0:01 (decode) $desc "
rm -f z50c.until-0_01.$in_fmt
2002-12-14 09:22:22 +03:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --until=-mm:ss.sss (decode) $desc ... " $ECHO_C
2008-06-03 10:33:44 +04:00
run_flac $dopt --until= -0:01.1001 -o z50c.until-0_01.1001.$in_fmt z50c.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.until39.$in_fmt z50c.until-0_01.1001.$in_fmt || die " ERROR: file mismatch for --until=-0:01.1001 (decode) $desc "
rm -f z50c.until-0_01.1001.$in_fmt
2002-12-14 09:22:22 +03:00
echo OK
2004-07-07 11:39:59 +04:00
rm -f z50c.$out_fmt
2002-12-14 09:22:22 +03:00
#
# test --skip and --until when encoding
#
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --skip=10 --until=# (encode) $desc ... " $ECHO_C
2004-07-07 11:39:59 +04:00
run_flac $eopt --skip= 10 --until= 40 -o z50c.skip10.until40.$out_fmt 50c.$in_fmt || die " ERROR generating FLAC file $desc "
2006-08-28 07:42:10 +04:00
[ $in_fmt = $out_fmt ] || run_flac $dopt -o z50c.skip10.until40.$in_fmt z50c.skip10.until40.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.skip10.until40.$in_fmt z50c.skip10.until40.$in_fmt || die " ERROR: file mismatch for --skip=10 --until=40 (encode) $desc "
2004-07-07 11:39:59 +04:00
rm -f z50c.skip10.until40.$out_fmt z50c.skip10.until40.$in_fmt
2002-12-14 09:22:22 +03:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --skip=10 --until=mm:ss (encode) $desc ... " $ECHO_C
2008-06-03 10:33:44 +04:00
run_flac $eopt --skip= 10 --until= 0:04 -o z50c.skip10.until0_04.$out_fmt 50c.$in_fmt || die " ERROR generating FLAC file $desc "
[ $in_fmt = $out_fmt ] || run_flac $dopt -o z50c.skip10.until0_04.$in_fmt z50c.skip10.until0_04.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.skip10.until40.$in_fmt z50c.skip10.until0_04.$in_fmt || die " ERROR: file mismatch for --skip=10 --until=0:04 (encode) $desc "
rm -f z50c.skip10.until0_04.$out_fmt z50c.skip10.until0_04.$in_fmt
2002-12-14 09:22:22 +03:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --skip=10 --until=mm:ss.sss (encode) $desc ... " $ECHO_C
2008-06-03 10:33:44 +04:00
run_flac $eopt --skip= 10 --until= 0:03.9001 -o z50c.skip10.until0_03.9001.$out_fmt 50c.$in_fmt || die " ERROR generating FLAC file $desc "
[ $in_fmt = $out_fmt ] || run_flac $dopt -o z50c.skip10.until0_03.9001.$in_fmt z50c.skip10.until0_03.9001.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.skip10.until39.$in_fmt z50c.skip10.until0_03.9001.$in_fmt || die " ERROR: file mismatch for --skip=10 --until=0:03.9001 (encode) $desc "
rm -f z50c.skip10.until0_03.9001.$out_fmt z50c.skip10.until0_03.9001.$in_fmt
2002-12-14 09:22:22 +03:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --skip=10 --until=+# (encode) $desc ... " $ECHO_C
2004-07-07 11:39:59 +04:00
run_flac $eopt --skip= 10 --until= +30 -o z50c.skip10.until+30.$out_fmt 50c.$in_fmt || die " ERROR generating FLAC file $desc "
2006-08-28 07:42:10 +04:00
[ $in_fmt = $out_fmt ] || run_flac $dopt -o z50c.skip10.until+30.$in_fmt z50c.skip10.until+30.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.skip10.until40.$in_fmt z50c.skip10.until+30.$in_fmt || die " ERROR: file mismatch for --skip=10 --until=+30 (encode) $desc "
2004-07-07 11:39:59 +04:00
rm -f z50c.skip10.until+30.$out_fmt z50c.skip10.until+30.$in_fmt
2002-12-14 09:22:22 +03:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --skip=10 --until=+mm:ss (encode) $desc ... " $ECHO_C
2008-06-03 10:33:44 +04:00
run_flac $eopt --skip= 10 --until= +0:03 -o z50c.skip10.until+0_03.$out_fmt 50c.$in_fmt || die " ERROR generating FLAC file $desc "
[ $in_fmt = $out_fmt ] || run_flac $dopt -o z50c.skip10.until+0_03.$in_fmt z50c.skip10.until+0_03.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.skip10.until40.$in_fmt z50c.skip10.until+0_03.$in_fmt || die " ERROR: file mismatch for --skip=10 --until=+0:03 (encode) $desc "
rm -f z50c.skip10.until+0_03.$out_fmt z50c.skip10.until+0_03.$in_fmt
2002-12-14 09:22:22 +03:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --skip=10 --until=+mm:ss.sss (encode) $desc ... " $ECHO_C
2008-06-03 10:33:44 +04:00
run_flac $eopt --skip= 10 --until= +0:02.9001 -o z50c.skip10.until+0_02.9001.$out_fmt 50c.$in_fmt || die " ERROR generating FLAC file $desc "
[ $in_fmt = $out_fmt ] || run_flac $dopt -o z50c.skip10.until+0_02.9001.$in_fmt z50c.skip10.until+0_02.9001.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.skip10.until39.$in_fmt z50c.skip10.until+0_02.9001.$in_fmt || die " ERROR: file mismatch for --skip=10 --until=+0:02.9001 (encode) $desc "
rm -f z50c.skip10.until+0_02.9001.$out_fmt z50c.skip10.until+0_02.9001.$in_fmt
2002-12-14 09:22:22 +03:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --skip=10 --until=-# (encode) $desc ... " $ECHO_C
2004-07-07 11:39:59 +04:00
run_flac $eopt --skip= 10 --until= -10 -o z50c.skip10.until-10.$out_fmt 50c.$in_fmt || die " ERROR generating FLAC file $desc "
2006-08-28 07:42:10 +04:00
[ $in_fmt = $out_fmt ] || run_flac $dopt -o z50c.skip10.until-10.$in_fmt z50c.skip10.until-10.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.skip10.until40.$in_fmt z50c.skip10.until-10.$in_fmt || die " ERROR: file mismatch for --skip=10 --until=-10 (encode) $desc "
2004-07-07 11:39:59 +04:00
rm -f z50c.skip10.until-10.$out_fmt z50c.skip10.until-10.$in_fmt
2002-12-14 09:22:22 +03:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --skip=10 --until=-mm:ss (encode) $desc ... " $ECHO_C
2008-06-03 10:33:44 +04:00
run_flac $eopt --skip= 10 --until= -0:01 -o z50c.skip10.until-0_01.$out_fmt 50c.$in_fmt || die " ERROR generating FLAC file $desc "
[ $in_fmt = $out_fmt ] || run_flac $dopt -o z50c.skip10.until-0_01.$in_fmt z50c.skip10.until-0_01.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.skip10.until40.$in_fmt z50c.skip10.until-0_01.$in_fmt || die " ERROR: file mismatch for --skip=10 --until=-0:01 (encode) $desc "
rm -f z50c.skip10.until-0_01.$out_fmt z50c.skip10.until-0_01.$in_fmt
2002-12-14 09:22:22 +03:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --skip=10 --until=-mm:ss.sss (encode) $desc ... " $ECHO_C
2008-06-03 10:33:44 +04:00
run_flac $eopt --skip= 10 --until= -0:01.1001 -o z50c.skip10.until-0_01.1001.$out_fmt 50c.$in_fmt || die " ERROR generating FLAC file $desc "
[ $in_fmt = $out_fmt ] || run_flac $dopt -o z50c.skip10.until-0_01.1001.$in_fmt z50c.skip10.until-0_01.1001.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.skip10.until39.$in_fmt z50c.skip10.until-0_01.1001.$in_fmt || die " ERROR: file mismatch for --skip=10 --until=-0:01.1001 (encode) $desc "
rm -f z50c.skip10.until-0_01.1001.$out_fmt z50c.skip10.until-0_01.1001.$in_fmt
2002-12-14 09:22:22 +03:00
echo OK
#
# test --skip and --until when decoding
#
2006-08-28 07:42:10 +04:00
if [ $in_fmt != $out_fmt ] ; then run_flac $eopt -o z50c.$out_fmt 50c.$in_fmt ; else cp -f 50c.$in_fmt z50c.$out_fmt ; fi || die " ERROR generating FLAC file $desc "
2002-12-14 09:22:22 +03:00
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --skip=10 --until=# (decode) $desc ... " $ECHO_C
2004-07-07 11:39:59 +04:00
run_flac $dopt --skip= 10 --until= 40 -o z50c.skip10.until40.$in_fmt z50c.$out_fmt || die " ERROR decoding FLAC file $desc "
2006-08-28 07:42:10 +04:00
$CMP 50c.skip10.until40.$in_fmt z50c.skip10.until40.$in_fmt || die " ERROR: file mismatch for --skip=10 --until=40 (decode) $desc "
2004-07-07 11:39:59 +04:00
rm -f z50c.skip10.until40.$in_fmt
2002-12-14 09:22:22 +03:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --skip=10 --until=mm:ss (decode) $desc ... " $ECHO_C
2008-06-03 10:33:44 +04:00
run_flac $dopt --skip= 10 --until= 0:04 -o z50c.skip10.until0_04.$in_fmt z50c.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.skip10.until40.$in_fmt z50c.skip10.until0_04.$in_fmt || die " ERROR: file mismatch for --skip=10 --until=0:04 (decode) $desc "
rm -f z50c.skip10.until0_04.$in_fmt
2002-12-14 09:22:22 +03:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --skip=10 --until=mm:ss.sss (decode) $desc ... " $ECHO_C
2008-06-03 10:33:44 +04:00
run_flac $dopt --skip= 10 --until= 0:03.9001 -o z50c.skip10.until0_03.9001.$in_fmt z50c.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.skip10.until39.$in_fmt z50c.skip10.until0_03.9001.$in_fmt || die " ERROR: file mismatch for --skip=10 --until=0:03.9001 (decode) $desc "
rm -f z50c.skip10.until0_03.9001.$in_fmt
2002-12-14 09:22:22 +03:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --skip=10 --until=-# (decode) $desc ... " $ECHO_C
2004-07-07 11:39:59 +04:00
run_flac $dopt --skip= 10 --until= -10 -o z50c.skip10.until-10.$in_fmt z50c.$out_fmt || die " ERROR decoding FLAC file $desc "
2006-08-28 07:42:10 +04:00
$CMP 50c.skip10.until40.$in_fmt z50c.skip10.until-10.$in_fmt || die " ERROR: file mismatch for --skip=10 --until=-10 (decode) $desc "
2004-07-07 11:39:59 +04:00
rm -f z50c.skip10.until-10.$in_fmt
2002-12-14 09:22:22 +03:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --skip=10 --until=-mm:ss (decode) $desc ... " $ECHO_C
2008-06-03 10:33:44 +04:00
run_flac $dopt --skip= 10 --until= -0:01 -o z50c.skip10.until-0_01.$in_fmt z50c.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.skip10.until40.$in_fmt z50c.skip10.until-0_01.$in_fmt || die " ERROR: file mismatch for --skip=10 --until=-0:01 (decode) $desc "
rm -f z50c.skip10.until-0_01.$in_fmt
2002-12-14 09:22:22 +03:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --skip=10 --until=-mm:ss.sss (decode) $desc ... " $ECHO_C
2008-06-03 10:33:44 +04:00
run_flac $dopt --skip= 10 --until= -0:01.1001 -o z50c.skip10.until-0_01.1001.$in_fmt z50c.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.skip10.until39.$in_fmt z50c.skip10.until-0_01.1001.$in_fmt || die " ERROR: file mismatch for --skip=10 --until=-0:01.1001 (decode) $desc "
rm -f z50c.skip10.until-0_01.1001.$in_fmt
2002-12-14 09:22:22 +03:00
echo OK
2004-07-07 11:39:59 +04:00
rm -f z50c.$out_fmt
2002-12-14 09:22:22 +03:00
}
2002-12-12 06:57:47 +03:00
2004-07-07 11:39:59 +04:00
test_skip_until raw flac
test_skip_until wav flac
test_skip_until aiff flac
2006-08-28 07:42:10 +04:00
test_skip_until flac flac
2006-11-04 06:04:21 +03:00
#@@@if [ $has_ogg = yes ] ; then
#@@@ #@@@ doesn't work yet because md5cmp doesn't work because metaflac doesn't work on ogg flac yet
#@@@ test_skip_until ogg flac
#@@@fi
2002-12-10 09:41:27 +03:00
2006-11-04 06:04:21 +03:00
if [ $has_ogg = yes ] ; then
2004-07-07 11:39:59 +04:00
test_skip_until raw ogg
test_skip_until wav ogg
test_skip_until aiff ogg
2006-11-04 06:04:21 +03:00
#@@@ doesn't work yet because md5cmp doesn't work because metaflac doesn't work on ogg flac yet
2006-08-28 07:42:10 +04:00
#@@@test_skip_until flac ogg
2006-11-04 06:04:21 +03:00
#@@@test_skip_until ogg ogg
2004-07-07 11:39:59 +04:00
fi
2002-12-21 06:29:26 +03:00
2004-09-21 09:29:01 +04:00
echo "testing seek extremes:"
2004-07-30 04:22:46 +04:00
2015-02-13 11:47:30 +03:00
run_flac --verify --force --no-padding --force-raw-format --endian= big --sign= signed --sample-rate= 44100 --bps= 16 --channels= 2 --blocksize= 576 noise.raw || die "ERROR generating FLAC file"
2004-07-30 04:22:46 +04:00
2004-09-13 02:58:13 +04:00
if [ $is_win = no ] ; then
2022-05-18 22:27:19 +03:00
total_noise_cdda_samples = " $( run_metaflac --show-total-samples noise.flac) "
2004-09-13 02:58:13 +04:00
[ $? = 0 ] || die "ERROR getting total sample count from noise.flac"
else
# some flavors of cygwin don't seem to treat the \x0d as a word
# separator, so we hard code it. we'll just have to fix it later
# if we change the way noise.flac is made.
2005-08-27 05:57:39 +04:00
total_noise_cdda_samples = 393216
2004-09-13 02:58:13 +04:00
fi
2004-07-30 04:22:46 +04:00
2015-10-04 01:43:33 +03:00
echo $ECHO_N "testing --skip=0... " $ECHO_C
2004-07-30 04:35:51 +04:00
run_flac $wav_dopt --skip= 0 -o z.wav noise.flac || die "ERROR decoding FLAC file noise.flac"
2004-07-30 04:22:46 +04:00
echo OK
for delta in 2 1 ; do
2022-05-18 22:27:19 +03:00
n = $(( total_noise_cdda_samples - delta))
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --skip= $n ... " $ECHO_C
2004-07-30 04:35:51 +04:00
run_flac $wav_dopt --skip= $n -o z.wav noise.flac || die "ERROR decoding FLAC file noise.flac"
2004-07-30 04:22:46 +04:00
echo OK
done
rm noise.flac z.wav
2004-12-30 06:49:46 +03:00
############################################################################
# test --input-size
############################################################################
2006-09-16 04:07:20 +04:00
#@@@ cat will not work on old cygwin, need to fix
2005-02-02 04:50:47 +03:00
if [ $is_win = no ] ; then
2015-10-04 01:43:33 +03:00
echo $ECHO_N "testing --input-size=50 --skip=10... " $ECHO_C
2022-05-18 22:27:19 +03:00
run_flac $raw_eopt --input-size= 50 --skip= 10 -o z50c.skip10.flac - < 50c.raw || die "ERROR generating FLAC file"
2005-02-02 04:50:47 +03:00
run_flac $raw_dopt -o z50c.skip10.raw z50c.skip10.flac || die "ERROR decoding FLAC file"
cmp 50c.skip10.raw z50c.skip10.raw || die "ERROR: file mismatch for --input-size=50 --skip=10"
rm -f z50c.skip10.raw z50c.skip10.flac
echo OK
fi
2004-12-30 06:49:46 +03:00
2018-06-05 07:00:06 +03:00
############################################################################
# test --output-prefix
############################################################################
in_dir = ./tmp_in
out_dir = ./tmp_out
mkdir $in_dir $out_dir || die "ERROR failed to create temp directories"
cp 50c.raw 50c.flac $in_dir
#
# test --output-prefix when encoding
#
echo $ECHO_N " testing --output-prefix= $out_dir / (encode)... " $ECHO_C
run_flac $raw_eopt --output-prefix= $out_dir / $in_dir /50c.raw || die " ERROR generating FLAC file in $out_dir (encode) "
[ -f $out_dir /50c.flac ] || die " ERROR FLAC file not in $out_dir (encode) "
run_flac $raw_dopt $out_dir /50c.flac || die "ERROR decoding FLAC file (encode)"
[ -f $out_dir /50c.raw ] || die " ERROR RAW file not in $out_dir (encode) "
cmp 50c.raw $out_dir /50c.raw || die " ERROR: file mismatch for --output-prefix= $out_dir (encode) "
rm -f $out_dir /50c.flac $out_dir /50c.raw
echo OK
#
# test --ouput-prefix when decoding
#
echo $ECHO_N " testing --output-prefix= $out_dir / (decode)... " $ECHO_C
run_flac $raw_dopt --output-prefix= $out_dir / $in_dir /50c.flac || die " ERROR deocding FLAC file in $out_dir (decode) "
[ -f $out_dir /50c.raw ] || die " ERROR RAW file not in $out_dir (decode) "
run_flac $raw_eopt $out_dir /50c.raw || die "ERROR generating FLAC file (decode)"
[ -f $out_dir /50c.flac ] || die " ERROR FLAC file not in $out_dir (decode) "
cmp 50c.flac $out_dir /50c.flac || die " ERROR: file mismatch for --output-prefix= $out_dir (decode) "
rm -f $out_dir /50c.flac $out_dir /50c.raw
echo OK
rm -rf $in_dir $out_dir
2004-12-30 06:49:46 +03:00
2004-07-17 04:23:17 +04:00
############################################################################
# test --cue
############################################################################
#
# create the cue sheet
#
cuesheet = cuetest.cue
cat > $cuesheet << EOF
CATALOG 1234567890123
FILE "blah" WAVE
TRACK 01 AUDIO
INDEX 01 0
INDEX 02 10
INDEX 03 20
TRACK 02 AUDIO
INDEX 01 30
TRACK 04 AUDIO
INDEX 01 40
EOF
test_cue ( )
{
in_fmt = $1
out_fmt = $2
2006-11-04 06:04:21 +03:00
[ " $in_fmt " = wav ] || [ " $in_fmt " = aiff ] || [ " $in_fmt " = raw ] || [ " $in_fmt " = flac ] || [ " $in_fmt " = ogg ] || die " ERROR: internal error, bad 'in' format ' $in_fmt ' "
2004-07-17 04:23:17 +04:00
[ " $out_fmt " = flac ] || [ " $out_fmt " = ogg ] || die " ERROR: internal error, bad 'out' format ' $out_fmt ' "
if [ $in_fmt = raw ] ; then
eopt = " $raw_eopt "
dopt = " $raw_dopt "
else
eopt = " $wav_eopt "
dopt = " $wav_dopt "
fi
2022-05-18 22:27:19 +03:00
if [ $in_fmt = flac -o $in_fmt = ogg ] && [ $out_fmt = flac -o $out_fmt = ogg ] ; then
2006-08-28 07:42:10 +04:00
CMP = md5cmp
else
CMP = cmp
fi
2004-07-17 04:23:17 +04:00
if [ $out_fmt = ogg ] ; then
eopt = " --ogg $eopt "
fi
desc = " ( $in_fmt <-> $out_fmt ) "
#
# for this we need just need just one FLAC file; --cue only works while decoding
#
run_flac $eopt --cuesheet= $cuesheet -o z50c.cue.$out_fmt 50c.$in_fmt || die " ERROR generating FLAC file $desc "
# To make it easy to translate from cue point to sample numbers, the
# file has a sample rate of 10 Hz and a cuesheet like so:
#
# TRACK 01, INDEX 01 : 0:00.00 -> sample 0
# TRACK 01, INDEX 02 : 0:01.00 -> sample 10
# TRACK 01, INDEX 03 : 0:02.00 -> sample 20
# TRACK 02, INDEX 01 : 0:03.00 -> sample 30
# TRACK 04, INDEX 01 : 0:04.00 -> sample 40
#
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --cue=- $desc ... " $ECHO_C
2006-08-28 07:42:10 +04:00
run_flac $dopt -o z50c.cued.$in_fmt --cue= - z50c.cue.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.$in_fmt z50c.cued.$in_fmt || die " ERROR: file mismatch for --cue=- $desc "
rm -f z50c.cued.$in_fmt
2004-07-17 04:23:17 +04:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --cue=1.0 $desc ... " $ECHO_C
2006-08-28 07:42:10 +04:00
run_flac $dopt -o z50c.cued.$in_fmt --cue= 1.0 z50c.cue.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.$in_fmt z50c.cued.$in_fmt || die " ERROR: file mismatch for --cue=1.0 $desc "
rm -f z50c.cued.$in_fmt
2004-07-17 04:23:17 +04:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --cue=1.0- $desc ... " $ECHO_C
2006-08-28 07:42:10 +04:00
run_flac $dopt -o z50c.cued.$in_fmt --cue= 1.0- z50c.cue.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.$in_fmt z50c.cued.$in_fmt || die " ERROR: file mismatch for --cue=1.0- $desc "
rm -f z50c.cued.$in_fmt
2004-07-17 04:23:17 +04:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --cue=1.1 $desc ... " $ECHO_C
2006-08-28 07:42:10 +04:00
run_flac $dopt -o z50c.cued.$in_fmt --cue= 1.1 z50c.cue.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.$in_fmt z50c.cued.$in_fmt || die " ERROR: file mismatch for --cue=1.1 $desc "
rm -f z50c.cued.$in_fmt
2004-07-17 04:23:17 +04:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --cue=1.1- $desc ... " $ECHO_C
2006-08-28 07:42:10 +04:00
run_flac $dopt -o z50c.cued.$in_fmt --cue= 1.1- z50c.cue.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.$in_fmt z50c.cued.$in_fmt || die " ERROR: file mismatch for --cue=1.1- $desc "
rm -f z50c.cued.$in_fmt
2004-07-17 04:23:17 +04:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --cue=1.2 $desc ... " $ECHO_C
2006-08-28 07:42:10 +04:00
run_flac $dopt -o z50c.cued.$in_fmt --cue= 1.2 z50c.cue.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.skip10.$in_fmt z50c.cued.$in_fmt || die " ERROR: file mismatch for --cue=1.2 $desc "
rm -f z50c.cued.$in_fmt
2004-07-17 04:23:17 +04:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --cue=1.2- $desc ... " $ECHO_C
2006-08-28 07:42:10 +04:00
run_flac $dopt -o z50c.cued.$in_fmt --cue= 1.2- z50c.cue.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.skip10.$in_fmt z50c.cued.$in_fmt || die " ERROR: file mismatch for --cue=1.2- $desc "
rm -f z50c.cued.$in_fmt
2004-07-17 04:23:17 +04:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --cue=1.4 $desc ... " $ECHO_C
2006-08-28 07:42:10 +04:00
run_flac $dopt -o z50c.cued.$in_fmt --cue= 1.4 z50c.cue.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.skip20.$in_fmt z50c.cued.$in_fmt || die " ERROR: file mismatch for --cue=1.4 $desc "
rm -f z50c.cued.$in_fmt
2004-07-17 04:23:17 +04:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --cue=1.4- $desc ... " $ECHO_C
2006-08-28 07:42:10 +04:00
run_flac $dopt -o z50c.cued.$in_fmt --cue= 1.4- z50c.cue.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.skip20.$in_fmt z50c.cued.$in_fmt || die " ERROR: file mismatch for --cue=1.4- $desc "
rm -f z50c.cued.$in_fmt
2004-07-17 04:23:17 +04:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --cue=-5.0 $desc ... " $ECHO_C
2006-08-28 07:42:10 +04:00
run_flac $dopt -o z50c.cued.$in_fmt --cue= -5.0 z50c.cue.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.$in_fmt z50c.cued.$in_fmt || die " ERROR: file mismatch for --cue=-5.0 $desc "
rm -f z50c.cued.$in_fmt
2004-07-17 04:23:17 +04:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --cue=-4.1 $desc ... " $ECHO_C
2006-08-28 07:42:10 +04:00
run_flac $dopt -o z50c.cued.$in_fmt --cue= -4.1 z50c.cue.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.until40.$in_fmt z50c.cued.$in_fmt || die " ERROR: file mismatch for --cue=-4.1 $desc "
rm -f z50c.cued.$in_fmt
2004-07-17 04:23:17 +04:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --cue=-3.1 $desc ... " $ECHO_C
2006-08-28 07:42:10 +04:00
run_flac $dopt -o z50c.cued.$in_fmt --cue= -3.1 z50c.cue.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.until40.$in_fmt z50c.cued.$in_fmt || die " ERROR: file mismatch for --cue=-3.1 $desc "
rm -f z50c.cued.$in_fmt
2004-07-17 04:23:17 +04:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --cue=-1.4 $desc ... " $ECHO_C
2006-08-28 07:42:10 +04:00
run_flac $dopt -o z50c.cued.$in_fmt --cue= -1.4 z50c.cue.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.until30.$in_fmt z50c.cued.$in_fmt || die " ERROR: file mismatch for --cue=-1.4 $desc "
rm -f z50c.cued.$in_fmt
2004-07-17 04:23:17 +04:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --cue=1.0-5.0 $desc ... " $ECHO_C
2006-08-28 07:42:10 +04:00
run_flac $dopt -o z50c.cued.$in_fmt --cue= 1.0-5.0 z50c.cue.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.$in_fmt z50c.cued.$in_fmt || die " ERROR: file mismatch for --cue=1.0-5.0 $desc "
rm -f z50c.cued.$in_fmt
2004-07-17 04:23:17 +04:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --cue=1.1-5.0 $desc ... " $ECHO_C
2006-08-28 07:42:10 +04:00
run_flac $dopt -o z50c.cued.$in_fmt --cue= 1.1-5.0 z50c.cue.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.$in_fmt z50c.cued.$in_fmt || die " ERROR: file mismatch for --cue=1.1-5.0 $desc "
rm -f z50c.cued.$in_fmt
2004-07-17 04:23:17 +04:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --cue=1.2-4.1 $desc ... " $ECHO_C
2006-08-28 07:42:10 +04:00
run_flac $dopt -o z50c.cued.$in_fmt --cue= 1.2-4.1 z50c.cue.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.skip10.until40.$in_fmt z50c.cued.$in_fmt || die " ERROR: file mismatch for --cue=1.2-4.1 $desc "
rm -f z50c.cued.$in_fmt
2004-07-17 04:23:17 +04:00
echo OK
2015-10-04 01:43:33 +03:00
echo $ECHO_N " testing --cue=1.4-2.0 $desc ... " $ECHO_C
2006-08-28 07:42:10 +04:00
run_flac $dopt -o z50c.cued.$in_fmt --cue= 1.4-2.0 z50c.cue.$out_fmt || die " ERROR decoding FLAC file $desc "
$CMP 50c.skip20.until30.$in_fmt z50c.cued.$in_fmt || die " ERROR: file mismatch for --cue=1.4-2.0 $desc "
rm -f z50c.cued.$in_fmt
2004-07-17 04:23:17 +04:00
echo OK
rm -f z50c.cue.$out_fmt
}
test_cue raw flac
test_cue wav flac
test_cue aiff flac
2006-08-28 07:42:10 +04:00
test_cue flac flac
2006-11-04 06:04:21 +03:00
#@@@if [ $has_ogg = yes ] ; then
#@@@ #@@@ doesn't work yet because md5cmp doesn't work because metaflac doesn't work on ogg flac yet
#@@@ test_cue ogg flac
#@@@fi
2004-07-17 04:23:17 +04:00
2006-11-04 06:04:21 +03:00
if [ $has_ogg = yes ] ; then
2004-07-17 04:23:17 +04:00
test_cue raw ogg
test_cue wav ogg
test_cue aiff ogg
2006-11-04 06:04:21 +03:00
#@@@ doesn't work yet because md5cmp doesn't work because metaflac doesn't work on ogg flac yet
2006-08-28 07:42:10 +04:00
#@@@test_cue flac ogg
2006-11-04 06:04:21 +03:00
#@@@test_cue ogg ogg
2004-07-17 04:23:17 +04:00
fi
2002-12-21 06:29:26 +03:00
############################################################################
# test 'fixup' code that happens when a FLAC file with total_samples == 0
# in the STREAMINFO block is converted to WAVE or AIFF, requiring the
# decoder go back and fix up the chunk headers
############################################################################
2015-10-04 01:43:33 +03:00
echo $ECHO_N "WAVE fixup test... " $ECHO_C
2004-09-13 02:58:13 +04:00
2015-10-04 01:43:33 +03:00
echo $ECHO_N "prepare... " $ECHO_C
2005-08-27 05:57:39 +04:00
convert_to_wav noise " $raw_eopt " " $wav_dopt " || die "ERROR creating reference WAVE"
2004-09-13 02:58:13 +04:00
2015-10-04 01:43:33 +03:00
echo $ECHO_N "encode... " $ECHO_C
2004-09-13 02:58:13 +04:00
# the pipe from 'cat' to 'flac' does not work on cygwin because of the EOF/
# binary-mode stdin problem, so we use an undocumented option to metaflac to
# set the total sample count to 0
if [ $is_win = yes ] ; then
run_flac $raw_eopt noise.raw -o fixup.flac || die "ERROR generating FLAC file"
2004-09-14 04:25:43 +04:00
run_metaflac --set-total-samples= 0 fixup.flac 2> /dev/null
2004-09-13 02:58:13 +04:00
else
2022-05-18 22:27:19 +03:00
run_flac $raw_eopt - -c < noise.raw > fixup.flac || die "ERROR generating FLAC file"
2004-09-13 02:58:13 +04:00
fi
2015-10-04 01:43:33 +03:00
echo $ECHO_N "decode... " $ECHO_C
2002-12-21 06:29:26 +03:00
run_flac $wav_dopt fixup.flac -o fixup.wav || die "ERROR decoding FLAC file"
2004-09-13 02:58:13 +04:00
2015-10-04 01:43:33 +03:00
echo $ECHO_N "compare... " $ECHO_C
2002-12-21 06:29:26 +03:00
cmp noise.wav fixup.wav || die "ERROR: file mismatch"
2004-09-13 02:58:13 +04:00
2002-12-21 06:29:26 +03:00
echo OK
rm -f noise.wav fixup.wav fixup.flac
2015-10-04 01:43:33 +03:00
echo $ECHO_N "AIFF fixup test... " $ECHO_C
2004-09-13 02:58:13 +04:00
2015-10-04 01:43:33 +03:00
echo $ECHO_N "prepare... " $ECHO_C
2005-08-27 05:57:39 +04:00
convert_to_aiff noise " $raw_eopt " " $wav_dopt " || die "ERROR creating reference AIFF"
2004-09-13 02:58:13 +04:00
2015-10-04 01:43:33 +03:00
echo $ECHO_N "encode... " $ECHO_C
2004-09-13 02:58:13 +04:00
# the pipe from 'cat' to 'flac' does not work on cygwin because of the EOF/
# binary-mode stdin problem, so we use an undocumented option to metaflac to
# set the total sample count to 0
if [ $is_win = yes ] ; then
run_flac $raw_eopt noise.raw -o fixup.flac || die "ERROR generating FLAC file"
2004-09-14 04:25:43 +04:00
run_metaflac --set-total-samples= 0 fixup.flac 2> /dev/null
2004-09-13 02:58:13 +04:00
else
2022-05-18 22:27:19 +03:00
run_flac $raw_eopt - -c < noise.raw > fixup.flac || die "ERROR generating FLAC file"
2004-09-13 02:58:13 +04:00
fi
2015-10-04 01:43:33 +03:00
echo $ECHO_N "decode... " $ECHO_C
2002-12-21 06:29:26 +03:00
run_flac $wav_dopt fixup.flac -o fixup.aiff || die "ERROR decoding FLAC file"
2004-09-13 02:58:13 +04:00
2015-10-04 01:43:33 +03:00
echo $ECHO_N "compare... " $ECHO_C
2002-12-21 06:29:26 +03:00
cmp noise.aiff fixup.aiff || die "ERROR: file mismatch"
2004-09-13 02:58:13 +04:00
2002-12-21 06:29:26 +03:00
echo OK
rm -f noise.aiff fixup.aiff fixup.flac
############################################################################
2002-12-10 09:41:27 +03:00
# multi-file tests
2002-12-21 06:29:26 +03:00
############################################################################
2002-12-10 09:41:27 +03:00
echo "Generating multiple input files from noise..."
2005-08-27 05:57:39 +04:00
multifile_format_decode = "--endian=big --sign=signed"
2006-11-17 09:03:18 +03:00
multifile_format_encode = " $multifile_format_decode --sample-rate=44100 --bps=16 --channels=2 --no-padding "
2022-05-18 22:27:19 +03:00
short_noise_cdda_samples = $(( total_noise_cdda_samples / 8 ))
2015-02-13 11:47:30 +03:00
run_flac --verify --force --force-raw-format $multifile_format_encode --until= $short_noise_cdda_samples -o shortnoise.flac noise.raw || die "ERROR generating FLAC file"
run_flac --decode --force shortnoise.flac -o shortnoise.raw --force-raw-format $multifile_format_decode || die "ERROR generating RAW file"
run_flac --decode --force shortnoise.flac || die "ERROR generating WAVE file"
run_flac --decode --force shortnoise.flac -o shortnoise.aiff || die "ERROR generating AIFF file"
2006-08-28 07:42:10 +04:00
cp shortnoise.flac file0.flac
cp shortnoise.flac file1.flac
cp shortnoise.flac file2.flac
rm -f shortnoise.flac
cp shortnoise.wav file0.wav
cp shortnoise.wav file1.wav
cp shortnoise.wav file2.wav
rm -f shortnoise.wav
cp shortnoise.aiff file0.aiff
cp shortnoise.aiff file1.aiff
cp shortnoise.aiff file2.aiff
rm -f shortnoise.aiff
cp shortnoise.raw file0.raw
cp shortnoise.raw file1.raw
cp shortnoise.raw file2.raw
rm -f shortnoise.raw
2005-08-27 05:57:39 +04:00
# create authoritative sector-aligned files for comparison
2022-05-18 22:27:19 +03:00
file0_samples = $(( ( short_noise_cdda_samples / 588 ) * 588 ))
file0_remainder = $(( short_noise_cdda_samples - file0_samples))
file1_samples = $(( ( ( file0_remainder + short_noise_cdda_samples ) / 588 ) * 588 ))
file1_remainder = $(( file0_remainder + short_noise_cdda_samples - file1_samples))
file1_samples = $(( file1_samples - file0_remainder))
file2_samples = $(( ( ( file1_remainder + short_noise_cdda_samples ) / 588 ) * 588 ))
file2_remainder = $(( file1_remainder + short_noise_cdda_samples - file2_samples))
file2_samples = $(( file2_samples - file1_remainder))
2005-08-27 05:57:39 +04:00
if [ $file2_remainder != '0' ] ; then
2022-05-18 22:27:19 +03:00
file2_samples = $(( file2_samples + file2_remainder))
file2_remainder = $(( 588 - file2_remainder))
2005-08-27 05:57:39 +04:00
fi
dd if = file0.raw ibs = 4 count = $file0_samples of = file0s.raw 2>/dev/null || $dddie
dd if = file0.raw ibs = 4 count = $file0_remainder of = file1s.raw skip = $file0_samples 2>/dev/null || $dddie
dd if = file1.raw ibs = 4 count = $file1_samples of = z.raw 2>/dev/null || $dddie
cat z.raw >> file1s.raw || die "ERROR: cat-ing sector-aligned files"
dd if = file1.raw ibs = 4 count = $file1_remainder of = file2s.raw skip = $file1_samples 2>/dev/null || $dddie
dd if = file2.raw ibs = 4 count = $file2_samples of = z.raw 2>/dev/null || $dddie
cat z.raw >> file2s.raw || die "ERROR: cat-ing sector-aligned files"
dd if = /dev/zero ibs = 4 count = $file2_remainder of = z.raw 2>/dev/null || $dddie
cat z.raw >> file2s.raw || die "ERROR: cat-ing sector-aligned files"
rm -f z.raw
2014-07-13 14:38:57 +04:00
convert_to_wav file0s " $multifile_format_encode --force --force-raw-format " " $SILENT --force --decode " || die "ERROR creating authoritative sector-aligned WAVE"
convert_to_wav file1s " $multifile_format_encode --force --force-raw-format " " $SILENT --force --decode " || die "ERROR creating authoritative sector-aligned WAVE"
convert_to_wav file2s " $multifile_format_encode --force --force-raw-format " " $SILENT --force --decode " || die "ERROR creating authoritative sector-aligned WAVE"
2005-08-27 05:57:39 +04:00
2014-07-13 14:38:57 +04:00
convert_to_aiff file0s " $multifile_format_encode --force --force-raw-format " " $SILENT --force --decode " || die "ERROR creating authoritative sector-aligned AIFF"
convert_to_aiff file1s " $multifile_format_encode --force --force-raw-format " " $SILENT --force --decode " || die "ERROR creating authoritative sector-aligned AIFF"
convert_to_aiff file2s " $multifile_format_encode --force --force-raw-format " " $SILENT --force --decode " || die "ERROR creating authoritative sector-aligned AIFF"
2002-12-10 09:41:27 +03:00
test_multifile ( )
{
2005-08-27 05:57:39 +04:00
input_type = $1
streamtype = $2
sector_align = $3
encode_options = " $4 "
extra_encode_options = ""
extra_decode_options = ""
if [ $input_type = "raw" ] ; then
extra_encode_options = " --force-raw-format $multifile_format_encode "
extra_decode_options = " --force-raw-format $multifile_format_decode "
else
if [ $input_type = "aiff" ] ; then
extra_decode_options = "--force-aiff-format"
fi
fi
2002-12-10 09:41:27 +03:00
if [ $streamtype = ogg ] ; then
2007-08-01 07:02:00 +04:00
suffix = oga
2002-12-10 09:41:27 +03:00
encode_options = " $encode_options --ogg "
else
suffix = flac
fi
if [ $sector_align = sector_align ] ; then
encode_options = " $encode_options --sector-align "
fi
2006-11-04 06:04:21 +03:00
if [ $input_type = flac ] || [ $input_type = ogg ] ; then
2006-08-28 07:42:10 +04:00
CMP = md5cmp
else
CMP = cmp
fi
2002-12-10 09:41:27 +03:00
for n in 0 1 2 ; do
2006-08-28 07:42:10 +04:00
cp file$n .$input_type file${ n } x.$input_type
2002-12-10 09:41:27 +03:00
done
2006-08-28 07:42:10 +04:00
run_flac --force $encode_options $extra_encode_options file0x.$input_type file1x.$input_type file2x.$input_type || die "ERROR"
2005-08-27 05:57:39 +04:00
run_flac --force --decode $extra_decode_options file0x.$suffix file1x.$suffix file2x.$suffix || die "ERROR"
2002-12-10 09:41:27 +03:00
if [ $sector_align != sector_align ] ; then
for n in 0 1 2 ; do
2006-08-28 07:42:10 +04:00
$CMP file$n .$input_type file${ n } x.$input_type || die " ERROR: file mismatch on file # $n "
2005-08-27 05:57:39 +04:00
done
else
for n in 0 1 2 ; do
2006-08-28 07:42:10 +04:00
$CMP file${ n } s.$input_type file${ n } x.$input_type || die " ERROR: file mismatch on file # $n "
2002-12-10 09:41:27 +03:00
done
fi
for n in 0 1 2 ; do
2005-08-27 05:57:39 +04:00
rm -f file${ n } x.$suffix file${ n } x.$input_type
2002-12-10 09:41:27 +03:00
done
}
2006-11-04 06:04:21 +03:00
input_types = "raw wav aiff flac"
#@@@ doesn't work yet because md5cmp doesn't work because metaflac doesn't work on ogg flac yet
#@@@if [ $has_ogg = yes ] ; then
#@@@ input_types="$input_types ogg"
#@@@fi
for input_type in $input_types ; do
2005-08-27 05:57:39 +04:00
echo " Testing multiple $input_type files without verify... "
test_multifile $input_type flac no_sector_align ""
2002-12-10 09:41:27 +03:00
2005-08-27 05:57:39 +04:00
echo " Testing multiple $input_type files with verify... "
test_multifile $input_type flac no_sector_align "--verify"
2002-12-10 09:41:27 +03:00
2006-11-04 06:04:21 +03:00
if [ $input_type != flac ] && [ $input_type != ogg ] ; then # --sector-align not supported for FLAC input
2006-08-28 07:42:10 +04:00
echo " Testing multiple $input_type files with --sector-align, without verify... "
test_multifile $input_type flac sector_align ""
2002-12-10 09:41:27 +03:00
2006-08-28 07:42:10 +04:00
echo " Testing multiple $input_type files with --sector-align, with verify... "
test_multifile $input_type flac sector_align "--verify"
fi
2002-12-10 09:41:27 +03:00
2006-11-04 06:04:21 +03:00
if [ $has_ogg = yes ] ; then
2005-08-27 05:57:39 +04:00
echo " Testing multiple $input_type files with --ogg, without verify... "
test_multifile $input_type ogg no_sector_align ""
2002-12-10 09:41:27 +03:00
2005-08-27 05:57:39 +04:00
echo " Testing multiple $input_type files with --ogg, with verify... "
test_multifile $input_type ogg no_sector_align "--verify"
2002-12-10 09:41:27 +03:00
2006-08-28 07:42:10 +04:00
if [ $input_type != flac ] ; then # --sector-align not supported for FLAC input
echo " Testing multiple $input_type files with --ogg and --sector-align, without verify... "
test_multifile $input_type ogg sector_align ""
2002-12-10 09:41:27 +03:00
2006-08-28 07:42:10 +04:00
echo " Testing multiple $input_type files with --ogg and --sector-align, with verify... "
test_multifile $input_type ogg sector_align "--verify"
fi
2002-12-10 09:41:27 +03:00
2005-08-27 05:57:39 +04:00
echo " Testing multiple $input_type files with --ogg and --serial-number, with verify... "
test_multifile $input_type ogg no_sector_align "--serial-number=321 --verify"
fi
done
2006-08-28 07:42:10 +04:00
2008-09-09 11:24:23 +04:00
############################################################################
# test --keep-foreign-metadata
############################################################################
echo "Testing --keep-foreign-metadata..."
rt_test_wav wacky1.wav '--keep-foreign-metadata'
rt_test_wav wacky2.wav '--keep-foreign-metadata'
2008-09-09 11:49:19 +04:00
rt_test_w64 wacky1.w64 '--keep-foreign-metadata'
rt_test_w64 wacky2.w64 '--keep-foreign-metadata'
2008-09-09 11:24:23 +04:00
rt_test_rf64 wacky1.rf64 '--keep-foreign-metadata'
rt_test_rf64 wacky2.rf64 '--keep-foreign-metadata'
2006-08-28 07:42:10 +04:00
############################################################################
# test the metadata-handling properties of flac-to-flac encoding
############################################################################
echo "Testing the metadata-handling properties of flac-to-flac encoding..."
2015-02-15 08:32:25 +03:00
testdatadir = ${ top_srcdir } /test/flac-to-flac-metadata-test-files
2006-08-28 07:42:10 +04:00
filter ( )
{
2007-02-04 07:28:37 +03:00
# minor danger, changing vendor strings might change the length of the
2006-08-28 07:42:10 +04:00
# VORBIS_COMMENT block, but if we add "^ length: " to the patterns,
# we lose info about PADDING size that we need
grep -Ev '^ vendor string: |^ m..imum .....size: ' | sed -e 's/, stream_offset.*//'
}
flac2flac ( )
{
2015-02-15 08:32:25 +03:00
file = " $testdatadir / $1 "
case = " $testdatadir / $2 "
2006-08-28 07:42:10 +04:00
args = " $3 "
expect = " $case -expect.meta "
2015-10-04 01:43:33 +03:00
echo $ECHO_N " $2 ... " $ECHO_C
2015-02-24 10:04:44 +03:00
# The 'make distcheck' target needs this.
chmod u+w $file
2015-02-13 11:47:30 +03:00
run_flac -f -o out.flac $args $file || die "ERROR encoding FLAC file"
2019-07-13 11:29:34 +03:00
run_metaflac --list out.flac | filter > out1.meta || die "ERROR listing metadata of output FLAC file"
# Ignore lengths which can be affected by the version string.
sed "s/length:.*/length: XXX/" out1.meta > out.meta
2006-08-28 07:42:10 +04:00
diff -q -w $expect out.meta 2>/dev/null || die " ERROR: metadata does not match expected $expect "
echo OK
}
#filter=', stream_offset.*|^ vendor string: |^ length: |^ m..imum .....size: '
# case 00a: no alterations on a file with all metadata types, keep all metadata, in same order
flac2flac input-SCVAUP.flac case00a ""
# case 01a: on file with multiple PADDING blocks, they should be aggregated into one at the end
flac2flac input-SCVPAP.flac case01a ""
# case 01b: on file with multiple PADDING blocks and --no-padding specified, they should all be deleted
flac2flac input-SCVPAP.flac case01b "--no-padding"
# case 01c: on file with multiple PADDING blocks and -P specified, they should all be overwritten with -P value
flac2flac input-SCVPAP.flac case01c "-P 1234"
# case 01d: on file with no PADDING blocks, use -P setting
flac2flac input-SCVA.flac case01d "-P 1234"
# case 01e: on file with no PADDING blocks and no -P given, use default padding
flac2flac input-SCVA.flac case01e ""
# case 02a: on file with no VORBIS_COMMENT block, add new VORBIS_COMMENT
flac2flac input-SCPAP.flac case02a ""
# case 02b: on file with no VORBIS_COMMENT block and --tag, add new VORBIS_COMMENT with tags
flac2flac input-SCPAP.flac case02b "--tag=artist=0"
# case 02c: on file with VORBIS_COMMENT block and --tag, replace existing VORBIS_COMMENT with new tags
2015-02-13 11:47:30 +03:00
flac2flac input-SCVAUP.flac case02c "--tag=artist=0"
2006-08-28 07:42:10 +04:00
# case 03a: on file with no CUESHEET block and --cuesheet specified, add it
2015-02-15 08:32:25 +03:00
flac2flac input-SVAUP.flac case03a " --cuesheet= $testdatadir /input0.cue "
2006-08-28 07:42:10 +04:00
# case 03b: on file with CUESHEET block and --cuesheet specified, overwrite existing CUESHEET
2015-02-15 08:32:25 +03:00
flac2flac input-SCVAUP.flac case03b " --cuesheet= $testdatadir /input0.cue "
2006-08-28 07:42:10 +04:00
# case 03c: on file with CUESHEET block and size-changing option specified, drop existing CUESHEET
2015-02-13 11:47:30 +03:00
flac2flac input-SCVAUP.flac case03c "--skip=1"
2006-08-28 07:42:10 +04:00
# case 04a: on file with no SEEKTABLE block and --no-seektable specified, no SEEKTABLE
flac2flac input-VA.flac case04a "--no-padding --no-seektable"
# case 04b: on file with no SEEKTABLE block and -S specified, new SEEKTABLE
flac2flac input-VA.flac case04b "--no-padding -S 5x"
# case 04c: on file with no SEEKTABLE block and no seektable options specified, new SEEKTABLE with default points
flac2flac input-VA.flac case04c "--no-padding"
# case 04d: on file with SEEKTABLE block and --no-seektable specified, drop existing SEEKTABLE
flac2flac input-SCVA.flac case04d "--no-padding --no-seektable"
# case 04e: on file with SEEKTABLE block and -S specified, overwrite existing SEEKTABLE
2015-02-13 11:47:30 +03:00
flac2flac input-SCVA.flac case04e "--no-padding -S 5x"
2006-08-28 07:42:10 +04:00
# case 04f: on file with SEEKTABLE block and size-changing option specified, drop existing SEEKTABLE, new SEEKTABLE with default points
#(already covered by case03c)
2022-01-11 11:16:12 +03:00
############################################################################
# test limiting minimum bitrate
############################################################################
echo $ECHO_N "Testing --limit-min-bitrate" $ECHO_C
run_flac -f -o out.flac --no-padding --no-seektable --limit-min-bitrate " $testdatadir /input-VA.flac "
size = $( wc -c < out.flac)
if [ " $size " -lt "1022" ] ; then
die "ERROR: filesize of flac file encoded with --limit-min-bitrate is smaller than expected"
fi
echo OK
############################################################################
# test overflow of total samples field in STREAMINFO
############################################################################
2022-04-19 18:45:22 +03:00
test_total_samples_overflow ( )
{
total_samples = $1
expected_stored_total_samples = $2
echo $ECHO_N " total_samples overflow test (samples= $total_samples ) encode... " $ECHO_C
head -c $total_samples /dev/zero | run_flac --force --verify --sign= signed --sample-rate= 96000 -b 16384 --channels= 1 --endian= little --bps= 8 -o big-$total_samples .flac - || die "ERROR"
echo $ECHO_N "decode... " $ECHO_C
run_flac -t big-$total_samples .flac || die "ERROR"
echo $ECHO_N "check... " $ECHO_C
run_metaflac --show-total-samples big-$total_samples .flac > big-$total_samples .cmp1
echo $expected_stored_total_samples > big-$total_samples .cmp2
diff -q -w big-$total_samples .cmp1 big-$total_samples .cmp2 || die "ERROR"
echo "OK"
rm -f big-$total_samples .flac big-$total_samples .cmp1 big-$total_samples .cmp2
}
if [ " $FLAC__TEST_LEVEL " -gt 1 ] ; then
test_total_samples_overflow 68719476735 68719476735
test_total_samples_overflow 68719476736 0
test_total_samples_overflow 68719476737 0
fi
2022-05-12 23:21:39 +03:00
############################################################################
# test handling of UTF-8 filenames
############################################################################
test_utf8_handling ( )
{
echo $ECHO_N " Test decoding from $1 ... " $ECHO_C
run_flac -d $testdatadir /$1 -o out.wav
if [ -f out.wav ] ; then
echo "OK"
else
die "Decoding failed"
fi
echo $ECHO_N " Test encoding to $1 ... " $ECHO_C
run_flac out.wav -o $1
if [ -f $1 ] ; then
echo "OK"
else
die "Encoding failed"
fi
rm $1 out.wav
}
if [ " $WIN32BUSYBOX " != "yes" ] ; then
test_utf8_handling שלום.flac
test_utf8_handling 🤔.flac
test_utf8_handling Prøve.flac
fi
2019-07-13 11:29:34 +03:00
rm -f out.flac out.meta out1.meta
2006-08-28 07:42:10 +04:00
2006-11-04 06:04:21 +03:00
#@@@ when metaflac handles ogg flac, duplicate flac2flac tests here
2006-08-28 07:42:10 +04:00
cd ..