1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-18 15:25:05 +02:00

Remove useless ret variable added in last revision again.

Originally committed as revision 19357 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Reimar Döffinger 2009-07-06 10:28:58 +00:00
parent 7cda815044
commit c79c960ade

View File

@ -2291,7 +2291,6 @@ static av_cold int theora_decode_init(AVCodecContext *avctx)
uint8_t *header_start[3]; uint8_t *header_start[3];
int header_len[3]; int header_len[3];
int i; int i;
int ret;
s->theora = 1; s->theora = 1;
@ -2344,8 +2343,7 @@ static av_cold int theora_decode_init(AVCodecContext *avctx)
break; break;
} }
ret = vp3_decode_init(avctx); return vp3_decode_init(avctx);
return ret;
} }
AVCodec theora_decoder = { AVCodec theora_decoder = {