From ab145e4359cb73b13958301d8a5c00f3f3ef340b Mon Sep 17 00:00:00 2001 From: lilo_booter Date: Wed, 12 Apr 2006 07:55:39 +0000 Subject: [PATCH] + 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 --- src/modules/qimage/qimage_wrapper.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 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 ); -- 1.7.4.4