mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-25 00:32:31 +00:00
avs: silence "may be used uninitialized" warnings
We initialize the struct to 0 to also ensure any actual use of the pointers in it will not lead to security issues. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
3f8ee30e63
commit
76e65a1b73
@ -57,7 +57,7 @@ avs_decode_frame(AVCodecContext * avctx,
|
||||
int i, j, x, y, stride, vect_w = 3, vect_h = 3;
|
||||
AvsVideoSubType sub_type;
|
||||
AvsBlockType type;
|
||||
GetBitContext change_map;
|
||||
GetBitContext change_map = {0}; //init to silence warning
|
||||
|
||||
if (avctx->reget_buffer(avctx, p)) {
|
||||
av_log(avctx, AV_LOG_ERROR, "reget_buffer() failed\n");
|
||||
|
Loading…
Reference in New Issue
Block a user