MCPcopy Create free account
hub / github.com/TombEngine/TombEngine / Resume

Method Resume

TombEngine/Specific/Video/Video.cpp:344–359  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

342 }
343
344 bool VideoHandler::Resume()
345 {
346 if (_player == nullptr)
347 return false;
348
349 if (libvlc_media_player_get_state(_player) == libvlc_Paused)
350 {
351 libvlc_media_player_play(_player);
352 HandleError();
353
354 return (_playbackMode == VideoPlaybackMode::Exclusive);
355 }
356
357 HandleError();
358 return false;
359 }
360
361 void VideoHandler::Stop()
362 {

Callers 3

WinAppProcFunction · 0.80
CallPauseMethod · 0.80
CallInventoryMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected