Commit c79c960a authored by Reimar Döffinger's avatar Reimar Döffinger

Remove useless ret variable added in last revision again.

Originally committed as revision 19357 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 7cda8150
......@@ -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 = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment