mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
ffv1: allocate correct size for sample buffer
This fixes a typo in the size calculation for the sample buffer
introduced in cbabccc367
.
Signed-off-by: Mans Rullgard <mans@mansr.com>
This commit is contained in:
parent
cb48e245e6
commit
027f60f32b
@ -792,7 +792,7 @@ static av_cold int init_slice_contexts(FFV1Context *f){
|
|||||||
fs->slice_x = sxs;
|
fs->slice_x = sxs;
|
||||||
fs->slice_y = sys;
|
fs->slice_y = sys;
|
||||||
|
|
||||||
fs->sample_buffer = av_malloc(6 * (fs->width+6) * sizeof(*fs->sample_buffer));
|
fs->sample_buffer = av_malloc(9 * (fs->width+6) * sizeof(*fs->sample_buffer));
|
||||||
if (!fs->sample_buffer)
|
if (!fs->sample_buffer)
|
||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user