From: Markham Date: Sun, 30 Jul 2023 13:14:51 +0000 (+0200) Subject: ffmpeg: enable hardcoded tables X-Git-Url: https://git.webhop.me/?a=commitdiff_plain;h=93cfbe218023425a6b5f863c255de21df608e839;p=bs-cst-neutrino-hd.git ffmpeg: enable hardcoded tables --- diff --git a/make/ffmpeg.mk b/make/ffmpeg.mk index a4016cb..e5969ac 100644 --- a/make/ffmpeg.mk +++ b/make/ffmpeg.mk @@ -435,11 +435,12 @@ FFMPEG_CONFIGURE = \ $(FFMPEG_OPTIONS) endif -ifeq ($(BOXFAMILY), $(filter $(BOXFAMILY), apollo kronos)) -FFMPEG_CONFIGURE += --cpu=cortex-a9 --enable-vfp --extra-cflags="-mfpu=vfpv3-d16 -mfloat-abi=hard -I$(TARGETPREFIX)/include" +ifeq ($(BOXSERIES), $(filter $(BOXSERIES), hd2)) +FFMPEG_CONFIGURE += --enable-hardcoded-tables +FFMPEG_CONFIGURE += --cpu=cortex-a9 --enable-vfp --extra-cflags='-mfpu=vfpv3-d16 -mfloat-abi=hard -I$(TARGETPREFIX)/include' endif -ifeq ($(BOXFAMILY), nevis) +ifeq ($(BOXSERIES), $(filter $(BOXSERIES), hd1)) FFMPEG_CONFIGURE += --disable-iconv FFMPEG_CONFIGURE += --cpu=armv6 --disable-vfp --extra-cflags="-I$(TARGETPREFIX)/include" endif