git.videolan.org
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cfb7e6e
)
Fix warning:
author
Baptiste Coudurier
<baptiste.coudurier@gmail.com>
Sat, 3 Jul 2010 23:22:25 +0000
(23:22 +0000)
committer
Baptiste Coudurier
<baptiste.coudurier@gmail.com>
Sat, 3 Jul 2010 23:22:25 +0000
(23:22 +0000)
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 24033 to svn://svn.ffmpeg.org/ffmpeg/trunk
ffmpeg.c
patch
|
blob
|
history
diff --git
a/ffmpeg.c
b/ffmpeg.c
index
908c384
..
a77093b
100644
(file)
--- 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;
+ int best;
//=0;
int best_dist=INT_MAX;
for(; *p; p++){
int dist= abs(st->codec->sample_rate - *p);