Retain API compatibility with faac 1.29.9 and later

Details:
- See PR 223416
This commit is contained in:
Thomas Zander
2017-11-05 15:27:59 +00:00
parent 0cf7febaa6
commit 7e359aed0e
2 changed files with 14 additions and 1 deletions

View File

@@ -3,7 +3,7 @@
PORTNAME= mencoder
PORTVERSION= ${MPLAYER_PORT_VERSION}.${MPLAYER_SNAPSHOT_DATE:S/-//g}
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= multimedia audio
MAINTAINER= riggs@FreeBSD.org

View File

@@ -0,0 +1,13 @@
--- libmpcodecs/ae_faac.c.orig 2011-07-27 15:33:03 UTC
+++ libmpcodecs/ae_faac.c
@@ -183,7 +183,9 @@ int mpae_init_faac(audio_encoder_t *enco
if(MAIN==0) config->aacObjectType--;
config->mpegVersion = (param_mpeg == 4 ? MPEG4 : MPEG2);
config->useTns = param_tns;
- config->allowMidside = 1;
+ //Do not set allowMidside for API compatibility with faac,
+ //see https://github.com/knik0/faac/issues/8 for details
+ //config->allowMidside = 1;
config->shortctl = SHORTCTL_NORMAL;
param_cutoff = param_cutoff ? param_cutoff : encoder->params.sample_rate / 2;
if(param_cutoff > encoder->params.sample_rate / 2)