mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/xan: fix style issue
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
3e892b2bcd
commit
b73b36bfa5
|
@ -556,7 +556,7 @@ static int xan_decode_frame(AVCodecContext *avctx,
|
||||||
int i;
|
int i;
|
||||||
tag = bytestream2_get_le32(&ctx);
|
tag = bytestream2_get_le32(&ctx);
|
||||||
size = bytestream2_get_be32(&ctx);
|
size = bytestream2_get_be32(&ctx);
|
||||||
if(size < 0) {
|
if (size < 0) {
|
||||||
av_log(avctx, AV_LOG_ERROR, "Invalid tag size %d\n", size);
|
av_log(avctx, AV_LOG_ERROR, "Invalid tag size %d\n", size);
|
||||||
return AVERROR_INVALIDDATA;
|
return AVERROR_INVALIDDATA;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue