diff mbox series

[FFmpeg-devel,01/13] libavutil: Remove leftover uses of version.h

Message ID 20220223142951.40366-2-martin@martin.st
State New
Headers show
Series Reduce unnecessary recompilation | expand

Commit Message

Martin Storsjö Feb. 23, 2022, 2:29 p.m. UTC
These headers probably have used defines like FF_API_* before,
but no longer do that, and doesn't directly seem to use anything
else from that header either.
---
 libavutil/common.h   | 1 -
 libavutil/internal.h | 1 -
 2 files changed, 2 deletions(-)
diff mbox series

Patch

diff --git a/libavutil/common.h b/libavutil/common.h
index 3eb9bc5f74..fd1404be6c 100644
--- a/libavutil/common.h
+++ b/libavutil/common.h
@@ -41,7 +41,6 @@ 
 
 #include "attributes.h"
 #include "macros.h"
-#include "version.h"
 
 //rounded division & shift
 #define RSHIFT(a,b) ((a) > 0 ? ((a) + ((1<<(b))>>1))>>(b) : ((a) + ((1<<(b))>>1)-1)>>(b))
diff --git a/libavutil/internal.h b/libavutil/internal.h
index 0a7f1c6257..79c2130be0 100644
--- a/libavutil/internal.h
+++ b/libavutil/internal.h
@@ -43,7 +43,6 @@ 
 #include "dict.h"
 #include "macros.h"
 #include "pixfmt.h"
-#include "version.h"
 
 #if ARCH_X86
 #   include "x86/emms.h"