diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-11-10 18:05:39 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-11-15 01:29:47 +0100 |
commit | 3cbe1126530449336e2ce59b194bdb8c4eb4abb4 (patch) | |
tree | 8e86ce8eeda0d9a0a63aa1923e8cbe10ad4f1e70 /libavcodec/dv.c | |
parent | e8fcdebb17fc59375fd9fc6c0a02a1d2e6d9fb23 (diff) | |
download | ffmpeg-3cbe1126530449336e2ce59b194bdb8c4eb4abb4.tar.gz |
dv: Split DV data table declarations into their own header
This is necessary to avoid target config settings bleeding into the host
compilation process with hardcoded tables and the DV VLC tables no longer
present as static tables in a header file.
Diffstat (limited to 'libavcodec/dv.c')
-rw-r--r-- | libavcodec/dv.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/dv.c b/libavcodec/dv.c index 0e76944159..4f1a149e7d 100644 --- a/libavcodec/dv.c +++ b/libavcodec/dv.c @@ -47,6 +47,7 @@ #include "simple_idct.h" #include "dvdata.h" #include "dv_tablegen.h" +#include "dv.h" /* XXX: also include quantization */ RL_VLC_ELEM ff_dv_rl_vlc[1184]; |