error.c

00001 /*
00002 ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding
00003 ** Copyright (C) 2003-2005 M. Bakker, Ahead Software AG, http://www.nero.com
00004 **  
00005 ** This program is free software; you can redistribute it and/or modify
00006 ** it under the terms of the GNU General Public License as published by
00007 ** the Free Software Foundation; either version 2 of the License, or
00008 ** (at your option) any later version.
00009 ** 
00010 ** This program is distributed in the hope that it will be useful,
00011 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
00012 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00013 ** GNU General Public License for more details.
00014 ** 
00015 ** You should have received a copy of the GNU General Public License
00016 ** along with this program; if not, write to the Free Software 
00017 ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
00018 **
00019 ** Any non-GPL usage of this software or parts of this software is strictly
00020 ** forbidden.
00021 **
00022 ** Software using this code must display the following message visibly in the
00023 ** software:
00024 ** "FAAD2 AAC/HE-AAC/HE-AACv2/DRM decoder (c) Ahead Software, www.nero.com"
00025 ** in, for example, the about-box or help/startup screen.
00026 **
00027 ** Commercial non-GPL licensing of this software is possible.
00028 ** For more info contact Ahead Software through [email protected].
00029 **
00030 ** $Id: error.c,v 1.2 2005/11/01 21:41:43 gabest Exp $
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 

Generated on Tue Dec 13 14:47:31 2005 for guliverkli by  doxygen 1.4.5