You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-11-06 08:29:25 +02:00
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>) Originally committed as revision 3975 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
committed by
Michael Niedermayer
parent
738386a5ed
commit
5c5dea3f0c
10
Makefile
10
Makefile
@@ -43,8 +43,14 @@ EXTRALIBS+=-lmp3lame
|
||||
endif
|
||||
endif
|
||||
|
||||
ifeq ($(CONFIG_VORBIS),yes)
|
||||
EXTRALIBS+=-lvorbis -lvorbisenc -logg
|
||||
ifeq ($(CONFIG_LIBOGG),yes)
|
||||
EXTRALIBS+= -logg
|
||||
ifeq ($(CONFIG_LIBVORBIS),yes)
|
||||
EXTRALIBS+= -lvorbis -lvorbisenc
|
||||
endif
|
||||
ifeq ($(CONFIG_LIBTHEORA),yes)
|
||||
EXTRALIBS+= -ltheora
|
||||
endif
|
||||
endif
|
||||
|
||||
ifeq ($(CONFIG_FAAD),yes)
|
||||
|
||||
Reference in New Issue
Block a user