dynamic_ogg.h
上传用户:nini_0081
上传日期:2022-07-21
资源大小:2628k
文件大小:2k
源码类别:

多媒体编程

开发平台:

DOS

  1. /*
  2.     SDL_mixer:  An audio mixer library based on the SDL library
  3.     Copyright (C) 1997-2009 Sam Lantinga
  4.     This library is free software; you can redistribute it and/or
  5.     modify it under the terms of the GNU Library General Public
  6.     License as published by the Free Software Foundation; either
  7.     version 2 of the License, or (at your option) any later version.
  8.     This library is distributed in the hope that it will be useful,
  9.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.     Library General Public License for more details.
  12.     You should have received a copy of the GNU Library General Public
  13.     License along with this library; if not, write to the Free
  14.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  15.     Sam Lantinga
  16.     slouken@libsdl.org
  17. */
  18. #ifdef OGG_MUSIC
  19. #ifdef OGG_USE_TREMOR
  20. #include <tremor/ivorbisfile.h>
  21. #else
  22. #include <vorbis/vorbisfile.h>
  23. #endif
  24. typedef struct {
  25. int loaded;
  26. void *handle;
  27. int (*ov_clear)(OggVorbis_File *vf);
  28. vorbis_info *(*ov_info)(OggVorbis_File *vf,int link);
  29. int (*ov_open_callbacks)(void *datasource, OggVorbis_File *vf, char *initial, long ibytes, ov_callbacks callbacks);
  30. ogg_int64_t (*ov_pcm_total)(OggVorbis_File *vf,int i);
  31. #ifdef OGG_USE_TREMOR
  32. long (*ov_read)(OggVorbis_File *vf,char *buffer,int length, int *bitstream);
  33. #else
  34. long (*ov_read)(OggVorbis_File *vf,char *buffer,int length, int bigendianp,int word,int sgned,int *bitstream);
  35. #endif
  36. int (*ov_time_seek)(OggVorbis_File *vf,double pos);
  37. } vorbis_loader;
  38. extern vorbis_loader vorbis;
  39. #endif /* OGG_MUSIC */
  40. extern int Mix_InitOgg();
  41. extern void Mix_QuitOgg();