From 94a33ffeb0e4a41f00e53dacfd04064109acbf0a Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Mon, 29 Apr 2019 17:47:22 +0200 Subject: [PATCH] Video decoder: fixed FEC uncompressed decoding --- src/rtp/video_decoders.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rtp/video_decoders.cpp b/src/rtp/video_decoders.cpp index da9db654e..8d6df9e53 100644 --- a/src/rtp/video_decoders.cpp +++ b/src/rtp/video_decoders.cpp @@ -473,7 +473,7 @@ static void *fec_thread(void *args) { char *src = fec_out_buffer; char *dst = tile->data + line_decoder->base_offset; while(data_pos < (int) fec_out_len) { - line_decoder->decode_line((unsigned char*)dst, (unsigned char *) src, line_decoder->src_linesize, + line_decoder->decode_line((unsigned char*)dst, (unsigned char *) src, line_decoder->dst_linesize, line_decoder->shifts[0], line_decoder->shifts[1], line_decoder->shifts[2]);