Commit e6df765e authored by Diego Pettenò's avatar Diego Pettenò Committed by Luca Barbato

Mark list heads static. Patch by Diego Pettenò

Originally committed as revision 15548 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 88b77ef1
......@@ -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;
......
......@@ -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;
......
......@@ -79,7 +79,7 @@ void *av_fast_realloc(void *ptr, unsigned int *size, unsigned int min_size)
}
/* encoder management */
AVCodec *first_avcodec = NULL;
static AVCodec *first_avcodec = NULL;
AVCodec *av_codec_next(AVCodec *c){
if(c) return c->next;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment