OMX_AudioExt.h 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. /*
  2. * Copyright (c) 2010 The Khronos Group Inc.
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining
  5. * a copy of this software and associated documentation files (the
  6. * "Software"), to deal in the Software without restriction, including
  7. * without limitation the rights to use, copy, modify, merge, publish,
  8. * distribute, sublicense, and/or sell copies of the Software, and to
  9. * permit persons to whom the Software is furnished to do so, subject
  10. * to the following conditions:
  11. * The above copyright notice and this permission notice shall be included
  12. * in all copies or substantial portions of the Software.
  13. *
  14. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  15. * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  16. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  17. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
  18. * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
  19. * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
  20. * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  21. *
  22. */
  23. /** OMX_AudioExt.h - OpenMax IL version 1.1.2
  24. * The OMX_AudioExt header file contains extensions to the
  25. * definitions used by both the application and the component to
  26. * access video items.
  27. */
  28. #ifndef OMX_AudioExt_h
  29. #define OMX_AudioExt_h
  30. #ifdef __cplusplus
  31. extern "C" {
  32. #endif /* __cplusplus */
  33. /* Each OMX header shall include all required header files to allow the
  34. * header to compile without errors. The includes below are required
  35. * for this header file to compile successfully
  36. */
  37. #include <OMX_Core.h>
  38. #define OMX_AUDIO_AACToolAndroidSSBR (OMX_AUDIO_AACToolVendor << 0) /**< SSBR: MPEG-4 Single-rate (downsampled) Spectral Band Replication tool allowed or active */
  39. #define OMX_AUDIO_AACToolAndroidDSBR (OMX_AUDIO_AACToolVendor << 1) /**< DSBR: MPEG-4 Dual-rate Spectral Band Replication tool allowed or active */
  40. typedef enum OMX_AUDIO_CODINGEXTTYPE {
  41. OMX_AUDIO_CodingAndroidUnused = OMX_AUDIO_CodingKhronosExtensions + 0x00100000,
  42. OMX_AUDIO_CodingAndroidAC3, /**< AC3 encoded data */
  43. OMX_AUDIO_CodingAndroidOPUS, /**< OPUS encoded data */
  44. OMX_AUDIO_CodingAndroidEAC3, /**< EAC3 encoded data */
  45. } OMX_AUDIO_CODINGEXTTYPE;
  46. typedef struct OMX_AUDIO_PARAM_ANDROID_AC3TYPE {
  47. OMX_U32 nSize; /**< size of the structure in bytes */
  48. OMX_VERSIONTYPE nVersion; /**< OMX specification version information */
  49. OMX_U32 nPortIndex; /**< port that this structure applies to */
  50. OMX_U32 nChannels; /**< Number of channels */
  51. OMX_U32 nSampleRate; /**< Sampling rate of the source data. Use 0 for
  52. variable or unknown sampling rate. */
  53. } OMX_AUDIO_PARAM_ANDROID_AC3TYPE;
  54. typedef struct OMX_AUDIO_PARAM_ANDROID_EAC3TYPE {
  55. OMX_U32 nSize; /**< size of the structure in bytes */
  56. OMX_VERSIONTYPE nVersion; /**< OMX specification version information */
  57. OMX_U32 nPortIndex; /**< port that this structure applies to */
  58. OMX_U32 nChannels; /**< Number of channels */
  59. OMX_U32 nSampleRate; /**< Sampling rate of the source data. Use 0 for
  60. variable or unknown sampling rate. */
  61. } OMX_AUDIO_PARAM_ANDROID_EAC3TYPE;
  62. typedef struct OMX_AUDIO_PARAM_ANDROID_OPUSTYPE {
  63. OMX_U32 nSize; /**< size of the structure in bytes */
  64. OMX_VERSIONTYPE nVersion; /**< OMX specification version information */
  65. OMX_U32 nPortIndex; /**< port that this structure applies to */
  66. OMX_U32 nChannels; /**< Number of channels */
  67. OMX_U32 nBitRate; /**< Bit rate of the encoded data data. Use 0 for variable
  68. rate or unknown bit rates. Encoding is set to the
  69. bitrate closest to specified value (in bps) */
  70. OMX_U32 nSampleRate; /**< Sampling rate of the source data. Use 0 for
  71. variable or unknown sampling rate. */
  72. OMX_U32 nAudioBandWidth; /**< Audio band width (in Hz) to which an encoder should
  73. limit the audio signal. Use 0 to let encoder decide */
  74. } OMX_AUDIO_PARAM_ANDROID_OPUSTYPE;
  75. typedef struct OMX_AUDIO_PARAM_ANDROID_AACPRESENTATIONTYPE {
  76. OMX_U32 nSize; /**< size of the structure in bytes */
  77. OMX_VERSIONTYPE nVersion; /**< OMX specification version information */
  78. OMX_S32 nMaxOutputChannels; /**< Maximum channel count to be output, -1 if unspecified, 0 if downmixing disabled */
  79. OMX_S32 nDrcCut; /**< The DRC attenuation factor, between 0 and 127, -1 if unspecified */
  80. OMX_S32 nDrcBoost; /**< The DRC amplification factor, between 0 and 127, -1 if unspecified */
  81. OMX_S32 nHeavyCompression; /**< 0 for light compression, 1 for heavy compression, -1 if unspecified */
  82. OMX_S32 nTargetReferenceLevel; /**< Target reference level, between 0 and 127, -1 if unspecified */
  83. OMX_S32 nEncodedTargetLevel; /**< Target reference level assumed at the encoder, between 0 and 127, -1 if unspecified */
  84. OMX_S32 nPCMLimiterEnable; /**< Signal level limiting, 0 for disable, 1 for enable, -1 if unspecified */
  85. } OMX_AUDIO_PARAM_ANDROID_AACPRESENTATIONTYPE;
  86. #ifdef __cplusplus
  87. }
  88. #endif /* __cplusplus */
  89. #endif /* OMX_AudioExt_h */
  90. /* File EOF */