comparison utils.c @ 512:8dfd00fb6a6d libavformat

Minor Patch for shared libs on Mac OSX by (Bill May <wmay at cisco dot com>)
author michael
date Fri, 13 Aug 2004 15:30:42 +0000
parents 056991ab9f10
children 8430e4610971
comparison
equal deleted inserted replaced
511:056991ab9f10 512:8dfd00fb6a6d
19 #include "avformat.h" 19 #include "avformat.h"
20 20
21 #undef NDEBUG 21 #undef NDEBUG
22 #include <assert.h> 22 #include <assert.h>
23 23
24 AVInputFormat *first_iformat; 24 AVInputFormat *first_iformat = NULL;
25 AVOutputFormat *first_oformat; 25 AVOutputFormat *first_oformat = NULL;
26 AVImageFormat *first_image_format; 26 AVImageFormat *first_image_format = NULL;
27 27
28 void av_register_input_format(AVInputFormat *format) 28 void av_register_input_format(AVInputFormat *format)
29 { 29 {
30 AVInputFormat **p; 30 AVInputFormat **p;
31 p = &first_iformat; 31 p = &first_iformat;