mpc_reader.c
上传用户: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 mpc_reader.c
  30. /// Contains implementations for simple file-based mpc_reader
  31. #include "musepack/musepack.h"
  32. /// mpc_reader callback implementations
  33. static mpc_int32_t
  34. read_impl(void *data, void *ptr, mpc_int32_t size)
  35. {
  36.     mpc_reader *d = (mpc_reader *) data;
  37.     return fread(ptr, 1, size, d->file);
  38. }
  39. static mpc_bool_t
  40. seek_impl(void *data, int offset)
  41. {
  42.     mpc_reader *d = (mpc_reader *) data;
  43.     return d->is_seekable ? !fseek(d->file, offset, SEEK_SET) : FALSE;
  44. }
  45. static mpc_int32_t
  46. tell_impl(void *data)
  47. {
  48.     mpc_reader *d = (mpc_reader *) data;
  49.     return ftell(d->file);
  50. }
  51. static mpc_int32_t
  52. get_size_impl(void *data)
  53. {
  54.     mpc_reader *d = (mpc_reader *) data;
  55.     return d->file_size;
  56. }
  57. static mpc_bool_t
  58. canseek_impl(void *data)
  59. {
  60.     mpc_reader *d = (mpc_reader *) data;
  61.     return d->is_seekable;
  62. }
  63. void
  64. mpc_reader_setup_file_reader(mpc_reader *reader, FILE *input)
  65. {
  66.     reader->seek = seek_impl;
  67.     reader->read = read_impl;
  68.     reader->tell = tell_impl;
  69.     reader->get_size = get_size_impl;
  70.     reader->canseek = canseek_impl;
  71.     reader->data = reader; // point back to ourselves
  72.     reader->file = input;
  73.     reader->is_seekable = TRUE;
  74.     fseek(reader->file, 0, SEEK_END);
  75.     reader->file_size = ftell(reader->file);
  76.     fseek(reader->file, 0, SEEK_SET);
  77. }