diff --git a/src/apps/mediaplayer/Controller.cpp b/src/apps/mediaplayer/Controller.cpp index 39bc9a9981..7182bf8a8f 100644 --- a/src/apps/mediaplayer/Controller.cpp +++ b/src/apps/mediaplayer/Controller.cpp @@ -20,6 +20,7 @@ */ #include "Controller.h" +#include #include #include #include @@ -41,6 +42,8 @@ #include "MediaTrackVideoSupplier.h" #include "VideoSupplier.h" +using std::nothrow; + #define AUDIO_PLAY_PRIORITY 110 #define VIDEO_PLAY_PRIORITY 20 @@ -73,6 +76,7 @@ void Controller::Listener::PlaybackStateChanged(uint32) {} void Controller::Listener::PositionChanged(float) {} void Controller::Listener::VolumeChanged(float) {} + // #pragma mark - @@ -84,8 +88,10 @@ Controller::Controller() , fVolume(1.0) , fMediaFile(0) +// TODO: remove, InfoWin depends on it but should be fixed ,fAudioTrack(0) ,fVideoTrack(0) +// , fDataLock("controller data lock") , fVideoSupplier(NULL)