test_streams.sh
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:9k
源码类别:

Windows CE

开发平台:

C/C++

  1. #!/bin/sh
  2. #  FLAC - Free Lossless Audio Codec
  3. #  Copyright (C) 2001,2002,2003,2004,2005  Josh Coalson
  4. #
  5. #  This file is part the FLAC project.  FLAC is comprised of several
  6. #  components distributed under difference licenses.  The codec libraries
  7. #  are distributed under Xiph.Org's BSD-like license (see the file
  8. #  COPYING.Xiph in this distribution).  All other programs, libraries, and
  9. #  plugins are distributed under the GPL (see COPYING.GPL).  The documentation
  10. #  is distributed under the Gnu FDL (see COPYING.FDL).  Each file in the
  11. #  FLAC distribution contains at the top the terms under which it may be
  12. #  distributed.
  13. #
  14. #  Since this particular file is relevant to all components of FLAC,
  15. #  it may be distributed under the Xiph.Org license, which is the least
  16. #  restrictive of those mentioned above.  See the file COPYING.Xiph in this
  17. #  distribution.
  18. die ()
  19. {
  20. echo $* 1>&2
  21. exit 1
  22. }
  23. if [ x = x"$1" ] ; then 
  24. BUILD=debug
  25. else
  26. BUILD="$1"
  27. fi
  28. LD_LIBRARY_PATH=../obj/$BUILD/lib:$LD_LIBRARY_PATH
  29. export LD_LIBRARY_PATH
  30. PATH=../src/flac:$PATH
  31. PATH=../src/test_streams:$PATH
  32. PATH=../obj/$BUILD/bin:$PATH
  33. flac --help 1>/dev/null 2>/dev/null || die "ERROR can't find flac executable"
  34. run_flac ()
  35. {
  36. if [ x"$FLAC__VALGRIND" = xyes ] ; then
  37. valgrind --leak-check=yes --show-reachable=yes --num-callers=100 --logfile-fd=4 flac $* 4>>test_streams.valgrind.log
  38. else
  39. flac $*
  40. fi
  41. }
  42. echo "Generating streams..."
  43. if [ ! -f wacky1.wav ] ; then
  44. test_streams || die "ERROR during test_streams"
  45. fi
  46. #
  47. # single-file test routines
  48. #
  49. test_file ()
  50. {
  51. name=$1
  52. channels=$2
  53. bps=$3
  54. encode_options="$4"
  55. echo -n "$name (--channels=$channels --bps=$bps $encode_options): encode..."
  56. cmd="run_flac --verify --silent --force --force-raw-format --endian=little --sign=signed --sample-rate=44100 --bps=$bps --channels=$channels $encode_options $name.raw"
  57. echo "### ENCODE $name #######################################################" >> ./streams.log
  58. echo "###    cmd=$cmd" >> ./streams.log
  59. $cmd 2>>./streams.log || die "ERROR during encode of $name"
  60. echo -n "decode..."
  61. cmd="run_flac --silent --force --endian=little --sign=signed --decode --force-raw-format --output-name=$name.cmp $name.flac"
  62. echo "### DECODE $name #######################################################" >> ./streams.log
  63. echo "###    cmd=$cmd" >> ./streams.log
  64. $cmd 2>>./streams.log || die "ERROR during decode of $name"
  65. ls -1l $name.raw >> ./streams.log
  66. ls -1l $name.flac >> ./streams.log
  67. ls -1l $name.cmp >> ./streams.log
  68. echo -n "compare..."
  69. cmp $name.raw $name.cmp || die "ERROR during compare of $name"
  70. echo OK
  71. }
  72. test_file_piped ()
  73. {
  74. name=$1
  75. channels=$2
  76. bps=$3
  77. encode_options="$4"
  78. if [ `env | grep -ic '^comspec='` != 0 ] ; then
  79. is_win=yes
  80. else
  81. is_win=no
  82. fi
  83. echo -n "$name: encode via pipes..."
  84. if [ $is_win = yes ] ; then
  85. cmd="run_flac --verify --silent --force --force-raw-format --endian=little --sign=signed --sample-rate=44100 --bps=$bps --channels=$channels $encode_options --stdout $name.raw"
  86. echo "### ENCODE $name #######################################################" >> ./streams.log
  87. echo "###    cmd=$cmd" >> ./streams.log
  88. $cmd 1>$name.flac 2>>./streams.log || die "ERROR during encode of $name"
  89. else
  90. cmd="run_flac --verify --silent --force --force-raw-format --endian=little --sign=signed --sample-rate=44100 --bps=$bps --channels=$channels $encode_options --stdout -"
  91. echo "### ENCODE $name #######################################################" >> ./streams.log
  92. echo "###    cmd=$cmd" >> ./streams.log
  93. cat $name.raw | $cmd 1>$name.flac 2>>./streams.log || die "ERROR during encode of $name"
  94. fi
  95. echo -n "decode via pipes..."
  96. if [ $is_win = yes ] ; then
  97. cmd="run_flac --silent --force --endian=little --sign=signed --decode --force-raw-format --stdout $name.flac"
  98. echo "### DECODE $name #######################################################" >> ./streams.log
  99. echo "###    cmd=$cmd" >> ./streams.log
  100. $cmd 1>$name.cmp 2>>./streams.log || die "ERROR during decode of $name"
  101. else
  102. cmd="run_flac --silent --force --endian=little --sign=signed --decode --force-raw-format --stdout -"
  103. echo "### DECODE $name #######################################################" >> ./streams.log
  104. echo "###    cmd=$cmd" >> ./streams.log
  105. cat $name.flac | $cmd 1>$name.cmp 2>>./streams.log || die "ERROR during decode of $name"
  106. fi
  107. ls -1l $name.raw >> ./streams.log
  108. ls -1l $name.flac >> ./streams.log
  109. ls -1l $name.cmp >> ./streams.log
  110. echo -n "compare..."
  111. cmp $name.raw $name.cmp || die "ERROR during compare of $name"
  112. echo OK
  113. }
  114. if [ "$FLAC__EXHAUSTIVE_TESTS" = yes ] ; then
  115. max_lpc_order=32
  116. else
  117. max_lpc_order=16
  118. fi
  119. echo "Testing noise through pipes..."
  120. test_file_piped noise 1 8 "-0"
  121. echo "Testing small files..."
  122. test_file test01 1 16 "-0 -l $max_lpc_order -m -e -p"
  123. test_file test02 2 16 "-0 -l $max_lpc_order -m -e -p"
  124. test_file test03 1 16 "-0 -l $max_lpc_order -m -e -p"
  125. test_file test04 2 16 "-0 -l $max_lpc_order -m -e -p"
  126. echo "Testing 8-bit full-scale deflection streams..."
  127. for b in 01 02 03 04 05 06 07 ; do
  128. test_file fsd8-$b 1 8 "-0 -l $max_lpc_order -m -e -p"
  129. done
  130. echo "Testing 16-bit full-scale deflection streams..."
  131. for b in 01 02 03 04 05 06 07 ; do
  132. test_file fsd16-$b 1 16 "-0 -l $max_lpc_order -m -e -p"
  133. done
  134. echo "Testing 24-bit full-scale deflection streams..."
  135. for b in 01 02 03 04 05 06 07 ; do
  136. test_file fsd24-$b 1 24 "-0 -l $max_lpc_order -m -e -p"
  137. done
  138. echo "Testing 16-bit wasted-bits-per-sample streams..."
  139. for b in 01 ; do
  140. test_file wbps16-$b 1 16 "-0 -l $max_lpc_order -m -e -p"
  141. done
  142. for bps in 8 16 24 ; do
  143. echo "Testing $bps-bit sine wave streams..."
  144. for b in 00 ; do
  145. test_file sine${bps}-$b 1 $bps "-0 -l $max_lpc_order -m -e --sample-rate=48000"
  146. done
  147. for b in 01 ; do
  148. test_file sine${bps}-$b 1 $bps "-0 -l $max_lpc_order -m -e --sample-rate=96000"
  149. done
  150. for b in 02 03 04 ; do
  151. test_file sine${bps}-$b 1 $bps "-0 -l $max_lpc_order -m -e"
  152. done
  153. for b in 10 11 ; do
  154. test_file sine${bps}-$b 2 $bps "-0 -l $max_lpc_order -m -e --sample-rate=48000"
  155. done
  156. for b in 12 ; do
  157. test_file sine${bps}-$b 2 $bps "-0 -l $max_lpc_order -m -e --sample-rate=96000"
  158. done
  159. for b in 13 14 15 16 17 18 19 ; do
  160. test_file sine${bps}-$b 2 $bps "-0 -l $max_lpc_order -m -e"
  161. done
  162. done
  163. echo "Testing blocksize variations..."
  164. for disable in '' '--disable-verbatim-subframes --disable-constant-subframes' '--disable-verbatim-subframes --disable-constant-subframes --disable-fixed-subframes' ; do
  165. for blocksize in 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 ; do
  166. for lpc_order in 0 1 2 3 4 5 7 8 9 15 16 17 31 32 ; do
  167. if [ $lpc_order = 0 ] || [ $lpc_order -le $blocksize ] ; then
  168. test_file noise8m32 1 8 "-8 -p -e -l $lpc_order --lax --blocksize=$blocksize $disable"
  169. fi
  170. done
  171. done
  172. done
  173. echo "Testing some frame header variations..."
  174. test_file sine16-01 1 16 "-0 -l $max_lpc_order -m -e -p --lax -b $max_lpc_order"
  175. test_file sine16-01 1 16 "-0 -l $max_lpc_order -m -e -p --lax -b 65535"
  176. test_file sine16-01 1 16 "-0 -l $max_lpc_order -m -e -p --lax --sample-rate=9"
  177. test_file sine16-01 1 16 "-0 -l $max_lpc_order -m -e -p --lax --sample-rate=90"
  178. test_file sine16-01 1 16 "-0 -l $max_lpc_order -m -e -p --lax --sample-rate=90000"
  179. test_file sine16-01 1 16 "-0 -l $max_lpc_order -m -e -p --lax --sample-rate=9"
  180. test_file sine16-01 1 16 "-0 -l $max_lpc_order -m -e -p --lax --sample-rate=90"
  181. test_file sine16-01 1 16 "-0 -l $max_lpc_order -m -e -p --lax --sample-rate=90000"
  182. echo "Testing option variations..."
  183. for f in 00 01 02 03 04 ; do
  184. for disable in '' '--disable-verbatim-subframes --disable-constant-subframes' '--disable-verbatim-subframes --disable-constant-subframes --disable-fixed-subframes' ; do
  185. for opt in 0 1 2 4 5 6 8 ; do
  186. for extras in '' '-p' '-e' ; do
  187. test_file sine16-$f 1 16 "-$opt $extras $disable"
  188. done
  189. done
  190. if [ "$FLAC__EXHAUSTIVE_TESTS" = yes ] ; then
  191. test_file sine16-$f 1 16 "-b 16384 -m -r 8 -l $max_lpc_order -e -p $disable"
  192. fi
  193. done
  194. done
  195. for f in 10 11 12 13 14 15 16 17 18 19 ; do
  196. for disable in '' '--disable-verbatim-subframes --disable-constant-subframes' '--disable-verbatim-subframes --disable-constant-subframes --disable-fixed-subframes' ; do
  197. for opt in 0 1 2 4 5 6 8 ; do
  198. for extras in '' '-p' '-e' ; do
  199. test_file sine16-$f 2 16 "-$opt $extras $disable"
  200. done
  201. done
  202. if [ "$FLAC__EXHAUSTIVE_TESTS" = yes ] ; then
  203. test_file sine16-$f 2 16 "-b 16384 -m -r 8 -l $max_lpc_order -e -p $disable"
  204. fi
  205. done
  206. done
  207. echo "Testing noise..."
  208. for disable in '' '--disable-verbatim-subframes --disable-constant-subframes' '--disable-verbatim-subframes --disable-constant-subframes --disable-fixed-subframes' ; do
  209. for channels in 1 2 4 8 ; do
  210. for bps in 8 16 24 ; do
  211. for opt in 0 1 2 3 4 5 6 7 8 ; do
  212. for extras in '' '-p' '-e' ; do
  213. for blocksize in '' '--lax -b 32' '--lax -b 32768' '--lax -b 65535' ; do
  214. test_file noise $channels $bps "-$opt $extras $blocksize $disable"
  215. done
  216. done
  217. done
  218. if [ "$FLAC__EXHAUSTIVE_TESTS" = yes ] ; then
  219. test_file noise $channels $bps "-b 16384 -m -r 8 -l $max_lpc_order -e -p $disable"
  220. fi
  221. done
  222. done
  223. done