summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2022-02-17 09:06:02 +0100
committerPaul B Mahol <onemda@gmail.com>2022-02-17 09:07:50 +0100
commit881b80ffcf3292ffba367b907024cb861578ad6e (patch)
tree82e5c63b84e673095a8bdb24145abf8595bf7b96
parentb9306afce61be27db5e3860b8abb1f9cea550055 (diff)
avfilter/vf_mix: use correct type for flags
-rw-r--r--libavfilter/vf_mix.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavfilter/vf_mix.c b/libavfilter/vf_mix.c
index 61ab963483..693b0595d8 100644
--- a/libavfilter/vf_mix.c
+++ b/libavfilter/vf_mix.c
@@ -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;