1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
|
/*=========================================================================
Program: Visualization Toolkit
Module: TestFFMPEGVideoSource.cxx
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
#include "vtkActor.h"
#include "vtkCamera.h"
#include "vtkNew.h"
#include "vtkPlaneSource.h"
#include "vtkPolyDataMapper.h"
#include "vtkRenderWindow.h"
#include "vtkRenderer.h"
#include "vtkTexture.h"
#include "vtkRegressionTestImage.h"
#include "vtkRenderWindowInteractor.h"
#include "vtkTestUtilities.h"
#include "vtkLookupTable.h"
#include "vtkFFMPEGVideoSource.h"
// An example of decoding and playing audio
// Note that the tractor test video has no audio so
// not the best example :-)
#ifdef _WIN32
#include "vtkWindows.h"
#include <xaudio2.h>
namespace
{
template <typename dtype>
void copyRealData(BYTE* dest, dtype** inp, int numChannels, int numSamples, bool packed)
{
float* fdest = reinterpret_cast<float*>(dest);
if (packed)
{
dtype* iptr = inp[0];
for (int i = 0; i < numChannels * numSamples; ++i)
{
fdest[i] = iptr[i];
}
}
else
{
for (int c = 0; c < numChannels; ++c)
{
float* cdest = fdest + c;
dtype* iptr = inp[c];
for (int i = 0; i < numSamples; ++i)
{
*cdest = iptr[i];
cdest += numChannels;
}
}
}
}
}
struct StreamingVoiceContext : public IXAudio2VoiceCallback
{
HANDLE hBufferEndEvent;
StreamingVoiceContext()
: hBufferEndEvent(CreateEvent(nullptr, FALSE, FALSE, nullptr))
{
}
~StreamingVoiceContext() { CloseHandle(hBufferEndEvent); }
void OnBufferEnd(void*) { SetEvent(hBufferEndEvent); }
// Unused methods are stubs
void OnVoiceProcessingPassEnd() {}
void OnVoiceProcessingPassStart(UINT32) {}
void OnBufferStart(void*) {}
void OnLoopEnd(void*) {}
void OnVoiceError(void*, HRESULT) {}
void OnStreamEnd() {}
};
void setupAudioPlayback(vtkFFMPEGVideoSource* video)
{
IXAudio2* pXAudio2 = nullptr;
HRESULT hr;
if (FAILED(hr = XAudio2Create(&pXAudio2, 0, XAUDIO2_DEFAULT_PROCESSOR)))
{
return;
}
IXAudio2MasteringVoice* pMasterVoice = nullptr;
if (FAILED(hr = pXAudio2->CreateMasteringVoice(&pMasterVoice)))
{
return;
}
// XAUDIO2_DEBUG_CONFIGURATION debugc;
// debugc.TraceMask = XAUDIO2_LOG_ERRORS;
// debugc.BreakMask = XAUDIO2_LOG_ERRORS;
// pXAudio2->SetDebugConfiguration(&debugc, nullptr);
auto cbfunc = [pXAudio2](vtkFFMPEGVideoSourceAudioCallbackData& acbd) {
HRESULT hr;
static IXAudio2SourceVoice* pSourceVoice = nullptr;
static int currentBufferIndex = 0;
static StreamingVoiceContext aContext;
const int STREAMING_BUFFER_SIZE = 400000; // try about 48000 * 2 channels * 4 bytes
static BYTE audioBuffer[STREAMING_BUFFER_SIZE];
static int maxBufferCount = 0;
static int maxBufferSize = 0;
int destBytesPerSample = 2;
if (acbd.DataType == VTK_FLOAT || acbd.DataType == VTK_DOUBLE)
{
destBytesPerSample = 4;
}
// do we need to setup the voice?
if (!pSourceVoice)
{
// always setup for 16 bit PCM
WAVEFORMATEXTENSIBLE wfx = { 0 };
if (acbd.DataType == VTK_FLOAT || acbd.DataType == VTK_DOUBLE)
{
wfx.Format.wFormatTag = WAVE_FORMAT_IEEE_FLOAT;
}
else
{
wfx.Format.wFormatTag = WAVE_FORMAT_PCM;
}
wfx.Format.nChannels = acbd.NumberOfChannels;
wfx.Format.nSamplesPerSec = acbd.SampleRate;
wfx.Format.wBitsPerSample = 8 * destBytesPerSample;
wfx.Format.nBlockAlign = acbd.NumberOfChannels * destBytesPerSample;
wfx.Format.nAvgBytesPerSec = acbd.SampleRate * wfx.Format.nBlockAlign;
wfx.Samples.wValidBitsPerSample = wfx.Format.wBitsPerSample;
wfx.Samples.wSamplesPerBlock = acbd.NumberOfSamples;
if (FAILED(hr = pXAudio2->CreateSourceVoice(&pSourceVoice, (WAVEFORMATEX*)&wfx, 0,
XAUDIO2_DEFAULT_FREQ_RATIO, &aContext, nullptr, nullptr)))
{
return;
}
if (STREAMING_BUFFER_SIZE < wfx.Format.nBlockAlign * acbd.NumberOfSamples)
{
cerr << "buffer too small for audio data\n";
}
maxBufferSize = wfx.Format.nBlockAlign * acbd.NumberOfSamples;
maxBufferCount = STREAMING_BUFFER_SIZE / maxBufferSize;
hr = pSourceVoice->Start(0, 0);
}
if (maxBufferSize < destBytesPerSample * acbd.NumberOfSamples * acbd.NumberOfChannels)
{
cerr << "buffer too small for new audio data\n";
}
XAUDIO2_VOICE_STATE state;
while (
pSourceVoice->GetState(&state), static_cast<int>(state.BuffersQueued) >= maxBufferCount - 1)
{
cerr << "audio blocked waiting\n";
WaitForSingleObject(aContext.hBufferEndEvent, INFINITE);
}
// copy the incoming data to a buffer
BYTE* dptr = audioBuffer + maxBufferSize * currentBufferIndex;
// no copy needed
if (acbd.DataType == VTK_SHORT && acbd.Packed)
{
dptr = reinterpret_cast<BYTE*>(acbd.Data[0]);
}
if (acbd.DataType == VTK_FLOAT && acbd.Packed)
{
dptr = reinterpret_cast<BYTE*>(acbd.Data[0]);
}
if (acbd.DataType == VTK_FLOAT && !acbd.Packed)
{
copyRealData(dptr, reinterpret_cast<float**>(acbd.Data), acbd.NumberOfChannels,
acbd.NumberOfSamples, acbd.Packed);
}
if (acbd.DataType == VTK_DOUBLE)
{
copyRealData(dptr, reinterpret_cast<double**>(acbd.Data), acbd.NumberOfChannels,
acbd.NumberOfSamples, acbd.Packed);
}
XAUDIO2_BUFFER buf = { 0 };
buf.AudioBytes = acbd.NumberOfSamples * destBytesPerSample * acbd.NumberOfChannels;
buf.pAudioData = reinterpret_cast<BYTE*>(dptr);
if (acbd.Caller->GetEndOfFile())
{
buf.Flags = XAUDIO2_END_OF_STREAM;
}
pSourceVoice->SubmitSourceBuffer(&buf);
currentBufferIndex++;
if (currentBufferIndex == maxBufferCount)
{
currentBufferIndex = 0;
}
// flush last buffers?
// XAUDIO2_VOICE_STATE state;
// while( pSourceVoice->GetState( &state ), state.BuffersQueued > 0 )
// {
// WaitForSingleObjectEx( aContext.hBufferEndEvent, INFINITE, TRUE );
// }
};
video->SetAudioCallback(cbfunc, nullptr);
}
#else
void setupAudioPlayback(vtkFFMPEGVideoSource*) {}
#endif
int TestFFMPEGVideoSourceWithAudio(int argc, char* argv[])
{
vtkNew<vtkActor> actor;
vtkNew<vtkRenderer> renderer;
vtkNew<vtkPolyDataMapper> mapper;
renderer->SetBackground(0.2, 0.3, 0.4);
vtkNew<vtkRenderWindow> renderWindow;
renderWindow->SetSize(800, 450);
renderWindow->AddRenderer(renderer);
renderer->AddActor(actor);
vtkNew<vtkRenderWindowInteractor> iren;
iren->SetRenderWindow(renderWindow);
const char* fileName = vtkTestUtilities::ExpandDataFileName(argc, argv, "Data/tracktor.webm");
vtkNew<vtkFFMPEGVideoSource> video;
video->SetFileName(fileName);
delete[] fileName;
vtkNew<vtkTexture> texture;
texture->SetInputConnection(video->GetOutputPort());
actor->SetTexture(texture);
vtkNew<vtkPlaneSource> plane;
mapper->SetInputConnection(plane->GetOutputPort());
actor->SetMapper(mapper);
video->Initialize();
int fsize[3];
video->GetFrameSize(fsize);
plane->SetOrigin(0, 0, 0);
plane->SetPoint1(fsize[0], 0, 0);
plane->SetPoint2(0, fsize[1], 0);
renderWindow->Render();
renderer->GetActiveCamera()->Zoom(2.0);
setupAudioPlayback(video);
video->SetDecodingThreads(4);
video->Record();
while (!video->GetEndOfFile())
{
renderWindow->Render();
}
int retVal = vtkRegressionTestImage(renderWindow);
if (retVal == vtkRegressionTester::DO_INTERACTOR)
{
iren->Start();
}
return !retVal;
}
|