From: lilo_booter Date: Wed, 12 Apr 2006 07:55:39 +0000 (+0000) Subject: + Fix for byte order as spotted by Goncalo Carvhalo (many thanks :-)) X-Git-Url: http://research.m1stereo.tv/gitweb?a=commitdiff_plain;h=ab145e4359cb73b13958301d8a5c00f3f3ef340b;p=melted + Fix for byte order as spotted by Goncalo Carvhalo (many thanks :-)) git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt@906 d19143bc-622f-0410-bfdd-b5b2a6649095 --- diff --git a/src/modules/qimage/qimage_wrapper.cpp b/src/modules/qimage/qimage_wrapper.cpp index cc88272..fded125 100644 --- a/src/modules/qimage/qimage_wrapper.cpp +++ b/src/modules/qimage/qimage_wrapper.cpp @@ -153,7 +153,7 @@ void refresh_qimage( mlt_frame frame, int width, int height ) current_alpha = ( uint8_t * )mlt_pool_alloc( current_width * current_height ); // Convert the image - if ( QImage::systemBitOrder( ) == QImage::BigEndian ) + if ( QImage::systemByteOrder( ) == QImage::BigEndian ) mlt_convert_argb_to_yuv422( temp.bits( ), current_width, current_height, temp.bytesPerLine( ), current_image, current_alpha ); else mlt_convert_bgr24a_to_yuv422( temp.bits( ), current_width, current_height, temp.bytesPerLine( ), current_image, current_alpha );