-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathofxWMFVideoPlayer.cpp
More file actions
414 lines (274 loc) · 7.97 KB
/
ofxWMFVideoPlayer.cpp
File metadata and controls
414 lines (274 loc) · 7.97 KB
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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
//ofxWMFVideoPlayer addon written by Philippe Laulheret for Second Story (secondstory.com)
//MIT Licensing
#include "ofxWMFVideoPlayerUtils.h"
#include "ofxWMFVideoPlayer.h"
typedef std::pair<HWND,ofxWMFVideoPlayer*> PlayerItem;
list<PlayerItem> g_WMFVideoPlayers;
LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam);
// Message handlers
ofxWMFVideoPlayer* findPlayers(HWND hwnd)
{
for each (PlayerItem e in g_WMFVideoPlayers)
{
if (e.first == hwnd) return e.second;
}
return NULL;
}
int ofxWMFVideoPlayer::_instanceCount=0;
ofxWMFVideoPlayer::ofxWMFVideoPlayer() : _player(NULL)
{
if (_instanceCount ==0) {
if (!ofIsGLProgrammableRenderer()){
if(wglewIsSupported("WGL_NV_DX_interop")){
ofLogVerbose("ofxWMFVideoPlayer") << "WGL_NV_DX_interop supported";
}else{
ofLogError("ofxWMFVideoPlayer") << "WGL_NV_DX_interop not supported. Upgrade your graphc drivers and try again.";
return;
}
}
HRESULT hr = MFStartup(MF_VERSION);
if (!SUCCEEDED(hr))
{
ofLog(OF_LOG_ERROR, "ofxWMFVideoPlayer: Error while loading MF");
}
}
_id = _instanceCount;
_instanceCount++;
this->InitInstance();
_waitForLoadedToPlay = false;
_sharedTextureCreated = false;
_wantToSetVolume = false;
_currentVolume = 1.0;
_frameRate = 0.0f;
}
ofxWMFVideoPlayer::~ofxWMFVideoPlayer() {
if (_player)
{
_player->Shutdown();
//if (_sharedTextureCreated) _player->m_pEVRPresenter->releaseSharedTexture();
SafeRelease(&_player);
}
cout << "Player " << _id << " Terminated" << endl;
_instanceCount--;
if (_instanceCount == 0) {
MFShutdown();
cout << "Shutting down MF" << endl;
}
}
void ofxWMFVideoPlayer::forceExit()
{
if (_instanceCount != 0)
{
cout << "Shutting down MF some ofxWMFVideoPlayer remains" << endl;
MFShutdown();
}
}
bool ofxWMFVideoPlayer:: loadMovie(string name)
{
if (!_player) {
ofLogError("ofxWMFVideoPlayer") << "Player not created. Can't open the movie.";
return false;
}
DWORD fileAttr = GetFileAttributesA(ofToDataPath(name).c_str());
if (fileAttr == INVALID_FILE_ATTRIBUTES) {
stringstream s;
s << "The video file '" << name << "'is missing.";
ofLog(OF_LOG_ERROR,"ofxWMFVideoPlayer:" + s.str());
return false;
}
//cout << "Videoplayer[" << _id << "] loading " << name << endl;
HRESULT hr = S_OK;
string s = ofToDataPath(name);
std::wstring w(s.length(), L' ');
std::copy(s.begin(), s.end(), w.begin());
hr = _player->OpenURL( w.c_str());
_frameRate = 0.0; //reset frameRate as the new movie loaded might have a different value than previous one
if (!_sharedTextureCreated)
{
_width = _player->getWidth();
_height = _player->getHeight();
_tex.allocate(_width,_height,GL_RGBA,true);
_player->m_pEVRPresenter->createSharedTexture(_width, _height,_tex.texData.textureID);
_sharedTextureCreated = true;
}
else
{
if ((_width != _player->getWidth()) || (_height != _player->getHeight()))
{
_player->m_pEVRPresenter->releaseSharedTexture();
_width = _player->getWidth();
_height = _player->getHeight();
_tex.allocate(_width,_height,GL_RGBA,true);
_player->m_pEVRPresenter->createSharedTexture(_width, _height,_tex.texData.textureID);
}
}
_waitForLoadedToPlay = false;
return false;
}
void ofxWMFVideoPlayer::draw(int x, int y , int w, int h) {
_player->m_pEVRPresenter->lockSharedTexture();
_tex.draw(x,y,w,h);
_player->m_pEVRPresenter->unlockSharedTexture();
}
bool ofxWMFVideoPlayer:: isPlaying() {
return _player->GetState() == Started;
}
bool ofxWMFVideoPlayer:: isStopped() {
return (_player->GetState() == Stopped || _player->GetState() == Paused);
}
bool ofxWMFVideoPlayer:: isPaused()
{
return _player->GetState() == Paused;
}
void ofxWMFVideoPlayer:: close() {
_player->Shutdown();
_currentVolume = 1.0;
_wantToSetVolume = false;
}
void ofxWMFVideoPlayer:: update() {
if (!_player) return;
if ((_waitForLoadedToPlay) && _player->GetState() == Paused)
{
_waitForLoadedToPlay=false;
_player->Play();
}
if ((_wantToSetVolume))
{
_player->setVolume(_currentVolume);
}
return;
}
void ofxWMFVideoPlayer:: play()
{
if (!_player) return;
if (_player->GetState() == OpenPending) _waitForLoadedToPlay = true;
_player->Play();
}
void ofxWMFVideoPlayer:: stop()
{
_player->Stop();
}
void ofxWMFVideoPlayer:: pause()
{
_player->Pause();
}
float ofxWMFVideoPlayer:: getPosition() {
return _player->getPosition();
}
float ofxWMFVideoPlayer:: getDuration() {
return _player->getDuration();
}
void ofxWMFVideoPlayer::setPosition(float pos)
{
_player->setPosition(pos);
}
void ofxWMFVideoPlayer::setVolume(float vol)
{
if ((_player ) && (_player->GetState() != OpenPending) && (_player->GetState() != Closing) && (_player->GetState() != Closed)) {
_player->setVolume(vol);
_wantToSetVolume = false;
}
else {
_wantToSetVolume = true;
}
_currentVolume = vol;
}
float ofxWMFVideoPlayer::getVolume()
{
return _player->getVolume();
}
float ofxWMFVideoPlayer::getFrameRate()
{
if (!_player) return 0.0f;
if (_frameRate == 0.0f) _frameRate = _player->getFrameRate();
return _frameRate;
}
float ofxWMFVideoPlayer::getHeight() { return _player->getHeight(); }
float ofxWMFVideoPlayer::getWidth() { return _player->getWidth(); }
void ofxWMFVideoPlayer::setLoop(bool isLooping) { _isLooping = isLooping; _player->setLooping(isLooping); }
//-----------------------------------
// Prvate Functions
//-----------------------------------
// Handler for Media Session events.
void ofxWMFVideoPlayer::OnPlayerEvent(HWND hwnd, WPARAM pUnkPtr)
{
HRESULT hr = _player->HandleEvent(pUnkPtr);
if (FAILED(hr))
{
ofLogError("ofxWMFVideoPlayer", "An error occurred.");
}
}
LRESULT CALLBACK WndProcDummy(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
{
switch (message)
{
case WM_CREATE:
{
return DefWindowProc(hwnd, message, wParam, lParam);
}
default:
{
ofxWMFVideoPlayer* myPlayer = findPlayers(hwnd);
if (!myPlayer) return DefWindowProc(hwnd, message, wParam, lParam);
return myPlayer->WndProc (hwnd, message, wParam, lParam);
}
}
return 0;
}
LRESULT ofxWMFVideoPlayer::WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
{
switch (message)
{
case WM_DESTROY:
PostQuitMessage(0);
break;
case WM_APP_PLAYER_EVENT:
OnPlayerEvent(hwnd, wParam);
break;
default:
return DefWindowProc(hwnd, message, wParam, lParam);
}
return 0;
}
// Create the application window.
BOOL ofxWMFVideoPlayer::InitInstance()
{
PCWSTR szWindowClass = L"MFBASICPLAYBACK" ;
HWND hwnd;
WNDCLASSEX wcex;
// g_hInstance = hInst; // Store the instance handle.
// Register the window class.
ZeroMemory(&wcex, sizeof(WNDCLASSEX));
wcex.cbSize = sizeof(WNDCLASSEX);
wcex.style = CS_HREDRAW | CS_VREDRAW ;
wcex.lpfnWndProc = WndProcDummy;
// wcex.hInstance = hInst;
wcex.hbrBackground = (HBRUSH)(BLACK_BRUSH);
// wcex.lpszMenuName = MAKEINTRESOURCE(IDC_MFPLAYBACK);
wcex.lpszClassName = szWindowClass;
if (RegisterClassEx(&wcex) == 0)
{
// return FALSE;
}
// Create the application window.
hwnd = CreateWindow(szWindowClass, L"", WS_OVERLAPPEDWINDOW,
CW_USEDEFAULT, 0, CW_USEDEFAULT, 0, NULL, NULL, NULL, NULL);
if (hwnd == 0)
{
return FALSE;
}
g_WMFVideoPlayers.push_back(std::pair<HWND,ofxWMFVideoPlayer*>(hwnd,this));
HRESULT hr = CPlayer::CreateInstance(hwnd, hwnd, &_player);
LONG style2 = ::GetWindowLong(hwnd, GWL_STYLE);
style2 &= ~WS_DLGFRAME;
style2 &= ~WS_CAPTION;
style2 &= ~WS_BORDER;
style2 &= WS_POPUP;
LONG exstyle2 = ::GetWindowLong(hwnd, GWL_EXSTYLE);
exstyle2 &= ~WS_EX_DLGMODALFRAME;
::SetWindowLong(hwnd, GWL_STYLE, style2);
::SetWindowLong(hwnd, GWL_EXSTYLE, exstyle2);
_hwndPlayer = hwnd;
UpdateWindow(hwnd);
return TRUE;
}