diff options
author | Zhao Zhili <[email protected]> | 2019-10-16 01:17:54 +0800 |
---|---|---|
committer | Michael Niedermayer <[email protected]> | 2019-10-30 18:09:00 +0100 |
commit | af70c94c63cc0ccf6a8078e87c81d061b8765889 (patch) | |
tree | 04b12d7ae87bb1a0858eef8f5d3c71ed728c1450 | |
parent | 78c0030f344c408d71eb35db7f880ec96a1be03a (diff) |
avfilter/f_sidedata: fix Wtautological-constant-out-of-range-compare
Reviewed-by: Paul B Mahol <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
-rw-r--r-- | libavfilter/f_sidedata.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/f_sidedata.c b/libavfilter/f_sidedata.c index 381da5a052..4210dcac4c 100644 --- a/libavfilter/f_sidedata.c +++ b/libavfilter/f_sidedata.c @@ -39,7 +39,7 @@ typedef struct SideDataContext { const AVClass *class; int mode; - enum AVFrameSideDataType type; + int type; // enum AVFrameSideDataType or -1 for delete side data mode } SideDataContext; #define OFFSET(x) offsetof(SideDataContext, x) |