Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2013-11-10 21:05:39 +0400
committerDiego Biurrun <diego@biurrun.de>2013-11-15 04:29:47 +0400
commit3cbe1126530449336e2ce59b194bdb8c4eb4abb4 (patch)
tree8e86ce8eeda0d9a0a63aa1923e8cbe10ad4f1e70 /libavformat/dvenc.c
parente8fcdebb17fc59375fd9fc6c0a02a1d2e6d9fb23 (diff)
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 'libavformat/dvenc.c')
-rw-r--r--libavformat/dvenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/dvenc.c b/libavformat/dvenc.c
index 93ae0b56dc..66d848cbce 100644
--- a/libavformat/dvenc.c
+++ b/libavformat/dvenc.c
@@ -33,7 +33,7 @@
#include "avformat.h"
#include "internal.h"
#include "libavcodec/dv_profile.h"
-#include "libavcodec/dvdata.h"
+#include "libavcodec/dv.h"
#include "dv.h"
#include "libavutil/fifo.h"
#include "libavutil/mathematics.h"