|
@ -20,7 +20,7 @@ function [SNR, bitrate, compression] = demoAAC3(fNameIn, fNameOut, frameAACoded) |
|
|
totalSize = 0; % In bits |
|
|
totalSize = 0; % In bits |
|
|
for frameIndex = 1:length(AACSeq3) |
|
|
for frameIndex = 1:length(AACSeq3) |
|
|
totalSize = totalSize + 2; % frameType |
|
|
totalSize = totalSize + 2; % frameType |
|
|
totalSize = totalSize + 4 * 4; % TNS coefficients |
|
|
totalSize = totalSize + 2 * 4 * 4; % TNS coefficients |
|
|
totalSize = totalSize + length(AACSeq3(frameIndex).chl.G) * 16; |
|
|
totalSize = totalSize + length(AACSeq3(frameIndex).chl.G) * 16; |
|
|
totalSize = totalSize + length(AACSeq3(frameIndex).chr.G) * 16; |
|
|
totalSize = totalSize + length(AACSeq3(frameIndex).chr.G) * 16; |
|
|
totalSize = totalSize + length(AACSeq3(frameIndex).chl.sfc); |
|
|
totalSize = totalSize + length(AACSeq3(frameIndex).chl.sfc); |
|
|