diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-08-15 12:58:41 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-08-15 14:38:03 +0200 |
commit | c591d4575a6f97fbbe6145304b1ea960e8e81e14 (patch) | |
tree | 7cdb919202f6fd9e2f9f0823640ba1b9d862e5d0 /libavcodec/svq1dec.c | |
parent | aa2ba8c99e5708884a56aea9c1d96e014866f8a3 (diff) | |
download | ffmpeg-c591d4575a6f97fbbe6145304b1ea960e8e81e14.tar.gz |
avcodec: Replace local extern declarations for tables with header #includes
Diffstat (limited to 'libavcodec/svq1dec.c')
-rw-r--r-- | libavcodec/svq1dec.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/svq1dec.c b/libavcodec/svq1dec.c index 4b8b6568ac..59233a061d 100644 --- a/libavcodec/svq1dec.c +++ b/libavcodec/svq1dec.c @@ -34,6 +34,7 @@ #include "avcodec.h" #include "get_bits.h" +#include "h263.h" #include "hpeldsp.h" #include "internal.h" #include "mathops.h" @@ -42,8 +43,6 @@ #undef NDEBUG #include <assert.h> -extern const uint8_t ff_mvtab[33][2]; - static VLC svq1_block_type; static VLC svq1_motion_component; static VLC svq1_intra_multistage[6]; |