diff options
author | Jun Zhao <jun.zhao@intel.com> | 2018-01-15 18:57:33 +0800 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2018-01-16 22:02:34 +0100 |
commit | a919ab853efcecf89516e703df8018d0649e1143 (patch) | |
tree | 516d6e20d87511916dd1740ac8c422f1c1596b71 | |
parent | 27b9f82e2c5dca3ad642ed13c2360032a17687ec (diff) | |
download | ffmpeg-a919ab853efcecf89516e703df8018d0649e1143.tar.gz |
lavc/snow_dwt: add struct MpegEncContext to fix headers check.
add missing struct MpegEncContext, use make checkheaders
found this warning.
Signed-off-by: Jun Zhao <jun.zhao@intel.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavcodec/snow_dwt.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/snow_dwt.h b/libavcodec/snow_dwt.h index e2d7528056..ee699de35e 100644 --- a/libavcodec/snow_dwt.h +++ b/libavcodec/snow_dwt.h @@ -24,6 +24,8 @@ #include <stddef.h> #include <stdint.h> +struct MpegEncContext; + typedef int DWTELEM; typedef short IDWTELEM; |