diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2017-06-15 20:26:14 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2017-06-26 16:06:25 +0200 |
commit | 449cdfa687f788fa633f5c07e9e7ac71952dc6f6 (patch) | |
tree | ff437c8a70109d0e54ec45c8027a84cafbe28c25 | |
parent | db5bf64b214d9888c8cf30a8235d0655a63139d7 (diff) | |
download | ffmpeg-449cdfa687f788fa633f5c07e9e7ac71952dc6f6.tar.gz |
avcodec/ffv1: Increase the maximum number of slices to 1024
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavcodec/ffv1.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ffv1.h b/libavcodec/ffv1.h index c2bae1e6da..653138b070 100644 --- a/libavcodec/ffv1.h +++ b/libavcodec/ffv1.h @@ -74,7 +74,7 @@ typedef struct PlaneContext { uint8_t interlace_bit_state[2]; } PlaneContext; -#define MAX_SLICES 256 +#define MAX_SLICES 1024 typedef struct FFV1Context { AVClass *class; |