Hi all,

Just been fixing what seems to be a bug in the MovieData.cpp, file to stop the Plugin from adding extra pixels to the width of a movie which has a width that is not a multiple of 8:

 _textureWidth = ((_movieWidth + 7) >> 3) << 3;

Does anyone know why this is used?

I have tried changing it to just:
_textureWidth = _movieWidth;

and it seems to compile and run on my mac without the added black line.
Has anyone else found this problem with QuickTime movies before?

Thanks for everything!

Kind regards,
Martin

_______________________________________________
osg-users mailing list
[email protected]
http://openscenegraph.net/mailman/listinfo/osg-users
http://www.openscenegraph.org/

Reply via email to