Commit d7efafd6 authored by Michael Niedermayer's avatar Michael Niedermayer

avfilter/vf_hqx: partly fix big endian fate test

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 4abffbbc
......@@ -461,7 +461,7 @@ HQX_FUNC(4)
static int query_formats(AVFilterContext *ctx)
{
static const enum AVPixelFormat pix_fmts[] = {AV_PIX_FMT_BGRA, AV_PIX_FMT_NONE};
static const enum AVPixelFormat pix_fmts[] = {AV_PIX_FMT_RGB32, AV_PIX_FMT_NONE};
ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
return 0;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment