From 4cd65b9d97e5fb172477b31d3dc5bc136cc6950b Mon Sep 17 00:00:00 2001 From: "roman.artiukhin" Date: Fri, 22 Dec 2023 13:40:54 +0200 Subject: Codecs: mp4: Disable SBR decoding for PP5002 - PP5022 platforms Includes ipod video (5G) and earlier models, sansa c200 and others players not capable to decode AAC-HE. Allows to play backward compatible files as AAC-LC. Change-Id: Ic9f5c0f255d9a4308c3414d402f8f27f4328ca94 --- lib/rbcodec/metadata/mp4.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'lib/rbcodec/metadata/mp4.c') diff --git a/lib/rbcodec/metadata/mp4.c b/lib/rbcodec/metadata/mp4.c index e05a588e7e..706a50e503 100644 --- a/lib/rbcodec/metadata/mp4.c +++ b/lib/rbcodec/metadata/mp4.c @@ -349,7 +349,10 @@ static bool read_mp4_esds(int fd, struct mp3entry* id3, uint32_t* size) } } } - +#ifndef CODEC_AAC_SBR_DEC + //SBR_DEC is disabled so disable sbr implicit signalling + sbr_signaled = true; +#endif if (!sbr && !sbr_signaled && id3->frequency <= 24000) { /* As stated in libfaad/mp4.c AudioSpecificConfig2: -- cgit v1.2.3