comparison huffyuv.c @ 990:165064f921ee libavcodec

changed BGRA32 to RGBA32. XXX: clarify expected behaviour on big endian cpu
author bellard
date Sat, 11 Jan 2003 00:13:18 +0000
parents 7fccaa0d699d
children a32feda30b01
comparison
equal deleted inserted replaced
989:fe9083c56733 990:165064f921ee
401 } 401 }
402 break; 402 break;
403 case 24: 403 case 24:
404 case 32: 404 case 32:
405 if(s->bgr32){ 405 if(s->bgr32){
406 avctx->pix_fmt = PIX_FMT_BGRA32; 406 avctx->pix_fmt = PIX_FMT_RGBA32;
407 }else{ 407 }else{
408 avctx->pix_fmt = PIX_FMT_BGR24; 408 avctx->pix_fmt = PIX_FMT_BGR24;
409 } 409 }
410 break; 410 break;
411 default: 411 default: