From c79c960adea64c12e5b2f6495319401cb12da21d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Reimar=20D=C3=B6ffinger?= Date: Mon, 6 Jul 2009 10:28:58 +0000 Subject: [PATCH] Remove useless ret variable added in last revision again. Originally committed as revision 19357 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/vp3.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/libavcodec/vp3.c b/libavcodec/vp3.c index 27ea190a71..47e83f2154 100644 --- a/libavcodec/vp3.c +++ b/libavcodec/vp3.c @@ -2291,7 +2291,6 @@ static av_cold int theora_decode_init(AVCodecContext *avctx) uint8_t *header_start[3]; int header_len[3]; int i; - int ret; s->theora = 1; @@ -2344,8 +2343,7 @@ static av_cold int theora_decode_init(AVCodecContext *avctx) break; } - ret = vp3_decode_init(avctx); - return ret; + return vp3_decode_init(avctx); } AVCodec theora_decoder = {