Mercurial > libavformat.hg
changeset 384:9479dac25620 libavformat
fix global name conflicts patch by ("Ronald S. Bultje" <R dot S dot Bultje at students dot uu dot nl>)
author | michael |
---|---|
date | Sat, 13 Mar 2004 23:04:37 +0000 |
parents | 1674ed5ca2f0 |
children | 2f56d366a787 |
files | allformats.c avformat.h dv.c wav.c |
diffstat | 4 files changed, 6 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/allformats.c Sat Mar 13 21:02:26 2004 +0000 +++ b/allformats.c Sat Mar 13 23:04:37 2004 +0000 @@ -45,7 +45,7 @@ avienc_init(); #endif //CONFIG_ENCODERS avidec_init(); - wav_init(); + ff_wav_init(); swf_init(); au_init(); #ifdef CONFIG_ENCODERS @@ -56,7 +56,7 @@ movenc_init(); jpeg_init(); #endif //CONFIG_ENCODERS - dv_init(); + ff_dv_init(); fourxm_init(); #ifdef CONFIG_ENCODERS flvenc_init();
--- a/avformat.h Sat Mar 13 21:02:26 2004 +0000 +++ b/avformat.h Sat Mar 13 23:04:37 2004 +0000 @@ -425,7 +425,7 @@ int amr_init(void); /* wav.c */ -int wav_init(void); +int ff_wav_init(void); /* raw.c */ int pcm_read_seek(AVFormatContext *s, @@ -442,7 +442,7 @@ int ogg_init(void); /* dv.c */ -int dv_init(void); +int ff_dv_init(void); /* ffm.c */ int ffm_init(void);