Change av_image_get_buffer_size align size from 1 to 32
This commit is contained in:
parent
7457866266
commit
642a564b20
|
|
@ -244,7 +244,7 @@ AVFrame *FFmpegFrame::get() const {
|
||||||
|
|
||||||
void FFmpegFrame::fillPicture(AVPixelFormat target_format, int target_width, int target_height) {
|
void FFmpegFrame::fillPicture(AVPixelFormat target_format, int target_width, int target_height) {
|
||||||
assert(_data == nullptr);
|
assert(_data == nullptr);
|
||||||
_data = new char[av_image_get_buffer_size(target_format, target_width, target_height, 1)];
|
_data = new char[av_image_get_buffer_size(target_format, target_width, target_height, 32)];
|
||||||
av_image_fill_arrays(_frame->data, _frame->linesize, (uint8_t *) _data, target_format, target_width, target_height, 32);
|
av_image_fill_arrays(_frame->data, _frame->linesize, (uint8_t *) _data, target_format, target_width, target_height, 32);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue