reader.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 reader.h
  30. #ifndef _musepack_reader_h_
  31. #define _musepack_reader_h_
  32. /// brief Stream reader interface structure.
  33. ///
  34. /// This is the structure you must supply to the musepack decoding library
  35. /// to feed it with raw data.  Implement the five member functions to provide
  36. /// a functional reader.
  37. typedef struct mpc_reader_t {
  38.     /// Reads size bytes of data into buffer at ptr.
  39. mpc_int32_t (*read)(void *t, void *ptr, mpc_int32_t size);
  40.     /// Seeks to byte position offset.
  41. mpc_bool_t (*seek)(void *t, mpc_int32_t offset);
  42.     /// Returns the current byte offset in the stream.
  43. mpc_int32_t (*tell)(void *t);
  44.     /// Returns the total length of the source stream, in bytes.
  45. mpc_int32_t (*get_size)(void *t);
  46.     /// True if the stream is a seekable stream.
  47. mpc_bool_t (*canseek)(void *t);
  48.     /// Optional field that can be used to identify a particular instance of
  49.     /// reader or carry along data associated with that reader.
  50.     void *data;
  51.     // These are used by provided internal standard file-based reader implementation.
  52.     // You shouldn't touch them.  They're included in the main struct to avoid
  53.     // malloc/free.
  54.     //FILE *file;
  55.     //long file_size;
  56.     //mpc_bool_t is_seekable;
  57. } mpc_reader;
  58. /// Initializes reader with default stdio file reader implementation.  Use
  59. /// this if you're just reading from a plain file.
  60. ///
  61. /// param r reader struct to initalize
  62. /// param input input stream to attach to the reader
  63. //void mpc_reader_setup_file_reader(mpc_reader *r, FILE *input);
  64. #endif // _musepack_reader_h_