Index: /OpenSceneGraph/trunk/include/osg/Image
===================================================================
--- /OpenSceneGraph/trunk/include/osg/Image (revision 9910)
+++ /OpenSceneGraph/trunk/include/osg/Image (revision 9913)
@@ -187,5 +187,8 @@
         inline unsigned int getPacking() const { return _packing; }
 
+        /** Set the pixel aspect ratio, defined as the pixel width divided by the pixel height.*/
         inline void setPixelAspectRatio(float pixelAspectRatio) { _pixelAspectRatio = pixelAspectRatio; }
+
+        /** Get the pixel aspect ratio.*/
         inline float getPixelAspectRatio() const { return _pixelAspectRatio; }
         
Index: /OpenSceneGraph/trunk/examples/osgmovie/osgmovie.cpp
===================================================================
--- /OpenSceneGraph/trunk/examples/osgmovie/osgmovie.cpp (revision 9911)
+++ /OpenSceneGraph/trunk/examples/osgmovie/osgmovie.cpp (revision 9913)
@@ -527,6 +527,6 @@
                 osg::notify(osg::NOTICE)<<"image->s()"<<image->s()<<" image-t()="<<image->t()<<" aspectRatio="<<image->getPixelAspectRatio()<<std::endl;
 
-                float width = image->s();
-                float height = image->t() * image->getPixelAspectRatio();
+                float width = image->s() * image->getPixelAspectRatio();
+                float height = image->t();
 
                 osg::ref_ptr<osg::Drawable> drawable = myCreateTexturedQuadGeometry(pos, width, height,image, useTextureRectangle, xyPlane, flip);
