diff options
author | James Almer <jamrial@gmail.com> | 2018-01-07 00:45:37 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2018-01-11 23:46:31 -0300 |
commit | 6e80079a2840ee407c5d126030eb1066bcbfdfc5 (patch) | |
tree | 3e208a5347a2477e824598cd32cbaf136a4925a8 /libavcodec/avcodec.h | |
parent | b94cd55155d8c061f1e1faca9076afe540149c27 (diff) | |
download | ffmpeg-6e80079a2840ee407c5d126030eb1066bcbfdfc5.tar.gz |
avcodec: increase AV_INPUT_BUFFER_PADDING_SIZE to 64
AVX-512 support has been introduced, and even if no functions currently
use zmm registers (able to load as much as 64 bytes of consecutive data
per instruction), they will be added eventually.
Reviewed-by: Rostislav Pehlivanov <atomnuker@gmail.com>
Tested-by: Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index c13deb599f..8fbbc798a2 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -767,7 +767,7 @@ typedef struct AVCodecDescriptor { * Note: If the first 23 bits of the additional bytes are not 0, then damaged * MPEG bitstreams could cause overread and segfault. */ -#define AV_INPUT_BUFFER_PADDING_SIZE 32 +#define AV_INPUT_BUFFER_PADDING_SIZE 64 /** * @ingroup lavc_encoding |