diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-06-05 01:06:13 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-06-05 12:25:38 +0100 |
commit | 92b4abc2ad88ac7e89a60480094b8398fe1b8dbf (patch) | |
tree | d733e85f38614f568230080c2f9e6dcb6639dec3 | |
parent | 1863a3c7aa897b2077e408ab0bdc57cb3a13d5f3 (diff) | |
download | ffmpeg-92b4abc2ad88ac7e89a60480094b8398fe1b8dbf.tar.gz |
tableprint: Restore mistakenly deleted common.h #include for FF_ARRAY_ELEMS.
This fixes the build with hardcoded tables enabled.
Signed-off-by: Mans Rullgard <mans@mansr.com>
-rw-r--r-- | libavcodec/tableprint.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/tableprint.h b/libavcodec/tableprint.h index de355fc0aa..ddf2635da0 100644 --- a/libavcodec/tableprint.h +++ b/libavcodec/tableprint.h @@ -26,6 +26,8 @@ #include <inttypes.h> #include <stdio.h> +#include "libavutil/common.h" + #define WRITE_1D_FUNC_ARGV(type, linebrk, fmtstr, ...)\ void write_##type##_array(const type *data, int len)\ {\ |