[Ffmpeg-cvslog] r5787 - in trunk: MAINTAINERS libavformat/Makefile libavformat/allformats.c libavformat/allformats.h libavformat/gxf.h libavformat/gxfenc.c

Diego Biurrun diego
Wed Jul 19 12:49:19 CEST 2006


On Wed, Jul 19, 2006 at 11:38:22AM +0200, bcoudurier wrote:
> 
> Added:
>    trunk/libavformat/gxf.h
>    trunk/libavformat/gxfenc.c
> Modified:
>    trunk/MAINTAINERS
>    trunk/libavformat/Makefile
>    trunk/libavformat/allformats.c
>    trunk/libavformat/allformats.h
> 
> Log:
> GXF muxer
> 
> --- trunk/libavformat/Makefile	(original)
> +++ trunk/libavformat/Makefile	Wed Jul 19 11:38:22 2006
> @@ -183,6 +183,10 @@
>  
> +ifeq ($(CONFIG_GPL),yes)
> +OBJS-$(CONFIG_GXF_MUXER)                 += gxfenc.o
> +endif
> +
> 
> --- trunk/libavformat/allformats.c	(original)
> +++ trunk/libavformat/allformats.c	Wed Jul 19 11:38:22 2006
> @@ -138,6 +138,9 @@
> +#if defined(CONFIG_GXF_MUXER) && defined(CONFIG_GPL)
> +    av_register_output_format(&gxf_muxer);
> +#endif

Note (to self): This should be done from configure.  CONFIG_GXF_MUXER
should only be set if --enable-gpl is specified.

Diego





More information about the ffmpeg-cvslog mailing list