let scalers output in ABGR8888

This commit is contained in:
misson20000 2018-03-06 19:49:43 -08:00
parent 82fb34a3ce
commit dd53be15ae

View File

@ -239,6 +239,10 @@ bool scaler_ctx_gen_filter(struct scaler_ctx *ctx)
ctx->out_pixconv = conv_argb8888_bgr24;
break;
case SCALER_FMT_ABGR8888:
ctx->out_pixconv = conv_argb8888_abgr8888;
break;
default:
return false;
}