changeset 7992:b5f5257c0c70 libavcodec

Mark list heads static. Patch by Diego Petten
author lu_zero
date Sat, 04 Oct 2008 09:29:31 +0000
parents a38b31a2ac52
children 2dfff0e25b47
files bitstream_filter.c parser.c utils.c
diffstat 3 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/bitstream_filter.c	Sat Oct 04 01:11:04 2008 +0000
+++ b/bitstream_filter.c	Sat Oct 04 09:29:31 2008 +0000
@@ -20,7 +20,7 @@
 
 #include "avcodec.h"
 
-AVBitStreamFilter *first_bitstream_filter= NULL;
+static AVBitStreamFilter *first_bitstream_filter= NULL;
 
 AVBitStreamFilter *av_bitstream_filter_next(AVBitStreamFilter *f){
     if(f) return f->next;
--- a/parser.c	Sat Oct 04 01:11:04 2008 +0000
+++ b/parser.c	Sat Oct 04 09:29:31 2008 +0000
@@ -22,7 +22,7 @@
 
 #include "parser.h"
 
-AVCodecParser *av_first_parser = NULL;
+static AVCodecParser *av_first_parser = NULL;
 
 AVCodecParser* av_parser_next(AVCodecParser *p){
     if(p) return p->next;
--- a/utils.c	Sat Oct 04 01:11:04 2008 +0000
+++ b/utils.c	Sat Oct 04 09:29:31 2008 +0000
@@ -79,7 +79,7 @@
 }
 
 /* encoder management */
-AVCodec *first_avcodec = NULL;
+static AVCodec *first_avcodec = NULL;
 
 AVCodec *av_codec_next(AVCodec *c){
     if(c) return c->next;