]> git.sesse.net Git - casparcg/blob - server/audio/AudioManager.h
- Reconfiguration of code
[casparcg] / server / audio / AudioManager.h
1 /*\r
2 * copyright (c) 2010 Sveriges Television AB <info@casparcg.com>\r
3 *\r
4 *  This file is part of CasparCG.\r
5 *\r
6 *    CasparCG is free software: you can redistribute it and/or modify\r
7 *    it under the terms of the GNU General Public License as published by\r
8 *    the Free Software Foundation, either version 3 of the License, or\r
9 *    (at your option) any later version.\r
10 *\r
11 *    CasparCG is distributed in the hope that it will be useful,\r
12 *    but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14 *    GNU General Public License for more details.\r
15 \r
16 *    You should have received a copy of the GNU General Public License\r
17 *    along with CasparCG.  If not, see <http://www.gnu.org/licenses/>.\r
18 *\r
19 */\r
20  \r
21 #pragma once\r
22 \r
23 #include "..\frame\Frame.h"\r
24 \r
25 namespace caspar {\r
26 \r
27 class FrameMediaController;\r
28 struct MediaProducerInfo;\r
29 \r
30 namespace audio {\r
31 \r
32 class AudioDataChunk \r
33 {\r
34 public:\r
35         AudioDataChunk(int len) : length_(len), pData_(new char[len])\r
36         {}\r
37 \r
38         ~AudioDataChunk() {\r
39                 if(pData_ != 0)\r
40                         delete[] pData_;\r
41 \r
42                 pData_ = 0;\r
43                 length_ = 0;\r
44         }\r
45 \r
46         char* GetDataPtr() {\r
47                 return pData_;\r
48         }\r
49         int GetLength() {\r
50                 return length_;\r
51         }\r
52 \r
53 private:\r
54         char* pData_;\r
55         int length_;\r
56 };\r
57 typedef std::tr1::shared_ptr<AudioDataChunk> AudioDataChunkPtr;\r
58 \r
59 class ISoundBufferWorker \r
60 {\r
61 public:\r
62         virtual ~ISoundBufferWorker()\r
63         {}\r
64 \r
65         virtual void Start() = 0;\r
66         virtual void Stop() = 0;\r
67 \r
68         virtual bool PushChunk(AudioDataChunkPtr) = 0;\r
69         virtual HANDLE GetWaitHandle() = 0;\r
70 };\r
71 typedef std::tr1::shared_ptr<ISoundBufferWorker> SoundBufferWorkerPtr;\r
72 \r
73 class IAudioManager \r
74 {\r
75 public:\r
76         virtual ~IAudioManager()\r
77         {}\r
78 \r
79         virtual bool CueAudio(FrameMediaController*) = 0;\r
80         virtual bool StartAudio(FrameMediaController*) = 0;\r
81         virtual bool StopAudio(FrameMediaController*) = 0;\r
82         virtual bool PushAudioData(FrameMediaController*, FramePtr) = 0;\r
83 };\r
84 \r
85 }       //namespace audio\r
86 }       //namespace caspar