[oe-commits] [openembedded-core] 11/14: ffmpeg: don't use hardcoded lookup tables

git at git.openembedded.org git at git.openembedded.org
Sat Jul 20 11:06:13 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 51f13afe669638dbf72f464f243adccb22be3d21
Author: Ross Burton <ross.burton at intel.com>
AuthorDate: Fri Jul 19 21:19:57 2019 +0100

    ffmpeg: don't use hardcoded lookup tables
    
    ffmpeg can generate lookup tables at build time instead of runtime, but this is
    no longer a recommended option.  The size impact is significant (12% of the
    total libavcodec size, nearly 2MB), the runtime impact of dynamic tables isn't
    too costly, and only a few codecs actually use the pre-generated tables (MP3,
    notably).
    
    Signed-off-by: Ross Burton <ross.burton at intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/recipes-multimedia/ffmpeg/ffmpeg_4.1.3.bb | 1 -
 1 file changed, 1 deletion(-)

diff --git a/meta/recipes-multimedia/ffmpeg/ffmpeg_4.1.3.bb b/meta/recipes-multimedia/ffmpeg/ffmpeg_4.1.3.bb
index 147388d..6d230c3 100644
--- a/meta/recipes-multimedia/ffmpeg/ffmpeg_4.1.3.bb
+++ b/meta/recipes-multimedia/ffmpeg/ffmpeg_4.1.3.bb
@@ -106,7 +106,6 @@ EXTRA_OECONF = " \
     --extra-cflags="${TARGET_CFLAGS} ${HOST_CC_ARCH}${TOOLCHAIN_OPTIONS}" \
     --extra-ldflags="${TARGET_LDFLAGS}" \
     --sysroot="${STAGING_DIR_TARGET}" \
-    --enable-hardcoded-tables \
     ${EXTRA_FFCONF} \
     --libdir=${libdir} \
     --shlibdir=${libdir} \

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list