package/ffmpeg: Enable support for libavresample
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
1987e06be0
commit
f3765858c5
@ -49,6 +49,11 @@ config BR2_PACKAGE_FFMPEG_FFSERVER
|
|||||||
help
|
help
|
||||||
FFserver is a streaming server for both audio and video.
|
FFserver is a streaming server for both audio and video.
|
||||||
|
|
||||||
|
config BR2_PACKAGE_FFMPEG_AVRESAMPLE
|
||||||
|
bool "Build libavresample"
|
||||||
|
help
|
||||||
|
Avresample is a audio conversion library for compatibility.
|
||||||
|
|
||||||
config BR2_PACKAGE_FFMPEG_POSTPROC
|
config BR2_PACKAGE_FFMPEG_POSTPROC
|
||||||
bool "Build libpostproc"
|
bool "Build libpostproc"
|
||||||
depends on BR2_PACKAGE_FFMPEG_GPL
|
depends on BR2_PACKAGE_FFMPEG_GPL
|
||||||
|
@ -98,6 +98,12 @@ else
|
|||||||
FFMPEG_CONF_OPTS += --disable-ffserver
|
FFMPEG_CONF_OPTS += --disable-ffserver
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(BR2_PACKAGE_FFMPEG_AVRESAMPLE),y)
|
||||||
|
FFMPEG_CONF_OPTS += --enable-avresample
|
||||||
|
else
|
||||||
|
FFMPEG_CONF_OPTS += --disable-avresample
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_FFMPEG_POSTPROC),y)
|
ifeq ($(BR2_PACKAGE_FFMPEG_POSTPROC),y)
|
||||||
FFMPEG_CONF_OPTS += --enable-postproc
|
FFMPEG_CONF_OPTS += --enable-postproc
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user