diff options
author | Martin Storsjö <martin@martin.st> | 2022-02-23 12:55:45 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2022-03-16 14:04:35 +0200 |
commit | f2da2e1458b76a1d6c068673430b46cf2850bc51 (patch) | |
tree | 0f71402af80541921cd1ae0d44e730f6177a6db0 /libavcodec/mjpegenc_common.c | |
parent | f2fe17c56d33bfc5bd04d804603036a4f935b69b (diff) | |
download | ffmpeg-f2da2e1458b76a1d6c068673430b46cf2850bc51.tar.gz |
libavcodec: Split version.h
This avoids including version.h in all source files, avoiding
unnecessary rebuilds when the version number is bumped. Only
version_major.h is included by the main header, which defines
availability of e.g. FF_API_* macros, and which is bumped much
less often.
This isn't done for libavutil/version.h, because that header needs
to be included essentially everywhere due to LIBAVUTIL_VERSION_INT
being used wherever an AVClass is constructed.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/mjpegenc_common.c')
-rw-r--r-- | libavcodec/mjpegenc_common.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/mjpegenc_common.c b/libavcodec/mjpegenc_common.c index 995e2b7670..7b82644763 100644 --- a/libavcodec/mjpegenc_common.c +++ b/libavcodec/mjpegenc_common.c @@ -33,6 +33,7 @@ #include "mjpegenc.h" #include "mjpegenc_common.h" #include "mjpeg.h" +#include "version.h" /* table_class: 0 = DC coef, 1 = AC coefs */ static int put_huffman_table(PutBitContext *p, int table_class, int table_id, |