# HG changeset patch # User michaelni # Date 1043841611 0 # Node ID 721705c1f995aa254ee4f33cd7ba8b381d3e8bd5 # Parent d20d414473a551787a4ad2bb370a737c4085d5dd --disable-risky support diff -r d20d414473a5 -r 721705c1f995 Makefile --- a/Makefile Tue Jan 28 20:20:38 2003 +0000 +++ b/Makefile Wed Jan 29 12:00:11 2003 +0000 @@ -11,9 +11,14 @@ OBJS= utils.o cutils.o allformats.o # mux and demuxes -OBJS+=mpeg.o mpegts.o ffm.o crc.o img.o raw.o rm.o asf.o \ +OBJS+=mpeg.o mpegts.o ffm.o crc.o img.o raw.o rm.o \ avienc.o avidec.o wav.o swf.o au.o gif.o mov.o jpeg.o dv.o \ yuv4mpeg.o + +ifeq ($(CONFIG_RISKY),yes) +OBJS+= asf.o +endif + # image formats OBJS+= pnm.o yuv.o # file I/O diff -r d20d414473a5 -r 721705c1f995 allformats.c --- a/allformats.c Tue Jan 28 20:20:38 2003 +0000 +++ b/allformats.c Wed Jan 29 12:00:11 2003 +0000 @@ -35,7 +35,9 @@ img_init(); raw_init(); rm_init(); +#ifdef CONFIG_RISKY asf_init(); +#endif avienc_init(); avidec_init(); wav_init();