From 0c10ea2f52da97804583567bb70d1f733e32700b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erik=20Andr=C3=A9n=20Zachrisson?= Date: Fri, 16 Oct 2020 20:15:03 +0100 Subject: [PATCH] Change faac object type to LOW to make the faac library to accept the configuration --- darkice/trunk/src/FaacEncoder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/darkice/trunk/src/FaacEncoder.cpp b/darkice/trunk/src/FaacEncoder.cpp index 873c560..0910c02 100644 --- a/darkice/trunk/src/FaacEncoder.cpp +++ b/darkice/trunk/src/FaacEncoder.cpp @@ -90,7 +90,7 @@ FaacEncoder :: open ( void ) faacConfig = faacEncGetCurrentConfiguration(encoderHandle); - faacConfig->aacObjectType = MAIN; + faacConfig->aacObjectType = LOW; faacConfig->mpegVersion = MPEG2; faacConfig->useTns = 1; faacConfig->shortctl = SHORTCTL_NORMAL;