comparison utils.c @ 7992:b5f5257c0c70 libavcodec

Mark list heads static. Patch by Diego Petten
author lu_zero
date Sat, 04 Oct 2008 09:29:31 +0000
parents 47f50599b368
children 81dba4c59fd6
comparison
equal deleted inserted replaced
7991:a38b31a2ac52 7992:b5f5257c0c70
77 77
78 return ptr; 78 return ptr;
79 } 79 }
80 80
81 /* encoder management */ 81 /* encoder management */
82 AVCodec *first_avcodec = NULL; 82 static AVCodec *first_avcodec = NULL;
83 83
84 AVCodec *av_codec_next(AVCodec *c){ 84 AVCodec *av_codec_next(AVCodec *c){
85 if(c) return c->next; 85 if(c) return c->next;
86 else return first_avcodec; 86 else return first_avcodec;
87 } 87 }