diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-06-22 04:55:17 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-06-22 04:55:17 +0200 |
commit | d7efafd63a63c8926411de4ea537c366770ff28e (patch) | |
tree | b8ef4315588051610addb7e6da48598032ac6d83 | |
parent | 4abffbbc54a2f2889ef1275b48be5fe63c51ace0 (diff) | |
download | ffmpeg-d7efafd63a63c8926411de4ea537c366770ff28e.tar.gz |
avfilter/vf_hqx: partly fix big endian fate test
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavfilter/vf_hqx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_hqx.c b/libavfilter/vf_hqx.c index 77e8f13214..a2a31e4d7c 100644 --- a/libavfilter/vf_hqx.c +++ b/libavfilter/vf_hqx.c @@ -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; } |