diff options
| author | Comment <tim@gray.(none)> | 2013-08-16 00:56:32 +0100 |
|---|---|---|
| committer | Comment <tim@gray.(none)> | 2013-08-16 00:56:32 +0100 |
| commit | 1af93fbfe4c8cfa214331d2d96327637ffe749bf (patch) | |
| tree | f452a61b83e16993c5b4702f3a46c85d7d0829b6 /rotord/src/rotor.cpp | |
| parent | f91c866884819bee50b39b7b370209ef6b94ec53 (diff) | |
adding render log
Diffstat (limited to 'rotord/src/rotor.cpp')
| -rwxr-xr-x | rotord/src/rotor.cpp | 6 |
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; } |
