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

Windows CE

开发平台:

C/C++

  1. /*
  2.   Copyright (c) 2005, The Musepack Development Team
  3.   All rights reserved.
  4.   Redistribution and use in source and binary forms, with or without
  5.   modification, are permitted provided that the following conditions are
  6.   met:
  7.   * Redistributions of source code must retain the above copyright
  8.   notice, this list of conditions and the following disclaimer.
  9.   * Redistributions in binary form must reproduce the above
  10.   copyright notice, this list of conditions and the following
  11.   disclaimer in the documentation and/or other materials provided
  12.   with the distribution.
  13.   * Neither the name of the The Musepack Development Team nor the
  14.   names of its contributors may be used to endorse or promote
  15.   products derived from this software without specific prior
  16.   written permission.
  17.   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  18.   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  19.   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  20.   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  21.   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  22.   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  23.   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  24.   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  25.   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  26.   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  27.   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  28. */
  29. /// file musepack_internal.h
  30. /// Definitions and structures used only internally by the libmusepack.
  31. #ifndef _musepack_internal_h
  32. #define _musepack_internal_h
  33. enum {
  34.     MPC_DECODER_SYNTH_DELAY = 481
  35. };
  36. /// Big/little endian 32 bit byte swapping routine.
  37. static inline
  38. mpc_uint32_t swap32(mpc_uint32_t val) {
  39.     const unsigned char* src = (const unsigned char*)&val;
  40.     return 
  41.         (mpc_uint32_t)src[0] | 
  42.         ((mpc_uint32_t)src[1] << 8) | ((mpc_uint32_t)src[2] << 16) | ((mpc_uint32_t)src[3] << 24);
  43. }
  44. /// Searches for a ID3v2-tag and reads the length (in bytes) of it.
  45. /// param reader supplying raw stream data
  46. /// return size of tag, in bytes
  47. /// return -1 on errors of any kind
  48. mpc_int32_t JumpID3v2(mpc_reader* fp);
  49. /// helper functions used by multiple files
  50. mpc_uint32_t random_int(mpc_decoder *d); // in synth_filter.c
  51. void mpc_decoder_initialisiere_quantisierungstabellen(mpc_decoder *d, double scale_factor);
  52. void mpc_decoder_synthese_filter_float(mpc_decoder *d, MPC_SAMPLE_FORMAT* OutData);
  53. #endif // _musepack_internal_h