00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033 #include "common.h"
00034 #include "error.h"
00035
00036 char *err_msg[] = {
00037 "No error",
00038 "Gain control not yet implemented",
00039 "Pulse coding not allowed in short blocks",
00040 "Invalid huffman codebook",
00041 "Scalefactor out of range",
00042 "Unable to find ADTS syncword",
00043 "Channel coupling not yet implemented",
00044 "Channel configuration not allowed in error resilient frame",
00045 "Bit error in error resilient scalefactor decoding",
00046 "Error decoding huffman scalefactor (bitstream error)",
00047 "Error decoding huffman codeword (bitstream error)",
00048 "Non existent huffman codebook number found",
00049 "Invalid number of channels",
00050 "Maximum number of bitstream elements exceeded",
00051 "Input data buffer too small",
00052 "Array index out of range",
00053 "Maximum number of scalefactor bands exceeded",
00054 "Quantised value out of range",
00055 "LTP lag out of range",
00056 "Invalid SBR parameter decoded",
00057 "SBR called without being initialised",
00058 "Unexpected channel configuration change",
00059 "Error in program_config_element",
00060 "First SBR frame is not the same as first AAC frame",
00061 "Unexpected fill element with SBR data",
00062 "Not all elements were provided with SBR data",
00063 "LTP decoding not available",
00064 "Output data buffer too small",
00065 "CRC error in DRM data",
00066 "PNS not allowed in DRM data stream",
00067 "No standard extension payload allowed in DRM",
00068 "PCE shall be the first element in a frame",
00069 "Bitstream value not allowed by specification"
00070 };
00071