diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-08-13 15:30:42 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-08-13 15:30:42 +0000 |
commit | 8b69867f2ec2eec1d7f1dc15473799a5f0e806af (patch) | |
tree | 54151b025bd1351be2709433998c570119ec4e31 /libavformat/utils.c | |
parent | 1765920791ab459ab2155a3285459f8fe856daf5 (diff) | |
download | ffmpeg-8b69867f2ec2eec1d7f1dc15473799a5f0e806af.tar.gz |
Minor Patch for shared libs on Mac OSX by (Bill May <wmay at cisco dot com>)
Originally committed as revision 3387 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r-- | libavformat/utils.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index 94169adf92..b31f4c236a 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -21,9 +21,9 @@ #undef NDEBUG #include <assert.h> -AVInputFormat *first_iformat; -AVOutputFormat *first_oformat; -AVImageFormat *first_image_format; +AVInputFormat *first_iformat = NULL; +AVOutputFormat *first_oformat = NULL; +AVImageFormat *first_image_format = NULL; void av_register_input_format(AVInputFormat *format) { |