mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-23 03:10:04 +08:00
Change fillPicture (av_image_fill_arrays )align size from 1 to 32
This commit is contained in:
parent
d252895df6
commit
5899dd48ed
@ -245,7 +245,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, 1)];
|
||||||
av_image_fill_arrays(_frame->data, _frame->linesize, (uint8_t *) _data, target_format, target_width, target_height,1);
|
av_image_fill_arrays(_frame->data, _frame->linesize, (uint8_t *) _data, target_format, target_width, target_height,32);
|
||||||
}
|
}
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////
|
||||||
|
Loading…
Reference in New Issue
Block a user