diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2013-07-12 14:33:24 +0200 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2013-07-13 19:11:18 +0200 |
commit | dc79685195a45c9b8b17d7b93d118e0aefa45462 (patch) | |
tree | 1188ab3efacb8406d84ff847f2abede26162d0cb /libavcodec/ivi_common.h | |
parent | cd78e934c246d1b2510f8fba0abfe40bb75795f6 (diff) | |
download | ffmpeg-dc79685195a45c9b8b17d7b93d118e0aefa45462.tar.gz |
indeo: Bound-check before applying transform
Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
CC: libav-stable@libav.org
Diffstat (limited to 'libavcodec/ivi_common.h')
-rw-r--r-- | libavcodec/ivi_common.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/ivi_common.h b/libavcodec/ivi_common.h index aeb6b15877..fb97c8d7a2 100644 --- a/libavcodec/ivi_common.h +++ b/libavcodec/ivi_common.h @@ -159,6 +159,7 @@ typedef struct IVIBandDesc { int num_tiles; ///< number of tiles in this band IVITile *tiles; ///< array of tile descriptors InvTransformPtr *inv_transform; + int transform_size; DCTransformPtr *dc_transform; int is_2d_trans; ///< 1 indicates that the two-dimensional inverse transform is used int32_t checksum; ///< for debug purposes |