Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2011-12-08 16:39:47 +0400
committerMans Rullgard <mans@mansr.com>2011-12-08 18:44:05 +0400
commitca52bae6ec7588ae72a5a011d7af80645f999e5e (patch)
treef6c7a3c148bde3b4b782a062b7a1477fa6973905 /libavcodec/cljr.c
parent12dca02e9e0585bd49b7353c7c2fe7738f76e6f3 (diff)
cljr: add missing return statement in decode_end()
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/cljr.c')
-rw-r--r--libavcodec/cljr.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/cljr.c b/libavcodec/cljr.c
index dd720828a6..61bd909199 100644
--- a/libavcodec/cljr.c
+++ b/libavcodec/cljr.c
@@ -141,6 +141,7 @@ static av_cold int decode_end(AVCodecContext *avctx) {
if (a->picture.data[0]);
avctx->release_buffer(avctx, &a->picture);
+ return 0;
}
#if CONFIG_CLJR_ENCODER