From 6168555b4f92ccd00aa93494aa8e77f1a94baa74 Mon Sep 17 00:00:00 2001 From: Alexey Khit Date: Tue, 8 Nov 2022 22:31:31 +0300 Subject: [PATCH] Fix AAC object type numeration --- codec/aacparser/parser.go | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/codec/aacparser/parser.go b/codec/aacparser/parser.go index a597422..bc798fa 100644 --- a/codec/aacparser/parser.go +++ b/codec/aacparser/parser.go @@ -21,13 +21,16 @@ const ( AOT_TWINVQ ///< N Twin Vector Quantizer AOT_CELP ///< N Code Excited Linear Prediction AOT_HVXC ///< N Harmonic Vector eXcitation Coding - AOT_TTSI = 12 + iota ///< N Text-To-Speech Interface + _ + _ + AOT_TTSI ///< N Text-To-Speech Interface AOT_MAINSYNTH ///< N Main Synthesis AOT_WAVESYNTH ///< N Wavetable Synthesis AOT_MIDI ///< N General MIDI AOT_SAFX ///< N Algorithmic Synthesis and Audio Effects AOT_ER_AAC_LC ///< N Error Resilient Low Complexity - AOT_ER_AAC_LTP = 19 + iota ///< N Error Resilient Long Term Prediction + _ + AOT_ER_AAC_LTP ///< N Error Resilient Long Term Prediction AOT_ER_AAC_SCALABLE ///< N Error Resilient Scalable AOT_ER_TWINVQ ///< N Error Resilient Twin Vector Quantizer AOT_ER_BSAC ///< N Error Resilient Bit-Sliced Arithmetic Coding