diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-11-01 00:41:46 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-11-04 01:30:16 +0100 |
commit | 4a2599b0e6b8a7076c9141d863d49667b089a45c (patch) | |
tree | d030a2087360bc9b6a5bbb5f1a7ff3e5a433ecea /libavfilter/transform.h | |
parent | 5f531386210e844f0a6819404cde58da54c46a00 (diff) | |
download | ffmpeg-4a2599b0e6b8a7076c9141d863d49667b089a45c.tar.gz |
transform: give avfilter_transform() a return value for returning an error
Fixes CID703674
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/transform.h')
-rw-r--r-- | libavfilter/transform.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavfilter/transform.h b/libavfilter/transform.h index edd0cf21fd..07436bfccb 100644 --- a/libavfilter/transform.h +++ b/libavfilter/transform.h @@ -116,8 +116,9 @@ void avfilter_mul_matrix(const float *m1, float scalar, float *result); * @param matrix 9-item affine transformation matrix * @param interpolate pixel interpolation method * @param fill edge fill method + * @return negative on error */ -void avfilter_transform(const uint8_t *src, uint8_t *dst, +int avfilter_transform(const uint8_t *src, uint8_t *dst, int src_stride, int dst_stride, int width, int height, const float *matrix, enum InterpolateMethod interpolate, |