Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

error_private.c 2.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*
  2. * Copyright (c) 2016-present, Yann Collet, Facebook, Inc.
  3. * All rights reserved.
  4. *
  5. * This source code is licensed under both the BSD-style license (found in the
  6. * LICENSE file in the root directory of this source tree) and the GPLv2 (found
  7. * in the COPYING file in the root directory of this source tree).
  8. * You may select, at your option, one of the above-listed licenses.
  9. */
  10. /* The purpose of this file is to have a single list of error strings embedded in binary */
  11. #include "error_private.h"
  12. const char* ERR_getErrorString(ERR_enum code)
  13. {
  14. static const char* const notErrorCode = "Unspecified error code";
  15. switch( code )
  16. {
  17. case PREFIX(no_error): return "No error detected";
  18. case PREFIX(GENERIC): return "Error (generic)";
  19. case PREFIX(prefix_unknown): return "Unknown frame descriptor";
  20. case PREFIX(version_unsupported): return "Version not supported";
  21. case PREFIX(frameParameter_unsupported): return "Unsupported frame parameter";
  22. case PREFIX(frameParameter_windowTooLarge): return "Frame requires too much memory for decoding";
  23. case PREFIX(corruption_detected): return "Corrupted block detected";
  24. case PREFIX(checksum_wrong): return "Restored data doesn't match checksum";
  25. case PREFIX(parameter_unsupported): return "Unsupported parameter";
  26. case PREFIX(parameter_outOfBound): return "Parameter is out of bound";
  27. case PREFIX(init_missing): return "Context should be init first";
  28. case PREFIX(memory_allocation): return "Allocation error : not enough memory";
  29. case PREFIX(stage_wrong): return "Operation not authorized at current processing stage";
  30. case PREFIX(dstSize_tooSmall): return "Destination buffer is too small";
  31. case PREFIX(srcSize_wrong): return "Src size is incorrect";
  32. case PREFIX(tableLog_tooLarge): return "tableLog requires too much memory : unsupported";
  33. case PREFIX(maxSymbolValue_tooLarge): return "Unsupported max Symbol Value : too large";
  34. case PREFIX(maxSymbolValue_tooSmall): return "Specified maxSymbolValue is too small";
  35. case PREFIX(dictionary_corrupted): return "Dictionary is corrupted";
  36. case PREFIX(dictionary_wrong): return "Dictionary mismatch";
  37. case PREFIX(dictionaryCreation_failed): return "Cannot create Dictionary from provided samples";
  38. case PREFIX(frameIndex_tooLarge): return "Frame index is too large";
  39. case PREFIX(seekableIO): return "An I/O error occurred when reading/seeking";
  40. case PREFIX(maxCode):
  41. default: return notErrorCode;
  42. }
  43. }