]>
Commit | Line | Data |
---|---|---|
ff4aedc5 | 1 | ///////////////////////////////////////////////////////////////////////////// |
32d4c30a | 2 | // Name: src/common/mediactrl.cpp |
ff4aedc5 RN |
3 | // Purpose: wxMediaCtrl common code |
4 | // Author: Ryan Norton <wxprojects@comcast.net> | |
5 | // Modified by: | |
6 | // Created: 11/07/04 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Ryan Norton | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
557002cf VZ |
12 | // TODO: Platform specific backend defaults? |
13 | ||
ff4aedc5 RN |
14 | //=========================================================================== |
15 | // Definitions | |
16 | //=========================================================================== | |
17 | ||
18 | //--------------------------------------------------------------------------- | |
19 | // Pre-compiled header stuff | |
20 | //--------------------------------------------------------------------------- | |
21 | ||
ff4aedc5 RN |
22 | #include "wx/wxprec.h" |
23 | ||
24 | #ifdef __BORLANDC__ | |
32d4c30a WS |
25 | #pragma hdrstop |
26 | #endif | |
27 | ||
28 | #if wxUSE_MEDIACTRL | |
29 | ||
30 | #ifndef WX_PRECOMP | |
31 | #include "wx/hash.h" | |
ff4aedc5 RN |
32 | #endif |
33 | ||
34 | //--------------------------------------------------------------------------- | |
35 | // Includes | |
36 | //--------------------------------------------------------------------------- | |
37 | #include "wx/mediactrl.h" | |
ff4aedc5 RN |
38 | |
39 | //=========================================================================== | |
40 | // | |
41 | // Implementation | |
226ec5a7 | 42 | // |
ff4aedc5 RN |
43 | //=========================================================================== |
44 | ||
45 | //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | |
46 | // RTTI and Event implementations | |
47 | //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | |
48 | ||
f74fd79b | 49 | IMPLEMENT_CLASS(wxMediaCtrl, wxControl) |
557002cf VZ |
50 | DEFINE_EVENT_TYPE(wxEVT_MEDIA_STATECHANGED) |
51 | DEFINE_EVENT_TYPE(wxEVT_MEDIA_PLAY) | |
52 | DEFINE_EVENT_TYPE(wxEVT_MEDIA_PAUSE) | |
f74fd79b VZ |
53 | IMPLEMENT_CLASS(wxMediaBackend, wxObject) |
54 | IMPLEMENT_DYNAMIC_CLASS(wxMediaEvent, wxEvent) | |
55 | DEFINE_EVENT_TYPE(wxEVT_MEDIA_FINISHED) | |
56 | DEFINE_EVENT_TYPE(wxEVT_MEDIA_LOADED) | |
57 | DEFINE_EVENT_TYPE(wxEVT_MEDIA_STOP) | |
ff4aedc5 RN |
58 | |
59 | //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | |
60 | // | |
61 | // wxMediaCtrl | |
62 | // | |
63 | //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | |
64 | ||
38647faa WS |
65 | //--------------------------------------------------------------------------- |
66 | // wxMediaBackend Destructor | |
67 | // | |
68 | // This is here because the DARWIN gcc compiler badly screwed up and | |
69 | // needs the destructor implementation in the source | |
70 | //--------------------------------------------------------------------------- | |
71 | wxMediaBackend::~wxMediaBackend() | |
72 | { | |
73 | } | |
74 | ||
ff4aedc5 RN |
75 | //--------------------------------------------------------------------------- |
76 | // wxMediaCtrl::Create (file version) | |
77 | // wxMediaCtrl::Create (URL version) | |
78 | // | |
79 | // Searches for a backend that is installed on the system (backends | |
80 | // starting with lower characters in the alphabet are given priority), | |
81 | // and creates the control from it | |
226ec5a7 | 82 | // |
ff4aedc5 RN |
83 | // This searches by searching the global RTTI hashtable, class by class, |
84 | // attempting to call CreateControl on each one found that is a derivative | |
9180b535 | 85 | // of wxMediaBackend - if it succeeded Create returns true, otherwise |
ff4aedc5 RN |
86 | // it keeps iterating through the hashmap. |
87 | //--------------------------------------------------------------------------- | |
88 | bool wxMediaCtrl::Create(wxWindow* parent, wxWindowID id, | |
89 | const wxString& fileName, | |
226ec5a7 | 90 | const wxPoint& pos, |
ff4aedc5 | 91 | const wxSize& size, |
226ec5a7 | 92 | long style, |
ff4aedc5 RN |
93 | const wxString& szBackend, |
94 | const wxValidator& validator, | |
95 | const wxString& name) | |
96 | { | |
97 | if(!szBackend.empty()) | |
98 | { | |
38647faa WS |
99 | wxClassInfo* pClassInfo = wxClassInfo::FindClass(szBackend); |
100 | ||
101 | if(!pClassInfo || !DoCreate(pClassInfo, parent, id, | |
102 | pos, size, style, validator, name)) | |
ff4aedc5 RN |
103 | { |
104 | m_imp = NULL; | |
105 | return false; | |
106 | } | |
107 | ||
108 | if (!fileName.empty()) | |
109 | { | |
4ac61319 | 110 | if (!Load(fileName)) |
ff4aedc5 RN |
111 | { |
112 | delete m_imp; | |
113 | m_imp = NULL; | |
114 | return false; | |
115 | } | |
116 | } | |
117 | ||
170acdc9 | 118 | SetInitialSize(size); |
ff4aedc5 RN |
119 | return true; |
120 | } | |
121 | else | |
122 | { | |
123 | wxClassInfo::sm_classTable->BeginFind(); | |
124 | ||
f8fe8a9e | 125 | wxClassInfo* classInfo; |
ff4aedc5 | 126 | |
f8fe8a9e | 127 | while((classInfo = NextBackend()) != NULL) |
ff4aedc5 RN |
128 | { |
129 | if(!DoCreate(classInfo, parent, id, | |
130 | pos, size, style, validator, name)) | |
226ec5a7 | 131 | continue; |
ff4aedc5 RN |
132 | |
133 | if (!fileName.empty()) | |
134 | { | |
4ac61319 RN |
135 | if (Load(fileName)) |
136 | { | |
170acdc9 | 137 | SetInitialSize(size); |
ff4aedc5 | 138 | return true; |
4ac61319 | 139 | } |
ff4aedc5 RN |
140 | else |
141 | delete m_imp; | |
142 | } | |
143 | else | |
4ac61319 | 144 | { |
170acdc9 | 145 | SetInitialSize(size); |
ff4aedc5 | 146 | return true; |
4ac61319 | 147 | } |
ff4aedc5 RN |
148 | } |
149 | ||
150 | m_imp = NULL; | |
151 | return false; | |
152 | } | |
153 | } | |
154 | ||
155 | bool wxMediaCtrl::Create(wxWindow* parent, wxWindowID id, | |
38647faa WS |
156 | const wxURI& location, |
157 | const wxPoint& pos, | |
158 | const wxSize& size, | |
159 | long style, | |
160 | const wxString& szBackend, | |
161 | const wxValidator& validator, | |
162 | const wxString& name) | |
ff4aedc5 RN |
163 | { |
164 | if(!szBackend.empty()) | |
165 | { | |
38647faa WS |
166 | wxClassInfo* pClassInfo = wxClassInfo::FindClass(szBackend); |
167 | if(!pClassInfo || !DoCreate(pClassInfo, parent, id, | |
168 | pos, size, style, validator, name)) | |
ff4aedc5 RN |
169 | { |
170 | m_imp = NULL; | |
171 | return false; | |
172 | } | |
173 | ||
4ac61319 | 174 | if (!Load(location)) |
ff4aedc5 RN |
175 | { |
176 | delete m_imp; | |
177 | m_imp = NULL; | |
178 | return false; | |
179 | } | |
180 | ||
170acdc9 | 181 | SetInitialSize(size); |
ff4aedc5 RN |
182 | return true; |
183 | } | |
184 | else | |
185 | { | |
186 | wxClassInfo::sm_classTable->BeginFind(); | |
187 | ||
f8fe8a9e | 188 | wxClassInfo* classInfo; |
ff4aedc5 | 189 | |
f8fe8a9e | 190 | while((classInfo = NextBackend()) != NULL) |
ff4aedc5 RN |
191 | { |
192 | if(!DoCreate(classInfo, parent, id, | |
193 | pos, size, style, validator, name)) | |
226ec5a7 | 194 | continue; |
ff4aedc5 | 195 | |
4ac61319 RN |
196 | if (Load(location)) |
197 | { | |
170acdc9 | 198 | SetInitialSize(size); |
ff4aedc5 | 199 | return true; |
4ac61319 | 200 | } |
ff4aedc5 RN |
201 | else |
202 | delete m_imp; | |
ff4aedc5 RN |
203 | } |
204 | ||
205 | m_imp = NULL; | |
206 | return false; | |
207 | } | |
208 | } | |
209 | ||
210 | //--------------------------------------------------------------------------- | |
211 | // wxMediaCtrl::DoCreate | |
212 | // | |
213 | // Attempts to create the control from a backend | |
214 | //--------------------------------------------------------------------------- | |
215 | bool wxMediaCtrl::DoCreate(wxClassInfo* classInfo, | |
216 | wxWindow* parent, wxWindowID id, | |
226ec5a7 | 217 | const wxPoint& pos, |
ff4aedc5 | 218 | const wxSize& size, |
226ec5a7 | 219 | long style, |
ff4aedc5 RN |
220 | const wxValidator& validator, |
221 | const wxString& name) | |
222 | { | |
223 | m_imp = (wxMediaBackend*)classInfo->CreateObject(); | |
226ec5a7 | 224 | |
ff4aedc5 RN |
225 | if( m_imp->CreateControl(this, parent, id, pos, size, |
226 | style, validator, name) ) | |
227 | { | |
ff4aedc5 RN |
228 | return true; |
229 | } | |
226ec5a7 | 230 | |
ff4aedc5 RN |
231 | delete m_imp; |
232 | return false; | |
233 | } | |
234 | ||
235 | //--------------------------------------------------------------------------- | |
557002cf | 236 | // wxMediaCtrl::NextBackend (static) |
ff4aedc5 RN |
237 | // |
238 | // | |
239 | // Search through the RTTI hashmap one at a | |
240 | // time, attempting to create each derivative | |
241 | // of wxMediaBackend | |
226ec5a7 | 242 | // |
ff4aedc5 | 243 | // |
43e8916f | 244 | // STL isn't compatible with and will have a compilation error |
ff4aedc5 RN |
245 | // on a wxNode, however, wxHashTable::compatibility_iterator is |
246 | // incompatible with the old 2.4 stable version - but since | |
557002cf | 247 | // we're in 2.5+ only we don't need to worry about the new version |
ff4aedc5 RN |
248 | //--------------------------------------------------------------------------- |
249 | wxClassInfo* wxMediaCtrl::NextBackend() | |
250 | { | |
251 | wxHashTable::compatibility_iterator | |
252 | node = wxClassInfo::sm_classTable->Next(); | |
253 | while (node) | |
254 | { | |
255 | wxClassInfo* classInfo = (wxClassInfo *)node->GetData(); | |
256 | if ( classInfo->IsKindOf(CLASSINFO(wxMediaBackend)) && | |
257 | classInfo != CLASSINFO(wxMediaBackend) ) | |
258 | { | |
259 | return classInfo; | |
260 | } | |
261 | node = wxClassInfo::sm_classTable->Next(); | |
262 | } | |
263 | ||
264 | // | |
265 | // Nope - couldn't successfully find one... fail | |
266 | // | |
267 | return NULL; | |
268 | } | |
269 | ||
270 | ||
271 | //--------------------------------------------------------------------------- | |
272 | // wxMediaCtrl Destructor | |
273 | // | |
274 | // Free up the backend if it exists | |
275 | //--------------------------------------------------------------------------- | |
276 | wxMediaCtrl::~wxMediaCtrl() | |
277 | { | |
278 | if (m_imp) | |
279 | delete m_imp; | |
280 | } | |
281 | ||
282 | //--------------------------------------------------------------------------- | |
283 | // wxMediaCtrl::Load (file version) | |
284 | // wxMediaCtrl::Load (URL version) | |
c5191fbd VZ |
285 | // wxMediaCtrl::Load (URL & Proxy version) |
286 | // wxMediaCtrl::Load (wxInputStream version) | |
ff4aedc5 RN |
287 | // |
288 | // Here we call load of the backend - keeping | |
289 | // track of whether it was successful or not - which | |
290 | // will determine which later method calls work | |
291 | //--------------------------------------------------------------------------- | |
292 | bool wxMediaCtrl::Load(const wxString& fileName) | |
293 | { | |
294 | if(m_imp) | |
295 | return (m_bLoaded = m_imp->Load(fileName)); | |
296 | return false; | |
297 | } | |
298 | ||
299 | bool wxMediaCtrl::Load(const wxURI& location) | |
300 | { | |
301 | if(m_imp) | |
302 | return (m_bLoaded = m_imp->Load(location)); | |
303 | return false; | |
304 | } | |
305 | ||
c5191fbd VZ |
306 | bool wxMediaCtrl::Load(const wxURI& location, const wxURI& proxy) |
307 | { | |
308 | if(m_imp) | |
309 | return (m_bLoaded = m_imp->Load(location, proxy)); | |
310 | return false; | |
311 | } | |
312 | ||
ff4aedc5 RN |
313 | //--------------------------------------------------------------------------- |
314 | // wxMediaCtrl::Play | |
315 | // wxMediaCtrl::Pause | |
316 | // wxMediaCtrl::Stop | |
317 | // wxMediaCtrl::GetPlaybackRate | |
318 | // wxMediaCtrl::SetPlaybackRate | |
9180b535 RN |
319 | // wxMediaCtrl::Seek --> SetPosition |
320 | // wxMediaCtrl::Tell --> GetPosition | |
321 | // wxMediaCtrl::Length --> GetDuration | |
ff4aedc5 RN |
322 | // wxMediaCtrl::GetState |
323 | // wxMediaCtrl::DoGetBestSize | |
6f8c67e7 JS |
324 | // wxMediaCtrl::SetVolume |
325 | // wxMediaCtrl::GetVolume | |
c5191fbd VZ |
326 | // wxMediaCtrl::ShowInterface |
327 | // wxMediaCtrl::GetDownloadProgress | |
328 | // wxMediaCtrl::GetDownloadTotal | |
226ec5a7 | 329 | // |
ff4aedc5 RN |
330 | // 1) Check to see whether the backend exists and is loading |
331 | // 2) Call the backend's version of the method, returning success | |
332 | // if the backend's version succeeds | |
333 | //--------------------------------------------------------------------------- | |
334 | bool wxMediaCtrl::Play() | |
335 | { | |
336 | if(m_imp && m_bLoaded) | |
337 | return m_imp->Play(); | |
338 | return 0; | |
339 | } | |
340 | ||
341 | bool wxMediaCtrl::Pause() | |
342 | { | |
343 | if(m_imp && m_bLoaded) | |
344 | return m_imp->Pause(); | |
345 | return 0; | |
346 | } | |
347 | ||
348 | bool wxMediaCtrl::Stop() | |
349 | { | |
350 | if(m_imp && m_bLoaded) | |
351 | return m_imp->Stop(); | |
352 | return 0; | |
353 | } | |
354 | ||
355 | double wxMediaCtrl::GetPlaybackRate() | |
356 | { | |
357 | if(m_imp && m_bLoaded) | |
358 | return m_imp->GetPlaybackRate(); | |
359 | return 0; | |
360 | } | |
361 | ||
362 | bool wxMediaCtrl::SetPlaybackRate(double dRate) | |
363 | { | |
364 | if(m_imp && m_bLoaded) | |
365 | return m_imp->SetPlaybackRate(dRate); | |
366 | return false; | |
367 | } | |
368 | ||
9180b535 | 369 | wxFileOffset wxMediaCtrl::Seek(wxFileOffset where, wxSeekMode mode) |
ff4aedc5 | 370 | { |
9180b535 RN |
371 | wxFileOffset offset; |
372 | ||
373 | switch (mode) | |
374 | { | |
375 | case wxFromStart: | |
376 | offset = where; | |
377 | break; | |
378 | case wxFromEnd: | |
379 | offset = Length() - where; | |
380 | break; | |
381 | // case wxFromCurrent: | |
382 | default: | |
383 | offset = Tell() + where; | |
384 | break; | |
385 | } | |
386 | ||
387 | if(m_imp && m_bLoaded && m_imp->SetPosition(offset)) | |
388 | return offset; | |
389 | return wxInvalidOffset; | |
ff4aedc5 RN |
390 | } |
391 | ||
9180b535 | 392 | wxFileOffset wxMediaCtrl::Tell() |
ff4aedc5 RN |
393 | { |
394 | if(m_imp && m_bLoaded) | |
9180b535 RN |
395 | return (wxFileOffset) m_imp->GetPosition().ToLong(); |
396 | return wxInvalidOffset; | |
ff4aedc5 RN |
397 | } |
398 | ||
9180b535 | 399 | wxFileOffset wxMediaCtrl::Length() |
ff4aedc5 RN |
400 | { |
401 | if(m_imp && m_bLoaded) | |
9180b535 RN |
402 | return (wxFileOffset) m_imp->GetDuration().ToLong(); |
403 | return wxInvalidOffset; | |
ff4aedc5 RN |
404 | } |
405 | ||
406 | wxMediaState wxMediaCtrl::GetState() | |
407 | { | |
408 | if(m_imp && m_bLoaded) | |
409 | return m_imp->GetState(); | |
410 | return wxMEDIASTATE_STOPPED; | |
411 | } | |
412 | ||
413 | wxSize wxMediaCtrl::DoGetBestSize() const | |
414 | { | |
415 | if(m_imp) | |
416 | return m_imp->GetVideoSize(); | |
c47addef | 417 | return wxSize(0,0); |
ff4aedc5 RN |
418 | } |
419 | ||
32d4c30a | 420 | double wxMediaCtrl::GetVolume() |
6f8c67e7 JS |
421 | { |
422 | if(m_imp && m_bLoaded) | |
423 | return m_imp->GetVolume(); | |
424 | return 0.0; | |
425 | } | |
426 | ||
32d4c30a | 427 | bool wxMediaCtrl::SetVolume(double dVolume) |
6f8c67e7 JS |
428 | { |
429 | if(m_imp && m_bLoaded) | |
430 | return m_imp->SetVolume(dVolume); | |
431 | return false; | |
432 | } | |
433 | ||
32d4c30a | 434 | bool wxMediaCtrl::ShowPlayerControls(wxMediaCtrlPlayerControls flags) |
c5191fbd VZ |
435 | { |
436 | if(m_imp) | |
437 | return m_imp->ShowPlayerControls(flags); | |
438 | return false; | |
439 | } | |
440 | ||
441 | wxFileOffset wxMediaCtrl::GetDownloadProgress() | |
442 | { | |
443 | if(m_imp && m_bLoaded) | |
444 | return (wxFileOffset) m_imp->GetDownloadProgress().ToLong(); | |
445 | return wxInvalidOffset; | |
446 | } | |
447 | ||
448 | wxFileOffset wxMediaCtrl::GetDownloadTotal() | |
449 | { | |
450 | if(m_imp && m_bLoaded) | |
451 | return (wxFileOffset) m_imp->GetDownloadTotal().ToLong(); | |
452 | return wxInvalidOffset; | |
453 | } | |
454 | ||
ff4aedc5 RN |
455 | //--------------------------------------------------------------------------- |
456 | // wxMediaCtrl::DoMoveWindow | |
226ec5a7 | 457 | // |
ff4aedc5 RN |
458 | // 1) Call parent's version so that our control's window moves where |
459 | // it's supposed to | |
460 | // 2) If the backend exists and is loaded, move the video | |
461 | // of the media to where our control's window is now located | |
462 | //--------------------------------------------------------------------------- | |
463 | void wxMediaCtrl::DoMoveWindow(int x, int y, int w, int h) | |
464 | { | |
465 | wxControl::DoMoveWindow(x,y,w,h); | |
466 | ||
467 | if(m_imp) | |
468 | m_imp->Move(x, y, w, h); | |
469 | } | |
470 | ||
0c81ef7f SC |
471 | //--------------------------------------------------------------------------- |
472 | // wxMediaCtrl::MacVisibilityChanged | |
473 | //--------------------------------------------------------------------------- | |
474 | #ifdef __WXMAC__ | |
475 | void wxMediaCtrl::MacVisibilityChanged() | |
476 | { | |
477 | wxControl::MacVisibilityChanged(); | |
32d4c30a | 478 | |
0c81ef7f | 479 | if(m_imp) |
32d4c30a | 480 | m_imp->MacVisibilityChanged(); |
0c81ef7f SC |
481 | } |
482 | #endif | |
483 | ||
bf354396 VZ |
484 | //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
485 | // | |
486 | // wxMediaBackendCommonBase | |
487 | // | |
488 | //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | |
489 | ||
490 | void wxMediaBackendCommonBase::NotifyMovieSizeChanged() | |
491 | { | |
492 | // our best size changed after opening a new file | |
493 | m_ctrl->InvalidateBestSize(); | |
494 | m_ctrl->SetSize(m_ctrl->GetSize()); | |
495 | ||
496 | // if the parent of the control has a sizer ask it to refresh our size | |
497 | wxWindow * const parent = m_ctrl->GetParent(); | |
498 | if ( parent->GetSizer() ) | |
499 | { | |
500 | m_ctrl->GetParent()->Layout(); | |
501 | m_ctrl->GetParent()->Refresh(); | |
502 | m_ctrl->GetParent()->Update(); | |
503 | } | |
504 | } | |
505 | ||
506 | void wxMediaBackendCommonBase::NotifyMovieLoaded() | |
507 | { | |
508 | NotifyMovieSizeChanged(); | |
509 | ||
510 | // notify about movie being fully loaded | |
511 | QueueEvent(wxEVT_MEDIA_LOADED); | |
512 | } | |
513 | ||
514 | bool wxMediaBackendCommonBase::SendStopEvent() | |
515 | { | |
516 | wxMediaEvent theEvent(wxEVT_MEDIA_STOP, m_ctrl->GetId()); | |
517 | ||
518 | return !m_ctrl->ProcessEvent(theEvent) || theEvent.IsAllowed(); | |
519 | } | |
520 | ||
521 | void wxMediaBackendCommonBase::QueueEvent(wxEventType evtType) | |
522 | { | |
523 | wxMediaEvent theEvent(evtType, m_ctrl->GetId()); | |
524 | m_ctrl->AddPendingEvent(theEvent); | |
525 | } | |
526 | ||
557002cf VZ |
527 | void wxMediaBackendCommonBase::QueuePlayEvent() |
528 | { | |
529 | QueueEvent(wxEVT_MEDIA_STATECHANGED); | |
530 | QueueEvent(wxEVT_MEDIA_PLAY); | |
531 | } | |
532 | ||
533 | void wxMediaBackendCommonBase::QueuePauseEvent() | |
534 | { | |
535 | QueueEvent(wxEVT_MEDIA_STATECHANGED); | |
536 | QueueEvent(wxEVT_MEDIA_PAUSE); | |
537 | } | |
538 | ||
539 | void wxMediaBackendCommonBase::QueueStopEvent() | |
540 | { | |
541 | QueueEvent(wxEVT_MEDIA_STATECHANGED); | |
542 | QueueEvent(wxEVT_MEDIA_STOP); | |
543 | } | |
544 | ||
545 | ||
546 | // | |
547 | // Force link default backends in - | |
548 | // see http://wiki.wxwidgets.org/wiki.pl?RTTI | |
549 | // | |
02250fa1 | 550 | #include "wx/html/forcelnk.h" |
ff4aedc5 | 551 | |
557002cf | 552 | #ifdef __WXMSW__ // MSW has huge backends so we do it seperately |
f74fd79b VZ |
553 | FORCE_LINK(wxmediabackend_am) |
554 | FORCE_LINK(wxmediabackend_wmp10) | |
557002cf | 555 | #else |
f74fd79b | 556 | FORCE_LINK(basewxmediabackends) |
557002cf | 557 | #endif |
ff4aedc5 | 558 | |
32d4c30a | 559 | #endif //wxUSE_MEDIACTRL |