Browse Source

lavc/decode: Initialize return value for get_format() failure.

Silences a warning:
libavcodec/decode.c:1378:13: warning: variable 'ret' is used uninitialized whenever 'if' condition is true
tags/n4.2
Carl Eugen Hoyos 7 years ago
parent
commit
9bcd40c298
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      libavcodec/decode.c

+ 1
- 0
libavcodec/decode.c View File

@@ -1378,6 +1378,7 @@ int ff_get_format(AVCodecContext *avctx, const enum AVPixelFormat *fmt)
if (i == n) {
av_log(avctx, AV_LOG_ERROR, "Invalid return from get_format(): "
"%s not in possible list.\n", desc->name);
ret = AV_PIX_FMT_NONE;
break;
}



Loading…
Cancel
Save