diff utils.c @ 2522:e25782262d7d libavcodec

kill warnings patch by (M?ns Rullg?rd <mru inprovide com>)
author michael
date Thu, 24 Feb 2005 19:08:50 +0000
parents 36d70fbb31c5
children c07be5590462
line wrap: on
line diff
--- a/utils.c	Thu Feb 24 16:39:03 2005 +0000
+++ b/utils.c	Thu Feb 24 19:08:50 2005 +0000
@@ -677,18 +677,6 @@
     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;