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

Windows CE

开发平台:

C/C++

  1. #!/bin/sh
  2. #  FLAC - Free Lossless Audio Codec
  3. #  Copyright (C) 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=../src/libFLAC/.libs:$LD_LIBRARY_PATH
  29. LD_LIBRARY_PATH=../src/libOggFLAC/.libs:$LD_LIBRARY_PATH
  30. LD_LIBRARY_PATH=../obj/$BUILD/lib:$LD_LIBRARY_PATH
  31. export LD_LIBRARY_PATH
  32. PATH=../src/flac:$PATH
  33. PATH=../src/metaflac:$PATH
  34. PATH=../src/test_seeking:$PATH
  35. PATH=../src/test_streams:$PATH
  36. PATH=../obj/$BUILD/bin:$PATH
  37. flac --help 1>/dev/null 2>/dev/null || die "ERROR can't find flac executable"
  38. metaflac --help 1>/dev/null 2>/dev/null || die "ERROR can't find metaflac executable"
  39. run_flac ()
  40. {
  41. if [ x"$FLAC__VALGRIND" = xyes ] ; then
  42. valgrind --leak-check=yes --show-reachable=yes --num-callers=100 --logfile-fd=4 flac $* 4>>test_seeking.valgrind.log
  43. else
  44. flac $*
  45. fi
  46. }
  47. run_metaflac ()
  48. {
  49. if [ x"$FLAC__VALGRIND" = xyes ] ; then
  50. valgrind --leak-check=yes --show-reachable=yes --num-callers=100 --logfile-fd=4 metaflac $* 4>>test_seeking.valgrind.log
  51. else
  52. metaflac $*
  53. fi
  54. }
  55. run_test_seeking ()
  56. {
  57. if [ x"$FLAC__VALGRIND" = xyes ] ; then
  58. valgrind --leak-check=yes --show-reachable=yes --num-callers=100 --logfile-fd=4 test_seeking $* 4>>test_seeking.valgrind.log
  59. else
  60. test_seeking $*
  61. fi
  62. }
  63. echo "Checking for --ogg support in flac..."
  64. if flac --ogg --silent --force-raw-format --endian=little --sign=signed --channels=1 --bps=8 --sample-rate=44100 -c $0 1>/dev/null 2>&1 ; then
  65. has_ogg=yes;
  66. echo "flac --ogg works"
  67. else
  68. has_ogg=no;
  69. echo "flac --ogg doesn't work"
  70. fi
  71. echo "Generating streams..."
  72. if [ ! -f noise.raw ] ; then
  73. test_streams || die "ERROR during test_streams"
  74. fi
  75. echo "generating FLAC files for seeking:"
  76. run_flac --verify --force --silent --force-raw-format --endian=big --sign=signed --sample-rate=44100 --bps=8 --channels=1 --blocksize=576 --output-name=tiny.flac noise8m32.raw || die "ERROR generating FLAC file"
  77. run_flac --verify --force --silent --force-raw-format --endian=big --sign=signed --sample-rate=44100 --bps=16 --channels=2 --blocksize=576 --output-name=small.flac noise.raw || die "ERROR generating FLAC file"
  78. echo "generating Ogg FLAC files for seeking:"
  79. run_flac --verify --force --silent --force-raw-format --endian=big --sign=signed --sample-rate=44100 --bps=8 --channels=1 --blocksize=576 --output-name=tiny.ogg --ogg noise8m32.raw || die "ERROR generating Ogg FLAC file"
  80. run_flac --verify --force --silent --force-raw-format --endian=big --sign=signed --sample-rate=44100 --bps=16 --channels=2 --blocksize=576 --output-name=small.ogg --ogg noise.raw || die "ERROR generating Ogg FLAC file"
  81. echo "testing tiny.flac:"
  82. if run_test_seeking tiny.flac 100 ; then : ; else
  83. die "ERROR: during test_seeking"
  84. fi
  85. echo "testing small.flac:"
  86. if run_test_seeking small.flac 1000 ; then : ; else
  87. die "ERROR: during test_seeking"
  88. fi
  89. echo "removing sample count from tiny.flac and small.flac:"
  90. if run_metaflac --no-filename --set-total-samples=0 tiny.flac small.flac ; then : ; else
  91. die "ERROR: during metaflac"
  92. fi
  93. echo "testing tiny.flac with total_samples=0:"
  94. if run_test_seeking tiny.flac 100 ; then : ; else
  95. die "ERROR: during test_seeking"
  96. fi
  97. echo "testing small.flac with total_samples=0:"
  98. if run_test_seeking small.flac 1000 ; then : ; else
  99. die "ERROR: during test_seeking"
  100. fi
  101. if [ $has_ogg = "yes" ] ; then
  102. echo "testing tiny.ogg:"
  103. if run_test_seeking tiny.ogg 100 ; then : ; else
  104. die "ERROR: during test_seeking"
  105. fi
  106. echo "testing small.ogg:"
  107. if run_test_seeking small.ogg 1000 ; then : ; else
  108. die "ERROR: during test_seeking"
  109. fi
  110. fi
  111. rm -f tiny.flac tiny.ogg small.flac small.ogg