summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2011-12-08 12:39:47 +0000
committerMans Rullgard <mans@mansr.com>2011-12-08 14:44:05 +0000
commitca52bae6ec7588ae72a5a011d7af80645f999e5e (patch)
treef6c7a3c148bde3b4b782a062b7a1477fa6973905 /libavcodec
parent12dca02e9e0585bd49b7353c7c2fe7738f76e6f3 (diff)
cljr: add missing return statement in decode_end()
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec')
-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