summaryrefslogtreecommitdiff
path: root/lib/rbcodec/metadata/mp4.c
diff options
context:
space:
mode:
authorroman.artiukhin <bahusdrive@gmail.com>2023-12-22 13:40:54 +0200
committerSolomon Peachy <pizza@shaftnet.org>2023-12-31 20:44:15 -0500
commit4cd65b9d97e5fb172477b31d3dc5bc136cc6950b (patch)
tree1ea09715a6f15456d762efa22dc40617e20e393d /lib/rbcodec/metadata/mp4.c
parentfc65bdab4e9d62fb5edf74284944a204aefd5160 (diff)
downloadrockbox-4cd65b9d97e5fb172477b31d3dc5bc136cc6950b.tar.gz
rockbox-4cd65b9d97e5fb172477b31d3dc5bc136cc6950b.zip
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
Diffstat (limited to 'lib/rbcodec/metadata/mp4.c')
-rw-r--r--lib/rbcodec/metadata/mp4.c5
1 files changed, 4 insertions, 1 deletions
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)
349 } 349 }
350 } 350 }
351 } 351 }
352 352#ifndef CODEC_AAC_SBR_DEC
353 //SBR_DEC is disabled so disable sbr implicit signalling
354 sbr_signaled = true;
355#endif
353 if (!sbr && !sbr_signaled && id3->frequency <= 24000) 356 if (!sbr && !sbr_signaled && id3->frequency <= 24000)
354 { 357 {
355 /* As stated in libfaad/mp4.c AudioSpecificConfig2: 358 /* As stated in libfaad/mp4.c AudioSpecificConfig2: