summaryrefslogtreecommitdiff
path: root/libavutil/adler32.c
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2010-03-09 17:39:19 +0000
committerMåns Rullgård <mans@mansr.com>2010-03-09 17:39:19 +0000
commit2ed6f399440a9f9fa358a96293c6797c2ebd0aaf (patch)
treeea8d954cee507834abd9e4b233517a0b7864a633 /libavutil/adler32.c
parent19fcd66c31b880487e477dd45501eb91b9c9fdfe (diff)
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
Diffstat (limited to 'libavutil/adler32.c')
-rw-r--r--libavutil/adler32.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavutil/adler32.c b/libavutil/adler32.c
index de793160a0..4f2001025b 100644
--- a/libavutil/adler32.c
+++ b/libavutil/adler32.c
@@ -21,7 +21,7 @@
* 3. This notice may not be removed or altered from any source distribution.
*/
-#include "common.h"
+#include "config.h"
#include "adler32.h"
#define BASE 65521L /* largest prime smaller than 65536 */
@@ -53,6 +53,7 @@ unsigned long av_adler32_update(unsigned long adler, const uint8_t *buf, unsigne
#ifdef TEST
#include "log.h"
+#include "timer.h"
#define LEN 7001
volatile int checksum;
int main(void){