diff options
author | Paul B Mahol <onemda@gmail.com> | 2011-12-08 12:39:47 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-12-08 14:44:05 +0000 |
commit | ca52bae6ec7588ae72a5a011d7af80645f999e5e (patch) | |
tree | f6c7a3c148bde3b4b782a062b7a1477fa6973905 /libavcodec/cljr.c | |
parent | 12dca02e9e0585bd49b7353c7c2fe7738f76e6f3 (diff) | |
download | ffmpeg-ca52bae6ec7588ae72a5a011d7af80645f999e5e.tar.gz |
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.c | 1 |
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 |