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:
authorChristophe Gisquet <christophe.gisquet@gmail.com>2012-12-28 01:33:51 +0400
committerMartin Storsjö <martin@martin.st>2013-07-17 12:02:47 +0400
commitb6293e2798afab60596a87010b6163fcb4ca3086 (patch)
tree256cc1560b131fd9d125ef8858f25d91d58d78ad /libavcodec/fmtconvert.h
parent50612484e058e8b241f0528584d64d9d2ccebf12 (diff)
fmtconvert: Explicitly use int32_t instead of int
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/fmtconvert.h')
-rw-r--r--libavcodec/fmtconvert.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/fmtconvert.h b/libavcodec/fmtconvert.h
index 93c3401f57..a28af36c21 100644
--- a/libavcodec/fmtconvert.h
+++ b/libavcodec/fmtconvert.h
@@ -35,7 +35,8 @@ typedef struct FmtConvertContext {
* @param len number of elements to convert.
* constraints: multiple of 8
*/
- void (*int32_to_float_fmul_scalar)(float *dst, const int *src, float mul, int len);
+ void (*int32_to_float_fmul_scalar)(float *dst, const int32_t *src,
+ float mul, int len);
/**
* Convert an array of float to an array of int16_t.