You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avfilter/vf_mix: use correct type for flags
This commit is contained in:
@@ -56,10 +56,10 @@ typedef struct MixContext {
|
||||
|
||||
static int query_formats(AVFilterContext *ctx)
|
||||
{
|
||||
int reject_flags = AV_PIX_FMT_FLAG_BITSTREAM |
|
||||
unsigned reject_flags = AV_PIX_FMT_FLAG_BITSTREAM |
|
||||
AV_PIX_FMT_FLAG_HWACCEL |
|
||||
AV_PIX_FMT_FLAG_PAL;
|
||||
int accept_flags = 0;
|
||||
unsigned accept_flags = 0;
|
||||
|
||||
if (!HAVE_BIGENDIAN)
|
||||
reject_flags |= AV_PIX_FMT_FLAG_BE;
|
||||
|
Reference in New Issue
Block a user