diff options
author | Janne Grunau <janne-libav@jannau.net> | 2015-12-10 21:49:30 +0100 |
---|---|---|
committer | Janne Grunau <janne-libav@jannau.net> | 2015-12-14 16:16:55 +0100 |
commit | 50078c1c8070dd8d1c329e8117ff30ec72489039 (patch) | |
tree | 87b1e0efac9fba09e7915d60859bfd1973848244 /libavutil/lls.c | |
parent | dbce017913ce04966021a2f72e4f8fae5b4b7190 (diff) | |
download | ffmpeg-50078c1c8070dd8d1c329e8117ff30ec72489039.tar.gz |
libavutil: move FFALIGN macro from common.h to macros.h
Include macros.h explicitly in common.h so that external code using
FFALIGN does not break. It was already implicitly included through
version.h. Include macros.h in lls.h and internal.h for FFALIGN.
lls.h was including common.h only for FFALIGN and internal.h was
missing the include for FFALIGN. `make checkheaders` did not catch it
because it's an internal header.
Diffstat (limited to 'libavutil/lls.c')
-rw-r--r-- | libavutil/lls.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavutil/lls.c b/libavutil/lls.c index 12989466e6..60d2b646ba 100644 --- a/libavutil/lls.c +++ b/libavutil/lls.c @@ -29,6 +29,8 @@ #include <string.h> #include "attributes.h" +#include "config.h" +#include "internal.h" #include "version.h" #include "lls.h" |