comparison libfaad2/error.c @ 13453:6d50ef45a058

Update FAAD to a 2.1 beta CVS snapshot from 2004.07.12. patch by adland <adland123 at yahoo dot com>
author diego
date Fri, 24 Sep 2004 17:31:36 +0000
parents d81145997036
children 2ae5ab4331ca
comparison
equal deleted inserted replaced
13452:c364b7c13dd8 13453:6d50ef45a058
21 ** 21 **
22 ** Commercial non-GPL licensing of this software is possible. 22 ** Commercial non-GPL licensing of this software is possible.
23 ** For more info contact Ahead Software through Mpeg4AAClicense@nero.com. 23 ** For more info contact Ahead Software through Mpeg4AAClicense@nero.com.
24 ** 24 **
25 ** Initially modified for use with MPlayer by Arpad Gereöffy on 2003/08/30 25 ** Initially modified for use with MPlayer by Arpad Gereöffy on 2003/08/30
26 ** $Id: error.c,v 1.2 2004/06/02 22:59:02 diego Exp $ 26 ** $Id: error.c,v 1.3 2004/06/23 13:50:49 diego Exp $
27 ** detailed CVS changelog at http://www.mplayerhq.hu/cgi-bin/cvsweb.cgi/main/ 27 ** detailed CVS changelog at http://www.mplayerhq.hu/cgi-bin/cvsweb.cgi/main/
28 **/ 28 **/
29 29
30 #include "common.h" 30 #include "common.h"
31 #include "error.h" 31 #include "error.h"
32 32
33 int8_t *err_msg[] = { 33 char *err_msg[] = {
34 "No error", 34 "No error",
35 "Gain control not yet implemented", 35 "Gain control not yet implemented",
36 "Pulse coding not allowed in short blocks", 36 "Pulse coding not allowed in short blocks",
37 "Invalid huffman codebook", 37 "Invalid huffman codebook",
38 "Negative scalefactor found, should be impossible", 38 "Scalefactor out of range",
39 "Unable to find ADTS syncword", 39 "Unable to find ADTS syncword",
40 "Channel coupling not yet implemented", 40 "Channel coupling not yet implemented",
41 "Channel configuration not allowed in error resilient frame", 41 "Channel configuration not allowed in error resilient frame",
42 "Bit error in error resilient scalefactor decoding", 42 "Bit error in error resilient scalefactor decoding",
43 "Error decoding huffman scalefactor (bitstream error)", 43 "Error decoding huffman scalefactor (bitstream error)",
54 "SBR called without being initialised", 54 "SBR called without being initialised",
55 "Unexpected channel configuration change", 55 "Unexpected channel configuration change",
56 "Error in program_config_element", 56 "Error in program_config_element",
57 "First SBR frame is not the same as first AAC frame", 57 "First SBR frame is not the same as first AAC frame",
58 "Unexpected fill element with SBR data", 58 "Unexpected fill element with SBR data",
59 "Not all elements were provided with SBR data" 59 "Not all elements were provided with SBR data",
60 "LTP decoding not available",
61 "Output data buffer too small"
60 }; 62 };
61 63