From 2ed6f399440a9f9fa358a96293c6797c2ebd0aaf Mon Sep 17 00:00:00 2001 From: Måns Rullgård Date: Tue, 9 Mar 2010 17:39:19 +0000 Subject: Replace many includes of libavutil/common.h with what is actually needed This reduces the number of false dependencies on header files and speeds up compilation. Originally committed as revision 22407 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavutil/lfg.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libavutil/lfg.c') diff --git a/libavutil/lfg.c b/libavutil/lfg.c index a6828634ae..1dad4e442c 100644 --- a/libavutil/lfg.c +++ b/libavutil/lfg.c @@ -23,6 +23,7 @@ #include "lfg.h" #include "md5.h" #include "intreadwrite.h" +#include "attributes.h" void av_cold av_lfg_init(AVLFG *c, unsigned int seed){ uint8_t tmp[16]={0}; @@ -56,7 +57,7 @@ void av_bmg_get(AVLFG *lfg, double out[2]) #ifdef TEST #include "log.h" -#include "common.h" +#include "timer.h" int main(void) { -- cgit v1.2.3