summaryrefslogtreecommitdiff
path: root/rotord/src/rotor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'rotord/src/rotor.cpp')
-rwxr-xr-xrotord/src/rotor.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/rotord/src/rotor.cpp b/rotord/src/rotor.cpp
index 99fe396..5f6d6b3 100755
--- a/rotord/src/rotor.cpp
+++ b/rotord/src/rotor.cpp
@@ -269,7 +269,11 @@ bool Video_loader::load(const string &_filename){
string uri="file://"+_filename;
isLoaded=player.open(uri);
if (isLoaded){
- logger.information("Video_loader loaded "+_filename+": "+ofToString(player.getNumberOfFrames())+" frames, "+ofToString(player.getFrameRate())+" fps, "+ofToString(player.getWidth())+"x"+ofToString(player.getHeight()));
+ logger.information("Video_loader loaded "+_filename+": "\
+ +ofToString(player.getNumberOfFrames())+" frames, "\
+ +ofToString(player.getFrameRate())+" fps, "\
+ +ofToString(player.getWidth())+"x"+ofToString(player.getHeight())\
+ +", channels:"+ofToString(player.getNumberOfChannels()));
return true;
}