vic: Specify sws_scale height stride.
Silences a sws_scale runtime warning about unaligned strides.
This commit is contained in:
parent
63325cafbe
commit
a779cede7c
|
@ -96,12 +96,11 @@ void Vic::Execute() {
|
||||||
if (!converted_frame_buffer) {
|
if (!converted_frame_buffer) {
|
||||||
converted_frame_buffer = AVMallocPtr{static_cast<u8*>(av_malloc(linear_size)), av_free};
|
converted_frame_buffer = AVMallocPtr{static_cast<u8*>(av_malloc(linear_size)), av_free};
|
||||||
}
|
}
|
||||||
|
const std::array<int, 4> converted_stride{frame->width * 4, frame->height * 4, 0, 0};
|
||||||
const int converted_stride{frame->width * 4};
|
|
||||||
u8* const converted_frame_buf_addr{converted_frame_buffer.get()};
|
u8* const converted_frame_buf_addr{converted_frame_buffer.get()};
|
||||||
|
|
||||||
sws_scale(scaler_ctx, frame->data, frame->linesize, 0, frame->height,
|
sws_scale(scaler_ctx, frame->data, frame->linesize, 0, frame->height,
|
||||||
&converted_frame_buf_addr, &converted_stride);
|
&converted_frame_buf_addr, converted_stride.data());
|
||||||
|
|
||||||
const u32 blk_kind = static_cast<u32>(config.block_linear_kind);
|
const u32 blk_kind = static_cast<u32>(config.block_linear_kind);
|
||||||
if (blk_kind != 0) {
|
if (blk_kind != 0) {
|
||||||
|
|
Reference in New Issue