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

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 streaminfo.h
  30. #ifndef _musepack_streaminfo_h_
  31. #define _musepack_streaminfo_h_
  32. typedef mpc_int32_t mpc_streaminfo_off_t;
  33. /// brief mpc stream properties structure
  34. ///
  35. /// Structure containing all the properties of an mpc stream.  Populated
  36. /// by the streaminfo_read function.
  37. typedef struct mpc_streaminfo {
  38.     /// @name core mpc stream properties
  39.     //@{
  40.     mpc_uint32_t         sample_freq;        ///< sample frequency of stream
  41.     mpc_uint32_t         channels;           ///< number of channels in stream
  42.     mpc_streaminfo_off_t header_position;    ///< byte offset of position of header in stream
  43.     mpc_uint32_t         stream_version;     ///< streamversion of stream
  44.     mpc_uint32_t         bitrate;            ///< bitrate of stream file (in bps)
  45.     int  average_bitrate;    ///< average bitrate of stream (in bits/sec)
  46.     mpc_uint32_t         frames;             ///< number of frames in stream
  47.     mpc_int64_t          pcm_samples;
  48.     mpc_uint32_t         max_band;           ///< maximum band-index used in stream (0...31)
  49.     mpc_uint32_t         is;                 ///< intensity stereo (0: off, 1: on)
  50.     mpc_uint32_t         ms;                 ///< mid/side stereo (0: off, 1: on)
  51.     mpc_uint32_t         block_size;         ///< only needed for SV4...SV6 -> not supported
  52.     mpc_uint32_t         profile;            ///< quality profile of stream
  53.     const char*          profile_name;       ///< name of profile used by stream
  54.     //@}
  55.     /// @name replaygain related fields
  56.     //@{
  57.     mpc_int16_t         gain_title;          ///< replaygain title value 
  58.     mpc_int16_t         gain_album;          ///< replaygain album value
  59.     mpc_uint16_t        peak_album;          ///< peak album loudness level
  60.     mpc_uint16_t        peak_title;          ///< peak title loudness level
  61.     //@}
  62.     /// @name true gapless support data
  63.     //@{
  64.     mpc_uint32_t        is_true_gapless;     ///< true gapless? (0: no, 1: yes)
  65.     mpc_uint32_t        last_frame_samples;  ///< number of valid samples within last frame
  66.     mpc_uint32_t        encoder_version;     ///< version of encoder used
  67.     char                encoder[256];        ///< encoder name
  68.     mpc_streaminfo_off_t tag_offset;         ///< offset to file tags
  69.     mpc_streaminfo_off_t total_file_length;  ///< total length of underlying file
  70.     //@}
  71. } mpc_streaminfo;
  72. #endif // _musepack_streaminfo_h_