avcodec/wmaprodec: Explicitly return 0 on success

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt
2024-03-25 02:23:06 +01:00
parent 432e287e27
commit 641850f67f

View File

@@ -2023,7 +2023,7 @@ static av_cold int xma_decode_init(AVCodecContext *avctx)
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
} }
return ret; return 0;
} }
static av_cold int xma_decode_end(AVCodecContext *avctx) static av_cold int xma_decode_end(AVCodecContext *avctx)