diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-12-27 10:29:14 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-05-29 06:41:15 -0700 |
commit | 256da0770e495176d1b2699ec6e9c7993c2a6d7b (patch) | |
tree | db3fb26e041fbfc2fc18fa390a9fe4008b10230b /libavcodec/wmv2dsp.h | |
parent | 3832a6590156e6abc575bed51cbffa78617ee5fd (diff) | |
download | ffmpeg-256da0770e495176d1b2699ec6e9c7993c2a6d7b.tar.gz |
dsputil: Move mspel_pixels_tab to the only place it is used
Diffstat (limited to 'libavcodec/wmv2dsp.h')
-rw-r--r-- | libavcodec/wmv2dsp.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/wmv2dsp.h b/libavcodec/wmv2dsp.h index 3368b3a971..935620da6d 100644 --- a/libavcodec/wmv2dsp.h +++ b/libavcodec/wmv2dsp.h @@ -21,10 +21,14 @@ #include <stdint.h> +#include "dsputil.h" + typedef struct WMV2DSPContext { void (*idct_add)(uint8_t *dest, int line_size, int16_t *block); void (*idct_put)(uint8_t *dest, int line_size, int16_t *block); + qpel_mc_func put_mspel_pixels_tab[8]; + int idct_perm; } WMV2DSPContext; |