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:
authorMichael Niedermayer <michaelni@gmx.at>2014-05-30 02:42:36 +0400
committerMichael Niedermayer <michaelni@gmx.at>2014-05-30 02:42:36 +0400
commit5c6e94c42bcdc026071855a6b1749406b2456c8b (patch)
treee8ce939224cce418e2069a83f41ad706c3fcd94a /libavcodec/wmv2dsp.h
parenta9a312d299c785b4b4655ab70753aa5a2a933aae (diff)
parent256da0770e495176d1b2699ec6e9c7993c2a6d7b (diff)
Merge commit '256da0770e495176d1b2699ec6e9c7993c2a6d7b'
* commit '256da0770e495176d1b2699ec6e9c7993c2a6d7b': dsputil: Move mspel_pixels_tab to the only place it is used Conflicts: libavcodec/dsputil.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/wmv2dsp.h')
-rw-r--r--libavcodec/wmv2dsp.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/wmv2dsp.h b/libavcodec/wmv2dsp.h
index 37bee205aa..d15be59c1d 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;