diff options
author | James Almer | 2015-06-13 13:11:51 -0300 |
---|---|---|
committer | James Almer | 2015-06-13 16:53:27 -0300 |
commit | 7912a6830d3a4a9e5829ba43082f677c638abf2c (patch) | |
tree | cc10768b9d63a6fd3b257397b4a041147b61eab8 /libavcodec/jpeg2000.c | |
parent | a98d4d5207502a6dace278e69db288da0c192a28 (diff) |
avcodec/jpeg200dsp: add ff_ict_float_{sse,avx}
Original intrinsics version by Nicolas Bertrand.
Reviewed-by: Michael Niedermayer <michaelni@gmx.at>
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/jpeg2000.c')
-rw-r--r-- | libavcodec/jpeg2000.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/jpeg2000.c b/libavcodec/jpeg2000.c index 9304536291..af24e998ca 100644 --- a/libavcodec/jpeg2000.c +++ b/libavcodec/jpeg2000.c @@ -215,6 +215,7 @@ int ff_jpeg2000_init_component(Jpeg2000Component *comp, (comp->coord[1][1] - comp->coord[1][0]); if (codsty->transform == FF_DWT97) { + csize += FF_INPUT_BUFFER_PADDING_SIZE / sizeof(*comp->f_data); comp->i_data = NULL; comp->f_data = av_mallocz_array(csize, sizeof(*comp->f_data)); if (!comp->f_data) |