diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-07-26 15:24:42 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-07-27 17:21:40 +0200 |
commit | e3fac208246f5f94cfc4d3abdb1a4770272f96ee (patch) | |
tree | 7ea4bf78c9367681d3796cca088a2bd495d58daa /libavfilter/vf_spp.h | |
parent | 932ff7095696a90fda83a8c6343b57f475b40951 (diff) | |
download | ffmpeg-e3fac208246f5f94cfc4d3abdb1a4770272f96ee.tar.gz |
avfilter/vf_spp: use AVDCT
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/vf_spp.h')
-rw-r--r-- | libavfilter/vf_spp.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/libavfilter/vf_spp.h b/libavfilter/vf_spp.h index c8eac3caf2..2dcf813ed3 100644 --- a/libavfilter/vf_spp.h +++ b/libavfilter/vf_spp.h @@ -24,8 +24,7 @@ #include "libavcodec/avcodec.h" #include "libavcodec/pixblockdsp.h" -#include "libavcodec/idctdsp.h" -#include "libavcodec/fdctdsp.h" +#include "libavcodec/avdct.h" #include "avfilter.h" #define MAX_LEVEL 6 /* quality levels */ @@ -41,9 +40,8 @@ typedef struct { uint8_t *src; int16_t *temp; AVCodecContext *avctx; - IDCTDSPContext idsp; - FDCTDSPContext fdsp; PixblockDSPContext pdsp; + AVDCT *dct; int8_t *non_b_qp_table; int non_b_qp_alloc_size; int use_bframe_qp; |