summaryrefslogtreecommitdiff
path: root/rotord/rotor.cpp
diff options
context:
space:
mode:
authorTim Redfern <tim@herge.(none)>2013-07-15 15:47:48 +0100
committerTim Redfern <tim@herge.(none)>2013-07-15 15:47:48 +0100
commit6fe1b6e664f2a5d26e5ace7c7082169b656eef05 (patch)
treecd7873d3121bba7b8345a6c295b1bbff382f57a4 /rotord/rotor.cpp
parent512cd1f386b40a6539663bcda987b851cbc8ba7f (diff)
transform node working
Diffstat (limited to 'rotord/rotor.cpp')
-rwxr-xr-xrotord/rotor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/rotord/rotor.cpp b/rotord/rotor.cpp
index 36ce750..90d23d9 100755
--- a/rotord/rotor.cpp
+++ b/rotord/rotor.cpp
@@ -336,7 +336,7 @@ Image* Video_loader::output(const Frame_spec &frame){
if (image.w>0) return &image; //just return the previous frame if possible
else return nullptr;
};
- cerr<<"setting up frame: lineoffset="<<(player.pFrameRGB->linesize[0]-(frame.w*3))<<endl;
+ //cerr<<"Video_loader: setting up frame: lineoffset="<<(player.pFrameRGB->linesize[0]-(frame.w*3))<<endl;
image.setup_fromRGB(frame.w,frame.h,player.pFrameRGB->data[0],player.pFrameRGB->linesize[0]-(frame.w*3));
return &image;
}