get_audio.h
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:3k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2. ** Copyright (C) 1999 Albert Faber
  3. **  
  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.  *
  9.  * This library is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12.  * Library General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU Library General Public
  15.  * License along with this library; if not, write to the
  16.  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  17.  * Boston, MA 02111-1307, USA.
  18.  */
  19. #ifndef GET_AUDIO_H_INCLUDED
  20. #define GET_AUDIO_H_INCLUDED
  21. #if (defined LIBSNDFILE || defined LAMESNDFILE)
  22. /* AIFF Definitions */
  23. #define IFF_ID_FORM 0x464f524d /* "FORM" */
  24. #define IFF_ID_AIFF 0x41494646 /* "AIFF" */
  25. #define IFF_ID_COMM 0x434f4d4d /* "COMM" */
  26. #define IFF_ID_SSND 0x53534e44 /* "SSND" */
  27. #define IFF_ID_MPEG 0x4d504547 /* "MPEG" */
  28. void CloseSndFile(lame_global_flags *gfp);
  29. FILE * OpenSndFile(lame_global_flags *gfp,const char* lpszFileName,int default_samp, int 
  30.    default_chan);
  31. unsigned long GetSndSamples(void);
  32. int GetSndSampleRate(void);
  33. int GetSndChannels(void);
  34. int GetSndBitrate(void);
  35. int get_audio(lame_global_flags *gfp,short buffer[2][1152],int stereo);
  36. #ifdef LIBSNDFILE
  37. /* INCLUDE the sound library header file */
  38. #ifdef _MSC_VER
  39. /* one byte alignment for WIN32 platforms */
  40. #pragma pack(push,1)
  41. #include "./libsndfile/src/sndfile.h"
  42. #pragma pack(pop,1)
  43. #else
  44. #include "sndfile.h"
  45. #endif
  46. #else
  47. /*****************************************************************
  48.  * LAME/ISO built in audio file I/O routines 
  49.  *******************************************************************/
  50. #include "portableio.h"
  51. #include "ieeefloat.h"
  52. typedef struct  blockAlign_struct {
  53.     unsigned long   offset;
  54.     unsigned long   blockSize;
  55. } blockAlign;
  56. typedef struct  IFF_AIFF_struct {
  57.     short           numChannels;
  58.     unsigned long   numSampleFrames;
  59.     short           sampleSize;
  60.     FLOAT           sampleRate;
  61.     unsigned long   sampleType;
  62.     blockAlign      blkAlgn;
  63. } IFF_AIFF;
  64. extern int            aiff_read_headers(FILE*, IFF_AIFF*);
  65. extern int            aiff_seek_to_sound_data(FILE*);
  66. extern int            aiff_write_headers(FILE*, IFF_AIFF*);
  67. extern int parse_wavheader(void);
  68. extern int parse_aiff(const char fn[]);
  69. extern void   aiff_check(const char*, IFF_AIFF*, int*);
  70. #endif /* ifndef _LIBSNDDLL */
  71. #endif  /* ifdef LAMESNDFILE or LIBSNDFILE */
  72. #endif /* ifndef GET_AUDIO_H_INCLUDED*/