[packages] ffmpeg: add support for aac, mp2, ogg & vorbis, bump release number

git-svn-id: svn://svn.openwrt.org/openwrt/packages@22071 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico 2010-07-05 01:56:49 +00:00
parent 48e31da942
commit 1951711b72
2 changed files with 36 additions and 4 deletions

View File

@ -68,11 +68,19 @@ config FFMPEG_ENCODER_png
bool "PNG" bool "PNG"
select FFMPEG_ENCODER_zlib select FFMPEG_ENCODER_zlib
config FFMPEG_ENCODER_vorbis
bool "Vorbis"
config FFMPEG_ENCODER_zlib config FFMPEG_ENCODER_zlib
bool "Zlib" bool "Zlib"
comment "Decoders ---" comment "Decoders ---"
config FFMPEG_DECODER_aac
bool "AAC (Advanced Audio Coding)"
depends FFMPEG_PATENTED
select FFMPEG_PARSER_aac
config FFMPEG_DECODER_ac3 config FFMPEG_DECODER_ac3
bool "AC3" bool "AC3"
depends FFMPEG_PATENTED depends FFMPEG_PATENTED
@ -92,8 +100,12 @@ config FFMPEG_DECODER_h264
config FFMPEG_DECODER_jpegls config FFMPEG_DECODER_jpegls
bool "JPEG-LS" bool "JPEG-LS"
config FFMPEG_DECODER_mp2
bool "MP2 (MPEG Audio Layer 2)"
depends FFMPEG_PATENTED
config FFMPEG_DECODER_mp3 config FFMPEG_DECODER_mp3
bool "MP3" bool "MP3 (MPEG Audio Layer 2)"
depends FFMPEG_PATENTED depends FFMPEG_PATENTED
config FFMPEG_DECODER_mpegvideo config FFMPEG_DECODER_mpegvideo
@ -124,6 +136,9 @@ config FFMPEG_DECODER_png
bool "PNG" bool "PNG"
select FFMPEG_DECODER_zlib select FFMPEG_DECODER_zlib
config FFMPEG_DECODER_vorbis
bool "Vorbis"
config FFMPEG_DECODER_wmav1 config FFMPEG_DECODER_wmav1
bool "WMAv1" bool "WMAv1"
depends FFMPEG_PATENTED depends FFMPEG_PATENTED
@ -149,7 +164,7 @@ config FFMPEG_MUXER_h264
depends FFMPEG_PATENTED depends FFMPEG_PATENTED
config FFMPEG_MUXER_mp3 config FFMPEG_MUXER_mp3
bool "MP3" bool "MP3 (MPEG Audio Layer 3)"
config FFMPEG_MUXER_mp4 config FFMPEG_MUXER_mp4
bool "MP4" bool "MP4"
@ -163,6 +178,9 @@ config FFMPEG_MUXER_mpeg2video
config FFMPEG_MUXER_mpegts config FFMPEG_MUXER_mpegts
bool "MPEG-2 (TS)" bool "MPEG-2 (TS)"
config FFMPEG_MUXER_ogg
bool "Ogg"
config FFMPEG_MUXER_oss config FFMPEG_MUXER_oss
bool "OSS (Open Sound System playback)" bool "OSS (Open Sound System playback)"
@ -182,7 +200,7 @@ config FFMPEG_DEMUXER_h264
depends FFMPEG_PATENTED depends FFMPEG_PATENTED
config FFMPEG_DEMUXER_mp3 config FFMPEG_DEMUXER_mp3
bool "MP3" bool "MP3 (MPEG Audio Layer 3)"
config FFMPEG_DEMUXER_mpegvideo config FFMPEG_DEMUXER_mpegvideo
bool "MPEG Video" bool "MPEG Video"
@ -193,6 +211,9 @@ config FFMPEG_DEMUXER_mpegps
config FFMPEG_DEMUXER_mpegts config FFMPEG_DEMUXER_mpegts
bool "MPEG-2 (TS)" bool "MPEG-2 (TS)"
config FFMPEG_DEMUXER_ogg
bool "Ogg"
config FFMPEG_DEMUXER_rm config FFMPEG_DEMUXER_rm
bool "RM" bool "RM"
help help
@ -209,6 +230,10 @@ config FFMPEG_DEMUXER_sdp
comment "Parsers ---" comment "Parsers ---"
config FFMPEG_PARSER_aac
bool "AAC (Advanced Audio Coding)"
depends FFMPEG_PATENTED
config FFMPEG_PARSER_ac3 config FFMPEG_PARSER_ac3
bool "AC3" bool "AC3"

View File

@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=ffmpeg PKG_NAME:=ffmpeg
PKG_VERSION:=0.5.2 PKG_VERSION:=0.5.2
PKG_RELEASE:=3 PKG_RELEASE:=4
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=http://ffmpeg.org/releases/ PKG_SOURCE_URL:=http://ffmpeg.org/releases/
@ -24,14 +24,17 @@ FFMPEG_ENCODERS:= \
pcm_s16be \ pcm_s16be \
pcm_s16le \ pcm_s16le \
png \ png \
vorbis \
zlib \ zlib \
FFMPEG_DECODERS:= \ FFMPEG_DECODERS:= \
aac \
ac3 \ ac3 \
atrac3 \ atrac3 \
gif \ gif \
h264 \ h264 \
jpegls \ jpegls \
mp2 \
mp3 \ mp3 \
mpeg1video \ mpeg1video \
mpeg2video \ mpeg2video \
@ -41,6 +44,7 @@ FFMPEG_DECODERS:= \
pcm_s16be \ pcm_s16be \
pcm_s16le \ pcm_s16le \
png \ png \
vorbis \
wmav1 \ wmav1 \
wmav2 \ wmav2 \
zlib \ zlib \
@ -54,6 +58,7 @@ FFMPEG_MUXERS:= \
mpeg1video \ mpeg1video \
mpeg2video \ mpeg2video \
mpegts \ mpegts \
ogg \
oss \ oss \
rtp \ rtp \
@ -65,12 +70,14 @@ FFMPEG_DEMUXERS:= \
mpegps \ mpegps \
mpegts \ mpegts \
mpegvideo \ mpegvideo \
ogg \
rm \ rm \
rtsp \ rtsp \
sdp \ sdp \
v4l2 \ v4l2 \
FFMPEG_PARSERS:= \ FFMPEG_PARSERS:= \
aac \
ac3 \ ac3 \
h264 \ h264 \
mpegaudio \ mpegaudio \