cljr: add missing return statement in decode_end()

Signed-off-by: Mans Rullgard <mans@mansr.com>
This commit is contained in:
Paul B Mahol 2011-12-08 12:39:47 +00:00 committed by Mans Rullgard
parent 12dca02e9e
commit ca52bae6ec

View File

@ -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