From 3c5e1b36d5ce0d75e1b63fafab93e8efeb6a6fcd Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Sat, 3 Jul 2010 23:24:37 +0000 Subject: LOL, 100l, really fix warning: ffmpeg.c: In function 'new_audio_stream': ffmpeg.c:665: warning: 'best' may be used uninitialized in this function ffmpeg.c:665: note: 'best' was declared here Originally committed as revision 24034 to svn://svn.ffmpeg.org/ffmpeg/trunk --- ffmpeg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffmpeg.c b/ffmpeg.c index a77093bd98..30a319c244 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -662,7 +662,7 @@ static void choose_sample_rate(AVStream *st, AVCodec *codec) { if(codec && codec->supported_samplerates){ const int *p= codec->supported_samplerates; - int best;//=0; + int best=0; int best_dist=INT_MAX; for(; *p; p++){ int dist= abs(st->codec->sample_rate - *p); -- cgit v1.2.3