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

多媒体编程

开发平台:

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.     Header to handle loading FLAC music files in SDL.
  18.      ~ Austen Dicken (admin@cvpcs.org)
  19. */
  20. /* $Id:  $ */
  21. #ifdef FLAC_MUSIC
  22. #include <FLAC/stream_decoder.h>
  23. typedef struct {
  24. FLAC__uint64 sample_size;
  25. unsigned sample_rate;
  26. unsigned channels;
  27. unsigned bits_per_sample;
  28. FLAC__uint64 total_samples;
  29. // the following are used to handle the callback nature of the writer
  30. int max_to_read;
  31. char *data; // pointer to beginning of data array
  32. int data_len; // size of data array
  33. int data_read; // amount of data array used
  34. char *overflow; // pointer to beginning of overflow array
  35. int overflow_len; // size of overflow array
  36. int overflow_read; // amount of overflow array used
  37. } FLAC_Data;
  38. typedef struct {
  39. int playing;
  40. int volume;
  41. int section;
  42. FLAC__StreamDecoder *flac_decoder;
  43. FLAC_Data flac_data;
  44. SDL_RWops *rwops;
  45. SDL_AudioCVT cvt;
  46. int len_available;
  47. Uint8 *snd_available;
  48. } FLAC_music;
  49. /* Initialize the FLAC player, with the given mixer settings
  50.    This function returns 0, or -1 if there was an error.
  51.  */
  52. extern int FLAC_init(SDL_AudioSpec *mixer);
  53. /* Set the volume for a FLAC stream */
  54. extern void FLAC_setvolume(FLAC_music *music, int volume);
  55. /* Load a FLAC stream from the given file */
  56. extern FLAC_music *FLAC_new(const char *file);
  57. /* Load an FLAC stream from an SDL_RWops object */
  58. extern FLAC_music *FLAC_new_RW(SDL_RWops *rw);
  59. /* Start playback of a given FLAC stream */
  60. extern void FLAC_play(FLAC_music *music);
  61. /* Return non-zero if a stream is currently playing */
  62. extern int FLAC_playing(FLAC_music *music);
  63. /* Play some of a stream previously started with FLAC_play() */
  64. extern int FLAC_playAudio(FLAC_music *music, Uint8 *stream, int len);
  65. /* Stop playback of a stream previously started with FLAC_play() */
  66. extern void FLAC_stop(FLAC_music *music);
  67. /* Close the given FLAC stream */
  68. extern void FLAC_delete(FLAC_music *music);
  69. /* Jump (seek) to a given position (time is in seconds) */
  70. extern void FLAC_jump_to_time(FLAC_music *music, double time);
  71. #endif /* FLAC_MUSIC */