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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * The contents of this file are subject to the Mozilla Public
  3.  * License Version 1.1 (the "License"); you may not use this file
  4.  * except in compliance with the License. You may obtain a copy of
  5.  * the License at http://www.mozilla.org/MPL/
  6.  * 
  7.  * Software distributed under the License is distributed on an "AS
  8.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  9.  * implied. See the License for the specific language governing
  10.  * rights and limitations under the License.
  11.  * 
  12.  * The Original Code is MPEG4IP.
  13.  * 
  14.  * The Initial Developer of the Original Code is Cisco Systems Inc.
  15.  * Portions created by Cisco Systems Inc. are
  16.  * Copyright (C) Cisco Systems Inc. 2000, 2001.  All Rights Reserved.
  17.  * 
  18.  * Contributor(s): 
  19.  * Dave Mackie dmackie@cisco.com
  20.  * Bill May  wmay@cisco.com
  21.  */
  22. #ifndef __AUDIO_OSS_SOURCE_H__
  23. #define __AUDIO_OSS_SOURCE_H__
  24. #include <sys/types.h>
  25. #include <sys/ioctl.h>
  26. #include <linux/soundcard.h>
  27. #include "media_source.h"
  28. #include "audio_encoder.h"
  29. class COSSAudioSource : public CMediaSource {
  30. public:
  31. COSSAudioSource() : CMediaSource() {
  32. m_audioDevice = -1;
  33. m_pcmFrameBuffer = NULL;
  34. }
  35. ~COSSAudioSource() {
  36. free(m_pcmFrameBuffer);
  37. }
  38. bool IsDone() {
  39. return false; // live capture device is inexhaustible
  40. }
  41. float GetProgress() {
  42. return 0.0; // live capture device is inexhaustible
  43. }
  44. protected:
  45. int ThreadMain();
  46. void DoStartCapture();
  47. void DoStopCapture();
  48. bool Init();
  49. bool InitDevice();
  50. void ProcessAudio();
  51. protected:
  52. int m_audioDevice;
  53. u_int16_t m_maxPasses;
  54. Timestamp m_audioStartTimestamp;
  55. u_int8_t* m_pcmFrameBuffer;
  56. u_int32_t m_pcmFrameSize;
  57. };
  58. class CAudioCapabilities {
  59. public:
  60. CAudioCapabilities(char* deviceName) {
  61. m_deviceName = stralloc(deviceName);
  62. m_canOpen = false;
  63. m_numSamplingRates = 0;
  64. ProbeDevice();
  65. }
  66. ~CAudioCapabilities() {
  67. free(m_deviceName);
  68. }
  69. inline bool IsValid() {
  70. return m_canOpen;
  71. }
  72. public:
  73. char* m_deviceName; 
  74. bool m_canOpen;
  75. // N.B. the rest of the fields are only valid 
  76. // if m_canOpen is true
  77. char* m_driverName; 
  78. u_int16_t m_numSamplingRates;
  79. u_int32_t m_samplingRates[16];
  80. protected:
  81. bool ProbeDevice(void);
  82. };
  83. #endif /* __AUDIO_OSS_SOURCE_H__ */