diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-02-24 06:01:16 -0800 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-03-13 05:50:27 -0700 |
commit | cd832f032f945a57a1f1dd385942c2fadc7ce4e5 (patch) | |
tree | edca68ff4af580b6484356571b7329746ab19eaf /libavcodec/ffv1.h | |
parent | 0e29c5e1285eeb5b4842d96d00dfe06898cd87e5 (diff) | |
download | ffmpeg-cd832f032f945a57a1f1dd385942c2fadc7ce4e5.tar.gz |
ffv1: Drop bogus dependency on dsputil
ffv1 does not use any part of the dsputil framework.
Diffstat (limited to 'libavcodec/ffv1.h')
-rw-r--r-- | libavcodec/ffv1.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavcodec/ffv1.h b/libavcodec/ffv1.h index 40fc3935ff..5c3bdc1dbf 100644 --- a/libavcodec/ffv1.h +++ b/libavcodec/ffv1.h @@ -26,7 +26,6 @@ #include <stdint.h> #include "avcodec.h" -#include "dsputil.h" #include "get_bits.h" #include "put_bits.h" #include "rangecoder.h" @@ -106,8 +105,6 @@ typedef struct FFV1Context { int gob_count; int quant_table_count; - DSPContext dsp; - struct FFV1Context *slice_context[MAX_SLICES]; int slice_count; int num_v_slices; |