JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
WinAudioTool.cpp
Go to the documentation of this file.
1
2//#include "WinBaseLib.h"
3#include "WinAudioTool.h"
4
5/*
6一般のマイク用オーディオツール
7
8作成中
9参考  KinectAudio
10*/
11
12
13using namespace jbxl;
14using namespace jbxwl;
15
16
18{
19 m_audioStream = NULL;
20 m_audioMedia = NULL;
21 m_audioProperty = NULL;
22 m_pStream = NULL;
23
24 //
25 init();
26}
27
28
29
31{
32 DEBUG_INFO("DESTRUCTOR: CWinAudioTool: START\n");
33
34 free();
35
36 DEBUG_INFO("DESTRUCTOR: CWinAudioTool: END\n");
37}
38
39
40
42{
43 free();
44
45// if (SUCCEEDED(hr)) hr = m_audioSource->QueryInterface(IID_IMediaObject, (void**)&m_audioMedia);
46// if (SUCCEEDED(hr)) hr = m_audioSource->QueryInterface(IID_IPropertyStore, (void**)&m_audioProperty);
47 //
48 //BOOL ret = setProperty(mode);
49 BOOL ret = setMediaType();
50 if (ret) {
52 m_audioStream->QueryInterface(IID_IStream, (void**)&m_pStream);
53 return TRUE;
54 }
55
56 return FALSE;
57}
58
59
60
69
70
71
73{
74 if (m_audioMedia==NULL) return FALSE;
75
76 DMO_MEDIA_TYPE mt = {0};
77 MoInitMediaType(&mt, sizeof(WAVEFORMATEX));
78 mt.majortype = MEDIATYPE_Audio;
79 mt.subtype = MEDIASUBTYPE_PCM;
80 mt.lSampleSize = 0;
81 mt.bFixedSizeSamples = TRUE;
82 mt.bTemporalCompression = FALSE;
83 mt.formattype = FORMAT_WaveFormatEx;
84 memcpy(mt.pbFormat, &getAudioFormat(), sizeof(WAVEFORMATEX));
85
86 HRESULT hr = m_audioMedia->SetOutputType(0, &mt, 0);
87 MoFreeMediaType(&mt);
88
89 if (FAILED(hr)) return FALSE;
90 return TRUE;
91
92 //
93 if (SUCCEEDED(hr)) {
95 m_audioStream->QueryInterface(IID_IStream, (void**)&m_pStream);
96 }
97}
98
99
100
102{
103 if (m_pStream==NULL || pbuf==NULL) return;
104
105 ULONG len = 0;
106
107 m_pStream->Read((void*)pbuf->buf, (ULONG)pbuf->bufsz, &len);
108 pbuf->vldsz = (int)len;
109
110 return;
111}
112
113
114
116{
117 WORD blockAlign = ((WinAudioToolBitsPerSample+7)/8)*WinAudioToolChannels;
118 DWORD avgBytesPerSec = blockAlign*WinAudioToolSamplesPerSec;
119
120 WAVEFORMATEX format = {
122 avgBytesPerSec, blockAlign, WinAudioToolBitsPerSample, 0
123 };
124 return format;
125}
126
127
STDMETHODIMP QueryInterface(REFIID riid, void **ppv)
virtual ~CWinAudioTool(void)
IPropertyStore * m_audioProperty
WAVEFORMATEX getAudioFormat(void)
CWinAudioStream * m_audioStream
Buffer getAudioData(void)
IMediaObject * m_audioMedia
void deleteNull(T *&ptr)
Definition WinTools.h:229
static const WORD WinAudioToolFormat
static const DWORD WinAudioToolSamplesPerSec
void releaseNull(T *&ptr)
Definition WinTools.h:220
static const WORD WinAudioToolChannels
static const WORD WinAudioToolBitsPerSample