mirror of https://git.ffmpeg.org/ffmpeg.git
avfilter/vf_mix: use correct type for flags
This commit is contained in:
parent
b9306afce6
commit
881b80ffcf
|
@ -56,10 +56,10 @@ typedef struct MixContext {
|
|||
|
||||
static int query_formats(AVFilterContext *ctx)
|
||||
{
|
||||
int reject_flags = AV_PIX_FMT_FLAG_BITSTREAM |
|
||||
AV_PIX_FMT_FLAG_HWACCEL |
|
||||
AV_PIX_FMT_FLAG_PAL;
|
||||
int accept_flags = 0;
|
||||
unsigned reject_flags = AV_PIX_FMT_FLAG_BITSTREAM |
|
||||
AV_PIX_FMT_FLAG_HWACCEL |
|
||||
AV_PIX_FMT_FLAG_PAL;
|
||||
unsigned accept_flags = 0;
|
||||
|
||||
if (!HAVE_BIGENDIAN)
|
||||
reject_flags |= AV_PIX_FMT_FLAG_BE;
|
||||
|
|
Loading…
Reference in New Issue