diff options
author | Compn <tempn@twmi.rr.com> | 2013-10-31 15:57:16 -0400 |
---|---|---|
committer | Compn <tempn@twmi.rr.com> | 2013-10-31 15:57:16 -0400 |
commit | 6173b0fea71aae0855dc2bbcb030a49cdcb72f55 (patch) | |
tree | bb4ffdbb7713543695d3a04d4267efc841dd3cb1 /libavcodec | |
parent | 5ab1efb9d0dc65e748a0291b67915e35578b302e (diff) | |
download | ffmpeg-6173b0fea71aae0855dc2bbcb030a49cdcb72f55.tar.gz |
aacdec: fix small comment, update decoder features comment
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/aacdec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/aacdec.c b/libavcodec/aacdec.c index eb6ee5e331..bb613f009a 100644 --- a/libavcodec/aacdec.c +++ b/libavcodec/aacdec.c @@ -74,6 +74,7 @@ * N SinuSoidal Coding (Transient, Sinusoid, Noise) * Y Parametric Stereo * N Direct Stream Transfer + * Y Enhanced AAC Low Delay (ER AAC ELD) * * Note: - HE AAC v1 comprises LC AAC with Spectral Band Replication. * - HE AAC v2 comprises LC AAC with Spectral Band Replication and @@ -2533,7 +2534,7 @@ static void imdct_and_windowing_eld(AACContext *ac, SingleChannelElement *sce) // Inverse transform, mapped to the conventional IMDCT by // Chivukula, R.K.; Reznik, Y.A.; Devarajan, V., // "Efficient algorithms for MPEG-4 AAC-ELD, AAC-LD and AAC-LC filterbanks," - // Audio, Language and Image Processing, 2008. ICALIP 2008. International Conference on + // International Conference on Audio, Language and Image Processing, ICALIP 2008. // URL: http://ieeexplore.ieee.org/stamp/stamp.jsp?tp=&arnumber=4590245&isnumber=4589950 for (i = 0; i < n2; i+=2) { float temp; |