diff options
author | Måns Rullgård <mans@mansr.com> | 2010-03-14 17:50:12 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-03-14 17:50:12 +0000 |
commit | 05aec7bb87236bf6e7c0f61fb6b20c5c922b49e2 (patch) | |
tree | e242c20f03b791662e7227de96f0cc5172583e29 /libavcodec/ivi_dsp.c | |
parent | 28eb5773903a84c991d7f58756fdeaddaf58e46a (diff) | |
download | ffmpeg-05aec7bb87236bf6e7c0f61fb6b20c5c922b49e2.tar.gz |
Separate DWT from snow and dsputil
This moves the DWT functions from snow.c and dsputil.c to a file of
their own. A new struct, DWTContext, holds the function pointers
previously part of DSPContext.
Originally committed as revision 22522 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ivi_dsp.c')
-rw-r--r-- | libavcodec/ivi_dsp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/ivi_dsp.c b/libavcodec/ivi_dsp.c index f18f378aef..5aa8f94c99 100644 --- a/libavcodec/ivi_dsp.c +++ b/libavcodec/ivi_dsp.c @@ -28,6 +28,7 @@ #include "avcodec.h" #include "dsputil.h" +#include "dwt.h" #include "ivi_common.h" #include "ivi_dsp.h" |