Originally committed as revision 4794 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
{
if(dstFormat==IMGFMT_BGR32)
{
+#ifdef WORDS_BIGENDIAN
+ dest++;
+#endif
int i;
for(i=0; i<(dstW>>1); i++){
int j;
#else
if(dstFormat==IMGFMT_BGR32)
{
+#ifdef WORDS_BIGENDIAN
+ dest++;
+#endif
int i;
for(i=0;i<dstW;i++){
// vertical linear interpolation && yuv2rgb in a single step:
#else
if(dstFormat==IMGFMT_BGR32)
{
+#ifdef WORDS_BIGENDIAN
+ dest++;
+#endif
int i;
for(i=0; i<dstW-1; i+=2){
// vertical linear interpolation && yuv2rgb in a single step:
if(dstFormat==IMGFMT_BGR32)
{
+#ifdef WORDS_BIGENDIAN
+ dest++;
+#endif
int i;
for(i=0; i<dstW-1; i+=2){
// vertical linear interpolation && yuv2rgb in a single step: