comparison utils.c @ 2032:0817ee1f07e5 libavcodec

avcodec_find is in no header file, and appearently not used or very usefull so lets make it static ...
author michael
date Tue, 25 May 2004 18:17:25 +0000
parents 141a9539e270
children 02a4fd7c606c
comparison
equal deleted inserted replaced
2031:4225c131a2eb 2032:0817ee1f07e5
572 p = p->next; 572 p = p->next;
573 } 573 }
574 return NULL; 574 return NULL;
575 } 575 }
576 576
577 AVCodec *avcodec_find(enum CodecID id) 577 static AVCodec *avcodec_find(enum CodecID id)
578 { 578 {
579 AVCodec *p; 579 AVCodec *p;
580 p = first_avcodec; 580 p = first_avcodec;
581 while (p) { 581 while (p) {
582 if (p->id == id) 582 if (p->id == id)