summaryrefslogtreecommitdiff
path: root/libavcodec/vorbisdsp.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-01-21 16:28:04 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-01-21 16:28:04 +0100
commitcf4515ecd985aab899f24a6b7d18432001e670fa (patch)
tree044e03a1909155a1f27871371b0043c2baa758ed /libavcodec/vorbisdsp.h
parent6ea8a830e8f1eee465174c479840b18b4963d43d (diff)
parentce378f0dd0c4e5350b3280e6b3e8d6b46fe4b0a3 (diff)
downloadffmpeg-cf4515ecd985aab899f24a6b7d18432001e670fa.tar.gz
Merge commit 'ce378f0dd0c4e5350b3280e6b3e8d6b46fe4b0a3'
* commit 'ce378f0dd0c4e5350b3280e6b3e8d6b46fe4b0a3': fate: Use wmv2 IDCT for wmv2 tests vorbisdsp: change block_size type from int to intptr_t. Conflicts: tests/fate-run.sh tests/fate/vcodec.mak Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/vorbisdsp.h')
-rw-r--r--libavcodec/vorbisdsp.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/libavcodec/vorbisdsp.h b/libavcodec/vorbisdsp.h
index e813a39865..ed14049c8c 100644
--- a/libavcodec/vorbisdsp.h
+++ b/libavcodec/vorbisdsp.h
@@ -19,9 +19,12 @@
#ifndef AVCODEC_VORBISDSP_H
#define AVCODEC_VORBISDSP_H
+#include <stdint.h>
+
typedef struct VorbisDSPContext {
/* assume len is a multiple of 4, and arrays are 16-byte aligned */
- void (*vorbis_inverse_coupling)(float *mag, float *ang, int blocksize);
+ void (*vorbis_inverse_coupling)(float *mag, float *ang,
+ intptr_t blocksize);
} VorbisDSPContext;
void ff_vorbisdsp_init(VorbisDSPContext *dsp);