Index: libswscale/swscale.c =================================================================== --- libswscale/swscale.c (Revision 22904) +++ libswscale/swscale.c (Arbeitskopie) @@ -2086,6 +2086,7 @@ /* rgb/bgr -> rgb/bgr (no dither needed forms) */ if( (isBGR(srcFormat) || isRGB(srcFormat)) && (isBGR(dstFormat) || isRGB(dstFormat)) + && srcFormat != PIX_FMT_BGR8 && dstFormat != PIX_FMT_BGR8) && !needsDither) c->swScale= rgb2rgbWrapper;