changeset 682:decfffe703bc libavformat

01-makefile_fix_updated.patch Adds --enable-theora/--enable-vorbis/--enable-ogg to configure If compiled WITHOUT --enable-theora, native VP3 decoder is used patch by (Nilesh Bansal <nileshbansal gmail com>)
author michael
date Thu, 24 Feb 2005 15:18:02 +0000
parents 9b13019c4599
children 095009fc2f35
files Makefile allformats.c nut.c
diffstat 3 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile	Tue Feb 22 19:48:07 2005 +0000
+++ b/Makefile	Thu Feb 24 15:18:02 2005 +0000
@@ -67,7 +67,7 @@
 endif
 endif
 
-ifeq ($(CONFIG_VORBIS),yes)
+ifeq ($(CONFIG_LIBOGG),yes)
 OBJS+= ogg.o
 endif
 
--- a/allformats.c	Tue Feb 22 19:48:07 2005 +0000
+++ b/allformats.c	Thu Feb 24 15:18:02 2005 +0000
@@ -82,7 +82,7 @@
 #endif
     yuv4mpeg_init();
     
-#ifdef CONFIG_VORBIS
+#ifdef CONFIG_LIBOGG
     ogg_init();
 #endif
 
--- a/nut.c	Tue Feb 22 19:48:07 2005 +0000
+++ b/nut.c	Thu Feb 24 15:18:02 2005 +0000
@@ -1433,7 +1433,7 @@
     "video/x-nut",
     "nut",
     sizeof(NUTContext),
-#ifdef CONFIG_VORBIS
+#ifdef CONFIG_LIBVORBIS
     CODEC_ID_VORBIS,
 #elif defined(CONFIG_MP3LAME)
     CODEC_ID_MP3,