parser_config.c 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /*
  2. * Copyright (c) 2016 Actions Semi Co., Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief playback decode config.
  9. */
  10. #include <section_overlay.h>
  11. #include <arithmetic.h>
  12. #include <media_service.h>
  13. static const parser_config_info_t parser_config[] =
  14. {
  15. #ifdef CONFIG_PARSER_APE
  16. {
  17. .type = APE_TYPE,
  18. .overlay_id = OVERLAY_ID_LIBAPAPE,
  19. .ops = as_parser_ops_ape,
  20. },
  21. #endif
  22. #ifdef CONFIG_PARSER_FLAC
  23. {
  24. .type = FLA_TYPE,
  25. .overlay_id = OVERLAY_ID_LIBAPFLA,
  26. .ops = as_parser_ops_flac,
  27. },
  28. #endif
  29. #ifdef CONFIG_PARSER_MP3
  30. {
  31. .type = MP3_TYPE,
  32. .overlay_id = OVERLAY_ID_LIBAPMP3,
  33. .ops = as_parser_ops_mp3,
  34. },
  35. #endif
  36. #ifdef CONFIG_PARSER_WAV
  37. {
  38. .type = WAV_TYPE,
  39. .overlay_id = OVERLAY_ID_LIBAPWAV,
  40. .ops = as_parser_ops_wav,
  41. },
  42. #endif
  43. #ifdef CONFIG_PARSER_WMA
  44. {
  45. .type = WMA_TYPE,
  46. .overlay_id = OVERLAY_ID_LIBAPWMA,
  47. .ops = as_parser_ops_wma,
  48. },
  49. #endif
  50. #ifdef CONFIG_PARSER_M4A
  51. {
  52. .type = M4A_TYPE,
  53. .overlay_id = OVERLAY_ID_LIBAPAAC,
  54. .ops = as_parser_ops_a13,
  55. },
  56. #endif
  57. };
  58. const parser_config_info_t *parser_get_config(media_type_e type)
  59. {
  60. int i = 0;
  61. for (i = 0; i < ARRAY_SIZE(parser_config); i++) {
  62. if (type == parser_config[i].type) {
  63. return &parser_config[i];
  64. }
  65. }
  66. return NULL;
  67. }