From 8690b155f6b3f2a9bea739987d258687b234b08c Mon Sep 17 00:00:00 2001 From: alex Date: Fri, 25 Jun 2004 17:05:35 +0000 Subject: bigendian fix git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12658 b3059339-0415-0410-9bf9-f77b7e298cf2 --- postproc/yuv2rgb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'postproc/yuv2rgb.c') diff --git a/postproc/yuv2rgb.c b/postproc/yuv2rgb.c index 9cb65c6e69..a8acec5f19 100644 --- a/postproc/yuv2rgb.c +++ b/postproc/yuv2rgb.c @@ -642,7 +642,7 @@ static int div_round (int dividend, int divisor) int yuv2rgb_c_init_tables (SwsContext *c, const int inv_table[4], int fullRange, int brightness, int contrast, int saturation) { - const int isRgb = IMGFMT_IS_RGB(c->dstFormat); + const int isRgb = IMGFMT_IS_BGR(c->dstFormat); const int bpp = isRgb?IMGFMT_RGB_DEPTH(c->dstFormat):IMGFMT_BGR_DEPTH(c->dstFormat); int i; uint8_t table_Y[1024]; -- cgit v1.2.3