kill warnings patch by (Måns Rullgård <mru inprovide com>)
Originally committed as revision 3977 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:

committed by
Michael Niedermayer

parent
53513831da
commit
88730be651
@@ -677,18 +677,6 @@ AVCodec *avcodec_find_decoder_by_name(const char *name)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static AVCodec *avcodec_find(enum CodecID id)
|
||||
{
|
||||
AVCodec *p;
|
||||
p = first_avcodec;
|
||||
while (p) {
|
||||
if (p->id == id)
|
||||
return p;
|
||||
p = p->next;
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
|
||||
{
|
||||
const char *codec_name;
|
||||
|
Reference in New Issue
Block a user