summaryrefslogtreecommitdiff
path: root/rotord/src/rotor.cpp
diff options
context:
space:
mode:
authorComment <tim@gray.(none)>2013-08-16 00:56:32 +0100
committerComment <tim@gray.(none)>2013-08-16 00:56:32 +0100
commit1af93fbfe4c8cfa214331d2d96327637ffe749bf (patch)
treef452a61b83e16993c5b4702f3a46c85d7d0829b6 /rotord/src/rotor.cpp
parentf91c866884819bee50b39b7b370209ef6b94ec53 (diff)
adding render log
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;
}