diff options
author | Martin Storsjö <martin@martin.st> | 2022-02-23 14:56:49 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2022-03-16 14:12:49 +0200 |
commit | a78f136f3fa039fd7ad664fd6e6e976f1448c68b (patch) | |
tree | 071be1991a6b641284543e77dbb82a0dcfc8f35d /libavcodec/arm | |
parent | f3a0e2ee2b97e2d46b351c29853c056d126884e2 (diff) | |
download | ffmpeg-a78f136f3fa039fd7ad664fd6e6e976f1448c68b.tar.gz |
configure: Use a separate config_components.h header for $ALL_COMPONENTS
This avoids unnecessary rebuilds of most source files if only the
list of enabled components has changed, but not the other properties
of the build, set in config.h.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/arm')
-rw-r--r-- | libavcodec/arm/flacdsp_init_arm.c | 1 | ||||
-rw-r--r-- | libavcodec/arm/h264cmc_neon.S | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/arm/flacdsp_init_arm.c b/libavcodec/arm/flacdsp_init_arm.c index c4a6e3a535..bac9ff1959 100644 --- a/libavcodec/arm/flacdsp_init_arm.c +++ b/libavcodec/arm/flacdsp_init_arm.c @@ -21,6 +21,7 @@ #include "libavutil/attributes.h" #include "libavcodec/flacdsp.h" #include "config.h" +#include "config_components.h" void ff_flac_lpc_16_arm(int32_t *samples, const int coeffs[32], int order, int qlevel, int len); diff --git a/libavcodec/arm/h264cmc_neon.S b/libavcodec/arm/h264cmc_neon.S index 5a4159eedd..3687b02ede 100644 --- a/libavcodec/arm/h264cmc_neon.S +++ b/libavcodec/arm/h264cmc_neon.S @@ -18,6 +18,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include "config_components.h" + #include "libavutil/arm/asm.S" /* chroma_mc8(uint8_t *dst, uint8_t *src, ptrdiff_t stride, int h, int x, int y) */ |