James Dong | 334de52 | 2012-03-12 12:47:14 -0700 | [diff] [blame] | 1 | /* ------------------------------------------------------------------ |
| 2 | * Copyright (C) 1998-2009 PacketVideo |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either |
| 13 | * express or implied. |
| 14 | * See the License for the specific language governing permissions |
| 15 | * and limitations under the License. |
| 16 | * ------------------------------------------------------------------- |
| 17 | */ |
| 18 | /* |
Lajos Molnar | a1ae5a4 | 2014-11-06 17:05:46 -0800 | [diff] [blame] | 19 | * Copyright (c) 2008 The Khronos Group Inc. |
| 20 | * |
James Dong | 334de52 | 2012-03-12 12:47:14 -0700 | [diff] [blame] | 21 | * Permission is hereby granted, free of charge, to any person obtaining |
| 22 | * a copy of this software and associated documentation files (the |
| 23 | * "Software"), to deal in the Software without restriction, including |
| 24 | * without limitation the rights to use, copy, modify, merge, publish, |
| 25 | * distribute, sublicense, and/or sell copies of the Software, and to |
| 26 | * permit persons to whom the Software is furnished to do so, subject |
Lajos Molnar | a1ae5a4 | 2014-11-06 17:05:46 -0800 | [diff] [blame] | 27 | * to the following conditions: |
James Dong | 334de52 | 2012-03-12 12:47:14 -0700 | [diff] [blame] | 28 | * The above copyright notice and this permission notice shall be included |
Lajos Molnar | a1ae5a4 | 2014-11-06 17:05:46 -0800 | [diff] [blame] | 29 | * in all copies or substantial portions of the Software. |
| 30 | * |
James Dong | 334de52 | 2012-03-12 12:47:14 -0700 | [diff] [blame] | 31 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS |
| 32 | * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 33 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. |
| 34 | * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY |
| 35 | * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, |
| 36 | * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE |
Lajos Molnar | a1ae5a4 | 2014-11-06 17:05:46 -0800 | [diff] [blame] | 37 | * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
James Dong | 334de52 | 2012-03-12 12:47:14 -0700 | [diff] [blame] | 38 | * |
| 39 | */ |
| 40 | |
| 41 | /** @file OMX_Index.h - OpenMax IL version 1.1.2 |
| 42 | * The OMX_Index header file contains the definitions for both applications |
| 43 | * and components . |
| 44 | */ |
| 45 | |
| 46 | |
| 47 | #ifndef OMX_Index_h |
| 48 | #define OMX_Index_h |
| 49 | |
| 50 | #ifdef __cplusplus |
| 51 | extern "C" { |
| 52 | #endif /* __cplusplus */ |
| 53 | |
James Dong | 334de52 | 2012-03-12 12:47:14 -0700 | [diff] [blame] | 54 | /* Each OMX header must include all required header files to allow the |
| 55 | * header to compile without errors. The includes below are required |
Lajos Molnar | a1ae5a4 | 2014-11-06 17:05:46 -0800 | [diff] [blame] | 56 | * for this header file to compile successfully |
James Dong | 334de52 | 2012-03-12 12:47:14 -0700 | [diff] [blame] | 57 | */ |
| 58 | #include <OMX_Types.h> |
| 59 | |
James Dong | 334de52 | 2012-03-12 12:47:14 -0700 | [diff] [blame] | 60 | /** The OMX_INDEXTYPE enumeration is used to select a structure when either |
Lajos Molnar | a1ae5a4 | 2014-11-06 17:05:46 -0800 | [diff] [blame] | 61 | * getting or setting parameters and/or configuration data. Each entry in |
| 62 | * this enumeration maps to an OMX specified structure. When the |
James Dong | 334de52 | 2012-03-12 12:47:14 -0700 | [diff] [blame] | 63 | * OMX_GetParameter, OMX_SetParameter, OMX_GetConfig or OMX_SetConfig methods |
| 64 | * are used, the second parameter will always be an entry from this enumeration |
| 65 | * and the third entry will be the structure shown in the comments for the entry. |
Lajos Molnar | a1ae5a4 | 2014-11-06 17:05:46 -0800 | [diff] [blame] | 66 | * For example, if the application is initializing a cropping function, the |
| 67 | * OMX_SetConfig command would have OMX_IndexConfigCommonInputCrop as the second parameter |
| 68 | * and would send a pointer to an initialized OMX_RECTTYPE structure as the |
James Dong | 334de52 | 2012-03-12 12:47:14 -0700 | [diff] [blame] | 69 | * third parameter. |
Lajos Molnar | a1ae5a4 | 2014-11-06 17:05:46 -0800 | [diff] [blame] | 70 | * |
James Dong | 334de52 | 2012-03-12 12:47:14 -0700 | [diff] [blame] | 71 | * The enumeration entries named with the OMX_Config prefix are sent using |
| 72 | * the OMX_SetConfig command and the enumeration entries named with the |
| 73 | * OMX_PARAM_ prefix are sent using the OMX_SetParameter command. |
| 74 | */ |
| 75 | typedef enum OMX_INDEXTYPE { |
| 76 | |
| 77 | OMX_IndexComponentStartUnused = 0x01000000, |
| 78 | OMX_IndexParamPriorityMgmt, /**< reference: OMX_PRIORITYMGMTTYPE */ |
| 79 | OMX_IndexParamAudioInit, /**< reference: OMX_PORT_PARAM_TYPE */ |
| 80 | OMX_IndexParamImageInit, /**< reference: OMX_PORT_PARAM_TYPE */ |
| 81 | OMX_IndexParamVideoInit, /**< reference: OMX_PORT_PARAM_TYPE */ |
| 82 | OMX_IndexParamOtherInit, /**< reference: OMX_PORT_PARAM_TYPE */ |
| 83 | OMX_IndexParamNumAvailableStreams, /**< reference: OMX_PARAM_U32TYPE */ |
| 84 | OMX_IndexParamActiveStream, /**< reference: OMX_PARAM_U32TYPE */ |
| 85 | OMX_IndexParamSuspensionPolicy, /**< reference: OMX_PARAM_SUSPENSIONPOLICYTYPE */ |
| 86 | OMX_IndexParamComponentSuspended, /**< reference: OMX_PARAM_SUSPENSIONTYPE */ |
Lajos Molnar | a1ae5a4 | 2014-11-06 17:05:46 -0800 | [diff] [blame] | 87 | OMX_IndexConfigCapturing, /**< reference: OMX_CONFIG_BOOLEANTYPE */ |
| 88 | OMX_IndexConfigCaptureMode, /**< reference: OMX_CONFIG_CAPTUREMODETYPE */ |
| 89 | OMX_IndexAutoPauseAfterCapture, /**< reference: OMX_CONFIG_BOOLEANTYPE */ |
James Dong | 334de52 | 2012-03-12 12:47:14 -0700 | [diff] [blame] | 90 | OMX_IndexParamContentURI, /**< reference: OMX_PARAM_CONTENTURITYPE */ |
Lajos Molnar | a1ae5a4 | 2014-11-06 17:05:46 -0800 | [diff] [blame] | 91 | OMX_IndexParamCustomContentPipe, /**< reference: OMX_PARAM_CONTENTPIPETYPE */ |
James Dong | 334de52 | 2012-03-12 12:47:14 -0700 | [diff] [blame] | 92 | OMX_IndexParamDisableResourceConcealment, /**< reference: OMX_RESOURCECONCEALMENTTYPE */ |
| 93 | OMX_IndexConfigMetadataItemCount, /**< reference: OMX_CONFIG_METADATAITEMCOUNTTYPE */ |
| 94 | OMX_IndexConfigContainerNodeCount, /**< reference: OMX_CONFIG_CONTAINERNODECOUNTTYPE */ |
| 95 | OMX_IndexConfigMetadataItem, /**< reference: OMX_CONFIG_METADATAITEMTYPE */ |
| 96 | OMX_IndexConfigCounterNodeID, /**< reference: OMX_CONFIG_CONTAINERNODEIDTYPE */ |
| 97 | OMX_IndexParamMetadataFilterType, /**< reference: OMX_PARAM_METADATAFILTERTYPE */ |
| 98 | OMX_IndexParamMetadataKeyFilter, /**< reference: OMX_PARAM_METADATAFILTERTYPE */ |
| 99 | OMX_IndexConfigPriorityMgmt, /**< reference: OMX_PRIORITYMGMTTYPE */ |
| 100 | OMX_IndexParamStandardComponentRole, /**< reference: OMX_PARAM_COMPONENTROLETYPE */ |
| 101 | |
| 102 | OMX_IndexPortStartUnused = 0x02000000, |
| 103 | OMX_IndexParamPortDefinition, /**< reference: OMX_PARAM_PORTDEFINITIONTYPE */ |
Lajos Molnar | a1ae5a4 | 2014-11-06 17:05:46 -0800 | [diff] [blame] | 104 | OMX_IndexParamCompBufferSupplier, /**< reference: OMX_PARAM_BUFFERSUPPLIERTYPE */ |
James Dong | 334de52 | 2012-03-12 12:47:14 -0700 | [diff] [blame] | 105 | OMX_IndexReservedStartUnused = 0x03000000, |
| 106 | |
| 107 | /* Audio parameters and configurations */ |
| 108 | OMX_IndexAudioStartUnused = 0x04000000, |
| 109 | OMX_IndexParamAudioPortFormat, /**< reference: OMX_AUDIO_PARAM_PORTFORMATTYPE */ |
| 110 | OMX_IndexParamAudioPcm, /**< reference: OMX_AUDIO_PARAM_PCMMODETYPE */ |
| 111 | OMX_IndexParamAudioAac, /**< reference: OMX_AUDIO_PARAM_AACPROFILETYPE */ |
| 112 | OMX_IndexParamAudioRa, /**< reference: OMX_AUDIO_PARAM_RATYPE */ |
| 113 | OMX_IndexParamAudioMp3, /**< reference: OMX_AUDIO_PARAM_MP3TYPE */ |
| 114 | OMX_IndexParamAudioAdpcm, /**< reference: OMX_AUDIO_PARAM_ADPCMTYPE */ |
| 115 | OMX_IndexParamAudioG723, /**< reference: OMX_AUDIO_PARAM_G723TYPE */ |
| 116 | OMX_IndexParamAudioG729, /**< reference: OMX_AUDIO_PARAM_G729TYPE */ |
| 117 | OMX_IndexParamAudioAmr, /**< reference: OMX_AUDIO_PARAM_AMRTYPE */ |
| 118 | OMX_IndexParamAudioWma, /**< reference: OMX_AUDIO_PARAM_WMATYPE */ |
| 119 | OMX_IndexParamAudioSbc, /**< reference: OMX_AUDIO_PARAM_SBCTYPE */ |
| 120 | OMX_IndexParamAudioMidi, /**< reference: OMX_AUDIO_PARAM_MIDITYPE */ |
| 121 | OMX_IndexParamAudioGsm_FR, /**< reference: OMX_AUDIO_PARAM_GSMFRTYPE */ |
| 122 | OMX_IndexParamAudioMidiLoadUserSound, /**< reference: OMX_AUDIO_PARAM_MIDILOADUSERSOUNDTYPE */ |
| 123 | OMX_IndexParamAudioG726, /**< reference: OMX_AUDIO_PARAM_G726TYPE */ |
| 124 | OMX_IndexParamAudioGsm_EFR, /**< reference: OMX_AUDIO_PARAM_GSMEFRTYPE */ |
| 125 | OMX_IndexParamAudioGsm_HR, /**< reference: OMX_AUDIO_PARAM_GSMHRTYPE */ |
| 126 | OMX_IndexParamAudioPdc_FR, /**< reference: OMX_AUDIO_PARAM_PDCFRTYPE */ |
| 127 | OMX_IndexParamAudioPdc_EFR, /**< reference: OMX_AUDIO_PARAM_PDCEFRTYPE */ |
| 128 | OMX_IndexParamAudioPdc_HR, /**< reference: OMX_AUDIO_PARAM_PDCHRTYPE */ |
| 129 | OMX_IndexParamAudioTdma_FR, /**< reference: OMX_AUDIO_PARAM_TDMAFRTYPE */ |
| 130 | OMX_IndexParamAudioTdma_EFR, /**< reference: OMX_AUDIO_PARAM_TDMAEFRTYPE */ |
| 131 | OMX_IndexParamAudioQcelp8, /**< reference: OMX_AUDIO_PARAM_QCELP8TYPE */ |
| 132 | OMX_IndexParamAudioQcelp13, /**< reference: OMX_AUDIO_PARAM_QCELP13TYPE */ |
| 133 | OMX_IndexParamAudioEvrc, /**< reference: OMX_AUDIO_PARAM_EVRCTYPE */ |
| 134 | OMX_IndexParamAudioSmv, /**< reference: OMX_AUDIO_PARAM_SMVTYPE */ |
| 135 | OMX_IndexParamAudioVorbis, /**< reference: OMX_AUDIO_PARAM_VORBISTYPE */ |
Jean-Michel Trivi | 224c784 | 2012-04-30 10:27:25 -0700 | [diff] [blame] | 136 | OMX_IndexParamAudioFlac, /**< reference: OMX_AUDIO_PARAM_FLACTYPE */ |
James Dong | 334de52 | 2012-03-12 12:47:14 -0700 | [diff] [blame] | 137 | |
| 138 | OMX_IndexConfigAudioMidiImmediateEvent, /**< reference: OMX_AUDIO_CONFIG_MIDIIMMEDIATEEVENTTYPE */ |
| 139 | OMX_IndexConfigAudioMidiControl, /**< reference: OMX_AUDIO_CONFIG_MIDICONTROLTYPE */ |
| 140 | OMX_IndexConfigAudioMidiSoundBankProgram, /**< reference: OMX_AUDIO_CONFIG_MIDISOUNDBANKPROGRAMTYPE */ |
| 141 | OMX_IndexConfigAudioMidiStatus, /**< reference: OMX_AUDIO_CONFIG_MIDISTATUSTYPE */ |
| 142 | OMX_IndexConfigAudioMidiMetaEvent, /**< reference: OMX_AUDIO_CONFIG_MIDIMETAEVENTTYPE */ |
| 143 | OMX_IndexConfigAudioMidiMetaEventData, /**< reference: OMX_AUDIO_CONFIG_MIDIMETAEVENTDATATYPE */ |
| 144 | OMX_IndexConfigAudioVolume, /**< reference: OMX_AUDIO_CONFIG_VOLUMETYPE */ |
| 145 | OMX_IndexConfigAudioBalance, /**< reference: OMX_AUDIO_CONFIG_BALANCETYPE */ |
| 146 | OMX_IndexConfigAudioChannelMute, /**< reference: OMX_AUDIO_CONFIG_CHANNELMUTETYPE */ |
| 147 | OMX_IndexConfigAudioMute, /**< reference: OMX_AUDIO_CONFIG_MUTETYPE */ |
| 148 | OMX_IndexConfigAudioLoudness, /**< reference: OMX_AUDIO_CONFIG_LOUDNESSTYPE */ |
| 149 | OMX_IndexConfigAudioEchoCancelation, /**< reference: OMX_AUDIO_CONFIG_ECHOCANCELATIONTYPE */ |
| 150 | OMX_IndexConfigAudioNoiseReduction, /**< reference: OMX_AUDIO_CONFIG_NOISEREDUCTIONTYPE */ |
| 151 | OMX_IndexConfigAudioBass, /**< reference: OMX_AUDIO_CONFIG_BASSTYPE */ |
| 152 | OMX_IndexConfigAudioTreble, /**< reference: OMX_AUDIO_CONFIG_TREBLETYPE */ |
| 153 | OMX_IndexConfigAudioStereoWidening, /**< reference: OMX_AUDIO_CONFIG_STEREOWIDENINGTYPE */ |
| 154 | OMX_IndexConfigAudioChorus, /**< reference: OMX_AUDIO_CONFIG_CHORUSTYPE */ |
| 155 | OMX_IndexConfigAudioEqualizer, /**< reference: OMX_AUDIO_CONFIG_EQUALIZERTYPE */ |
| 156 | OMX_IndexConfigAudioReverberation, /**< reference: OMX_AUDIO_CONFIG_REVERBERATIONTYPE */ |
| 157 | OMX_IndexConfigAudioChannelVolume, /**< reference: OMX_AUDIO_CONFIG_CHANNELVOLUMETYPE */ |
| 158 | |
| 159 | /* Image specific parameters and configurations */ |
| 160 | OMX_IndexImageStartUnused = 0x05000000, |
| 161 | OMX_IndexParamImagePortFormat, /**< reference: OMX_IMAGE_PARAM_PORTFORMATTYPE */ |
| 162 | OMX_IndexParamFlashControl, /**< reference: OMX_IMAGE_PARAM_FLASHCONTROLTYPE */ |
| 163 | OMX_IndexConfigFocusControl, /**< reference: OMX_IMAGE_CONFIG_FOCUSCONTROLTYPE */ |
| 164 | OMX_IndexParamQFactor, /**< reference: OMX_IMAGE_PARAM_QFACTORTYPE */ |
| 165 | OMX_IndexParamQuantizationTable, /**< reference: OMX_IMAGE_PARAM_QUANTIZATIONTABLETYPE */ |
| 166 | OMX_IndexParamHuffmanTable, /**< reference: OMX_IMAGE_PARAM_HUFFMANTTABLETYPE */ |
| 167 | OMX_IndexConfigFlashControl, /**< reference: OMX_IMAGE_PARAM_FLASHCONTROLTYPE */ |
| 168 | |
| 169 | /* Video specific parameters and configurations */ |
| 170 | OMX_IndexVideoStartUnused = 0x06000000, |
| 171 | OMX_IndexParamVideoPortFormat, /**< reference: OMX_VIDEO_PARAM_PORTFORMATTYPE */ |
| 172 | OMX_IndexParamVideoQuantization, /**< reference: OMX_VIDEO_PARAM_QUANTIZATIONTYPE */ |
| 173 | OMX_IndexParamVideoFastUpdate, /**< reference: OMX_VIDEO_PARAM_VIDEOFASTUPDATETYPE */ |
| 174 | OMX_IndexParamVideoBitrate, /**< reference: OMX_VIDEO_PARAM_BITRATETYPE */ |
| 175 | OMX_IndexParamVideoMotionVector, /**< reference: OMX_VIDEO_PARAM_MOTIONVECTORTYPE */ |
| 176 | OMX_IndexParamVideoIntraRefresh, /**< reference: OMX_VIDEO_PARAM_INTRAREFRESHTYPE */ |
| 177 | OMX_IndexParamVideoErrorCorrection, /**< reference: OMX_VIDEO_PARAM_ERRORCORRECTIONTYPE */ |
| 178 | OMX_IndexParamVideoVBSMC, /**< reference: OMX_VIDEO_PARAM_VBSMCTYPE */ |
| 179 | OMX_IndexParamVideoMpeg2, /**< reference: OMX_VIDEO_PARAM_MPEG2TYPE */ |
| 180 | OMX_IndexParamVideoMpeg4, /**< reference: OMX_VIDEO_PARAM_MPEG4TYPE */ |
| 181 | OMX_IndexParamVideoWmv, /**< reference: OMX_VIDEO_PARAM_WMVTYPE */ |
| 182 | OMX_IndexParamVideoRv, /**< reference: OMX_VIDEO_PARAM_RVTYPE */ |
| 183 | OMX_IndexParamVideoAvc, /**< reference: OMX_VIDEO_PARAM_AVCTYPE */ |
| 184 | OMX_IndexParamVideoH263, /**< reference: OMX_VIDEO_PARAM_H263TYPE */ |
| 185 | OMX_IndexParamVideoProfileLevelQuerySupported, /**< reference: OMX_VIDEO_PARAM_PROFILELEVELTYPE */ |
| 186 | OMX_IndexParamVideoProfileLevelCurrent, /**< reference: OMX_VIDEO_PARAM_PROFILELEVELTYPE */ |
| 187 | OMX_IndexConfigVideoBitrate, /**< reference: OMX_VIDEO_CONFIG_BITRATETYPE */ |
| 188 | OMX_IndexConfigVideoFramerate, /**< reference: OMX_CONFIG_FRAMERATETYPE */ |
| 189 | OMX_IndexConfigVideoIntraVOPRefresh, /**< reference: OMX_CONFIG_INTRAREFRESHVOPTYPE */ |
| 190 | OMX_IndexConfigVideoIntraMBRefresh, /**< reference: OMX_CONFIG_MACROBLOCKERRORMAPTYPE */ |
| 191 | OMX_IndexConfigVideoMBErrorReporting, /**< reference: OMX_CONFIG_MBERRORREPORTINGTYPE */ |
| 192 | OMX_IndexParamVideoMacroblocksPerFrame, /**< reference: OMX_PARAM_MACROBLOCKSTYPE */ |
| 193 | OMX_IndexConfigVideoMacroBlockErrorMap, /**< reference: OMX_CONFIG_MACROBLOCKERRORMAPTYPE */ |
| 194 | OMX_IndexParamVideoSliceFMO, /**< reference: OMX_VIDEO_PARAM_AVCSLICEFMO */ |
| 195 | OMX_IndexConfigVideoAVCIntraPeriod, /**< reference: OMX_VIDEO_CONFIG_AVCINTRAPERIOD */ |
| 196 | OMX_IndexConfigVideoNalSize, /**< reference: OMX_VIDEO_CONFIG_NALSIZE */ |
| 197 | |
| 198 | /* Image & Video common Configurations */ |
| 199 | OMX_IndexCommonStartUnused = 0x07000000, |
| 200 | OMX_IndexParamCommonDeblocking, /**< reference: OMX_PARAM_DEBLOCKINGTYPE */ |
| 201 | OMX_IndexParamCommonSensorMode, /**< reference: OMX_PARAM_SENSORMODETYPE */ |
| 202 | OMX_IndexParamCommonInterleave, /**< reference: OMX_PARAM_INTERLEAVETYPE */ |
| 203 | OMX_IndexConfigCommonColorFormatConversion, /**< reference: OMX_CONFIG_COLORCONVERSIONTYPE */ |
| 204 | OMX_IndexConfigCommonScale, /**< reference: OMX_CONFIG_SCALEFACTORTYPE */ |
| 205 | OMX_IndexConfigCommonImageFilter, /**< reference: OMX_CONFIG_IMAGEFILTERTYPE */ |
| 206 | OMX_IndexConfigCommonColorEnhancement, /**< reference: OMX_CONFIG_COLORENHANCEMENTTYPE */ |
| 207 | OMX_IndexConfigCommonColorKey, /**< reference: OMX_CONFIG_COLORKEYTYPE */ |
| 208 | OMX_IndexConfigCommonColorBlend, /**< reference: OMX_CONFIG_COLORBLENDTYPE */ |
| 209 | OMX_IndexConfigCommonFrameStabilisation,/**< reference: OMX_CONFIG_FRAMESTABTYPE */ |
| 210 | OMX_IndexConfigCommonRotate, /**< reference: OMX_CONFIG_ROTATIONTYPE */ |
| 211 | OMX_IndexConfigCommonMirror, /**< reference: OMX_CONFIG_MIRRORTYPE */ |
| 212 | OMX_IndexConfigCommonOutputPosition, /**< reference: OMX_CONFIG_POINTTYPE */ |
| 213 | OMX_IndexConfigCommonInputCrop, /**< reference: OMX_CONFIG_RECTTYPE */ |
| 214 | OMX_IndexConfigCommonOutputCrop, /**< reference: OMX_CONFIG_RECTTYPE */ |
| 215 | OMX_IndexConfigCommonDigitalZoom, /**< reference: OMX_CONFIG_SCALEFACTORTYPE */ |
| 216 | OMX_IndexConfigCommonOpticalZoom, /**< reference: OMX_CONFIG_SCALEFACTORTYPE*/ |
| 217 | OMX_IndexConfigCommonWhiteBalance, /**< reference: OMX_CONFIG_WHITEBALCONTROLTYPE */ |
| 218 | OMX_IndexConfigCommonExposure, /**< reference: OMX_CONFIG_EXPOSURECONTROLTYPE */ |
| 219 | OMX_IndexConfigCommonContrast, /**< reference: OMX_CONFIG_CONTRASTTYPE */ |
| 220 | OMX_IndexConfigCommonBrightness, /**< reference: OMX_CONFIG_BRIGHTNESSTYPE */ |
| 221 | OMX_IndexConfigCommonBacklight, /**< reference: OMX_CONFIG_BACKLIGHTTYPE */ |
| 222 | OMX_IndexConfigCommonGamma, /**< reference: OMX_CONFIG_GAMMATYPE */ |
| 223 | OMX_IndexConfigCommonSaturation, /**< reference: OMX_CONFIG_SATURATIONTYPE */ |
| 224 | OMX_IndexConfigCommonLightness, /**< reference: OMX_CONFIG_LIGHTNESSTYPE */ |
| 225 | OMX_IndexConfigCommonExclusionRect, /**< reference: OMX_CONFIG_RECTTYPE */ |
| 226 | OMX_IndexConfigCommonDithering, /**< reference: OMX_CONFIG_DITHERTYPE */ |
| 227 | OMX_IndexConfigCommonPlaneBlend, /**< reference: OMX_CONFIG_PLANEBLENDTYPE */ |
| 228 | OMX_IndexConfigCommonExposureValue, /**< reference: OMX_CONFIG_EXPOSUREVALUETYPE */ |
| 229 | OMX_IndexConfigCommonOutputSize, /**< reference: OMX_FRAMESIZETYPE */ |
| 230 | OMX_IndexParamCommonExtraQuantData, /**< reference: OMX_OTHER_EXTRADATATYPE */ |
| 231 | OMX_IndexConfigCommonFocusRegion, /**< reference: OMX_CONFIG_FOCUSREGIONTYPE */ |
| 232 | OMX_IndexConfigCommonFocusStatus, /**< reference: OMX_PARAM_FOCUSSTATUSTYPE */ |
| 233 | OMX_IndexConfigCommonTransitionEffect, /**< reference: OMX_CONFIG_TRANSITIONEFFECTTYPE */ |
| 234 | |
| 235 | /* Reserved Configuration range */ |
| 236 | OMX_IndexOtherStartUnused = 0x08000000, |
| 237 | OMX_IndexParamOtherPortFormat, /**< reference: OMX_OTHER_PARAM_PORTFORMATTYPE */ |
| 238 | OMX_IndexConfigOtherPower, /**< reference: OMX_OTHER_CONFIG_POWERTYPE */ |
| 239 | OMX_IndexConfigOtherStats, /**< reference: OMX_OTHER_CONFIG_STATSTYPE */ |
| 240 | |
| 241 | |
| 242 | /* Reserved Time range */ |
| 243 | OMX_IndexTimeStartUnused = 0x09000000, |
| 244 | OMX_IndexConfigTimeScale, /**< reference: OMX_TIME_CONFIG_SCALETYPE */ |
| 245 | OMX_IndexConfigTimeClockState, /**< reference: OMX_TIME_CONFIG_CLOCKSTATETYPE */ |
| 246 | OMX_IndexConfigTimeActiveRefClock, /**< reference: OMX_TIME_CONFIG_ACTIVEREFCLOCKTYPE */ |
| 247 | OMX_IndexConfigTimeCurrentMediaTime, /**< reference: OMX_TIME_CONFIG_TIMESTAMPTYPE (read only) */ |
| 248 | OMX_IndexConfigTimeCurrentWallTime, /**< reference: OMX_TIME_CONFIG_TIMESTAMPTYPE (read only) */ |
| 249 | OMX_IndexConfigTimeCurrentAudioReference, /**< reference: OMX_TIME_CONFIG_TIMESTAMPTYPE (write only) */ |
| 250 | OMX_IndexConfigTimeCurrentVideoReference, /**< reference: OMX_TIME_CONFIG_TIMESTAMPTYPE (write only) */ |
| 251 | OMX_IndexConfigTimeMediaTimeRequest, /**< reference: OMX_TIME_CONFIG_MEDIATIMEREQUESTTYPE (write only) */ |
| 252 | OMX_IndexConfigTimeClientStartTime, /**<reference: OMX_TIME_CONFIG_TIMESTAMPTYPE (write only) */ |
| 253 | OMX_IndexConfigTimePosition, /**< reference: OMX_TIME_CONFIG_TIMESTAMPTYPE */ |
| 254 | OMX_IndexConfigTimeSeekMode, /**< reference: OMX_TIME_CONFIG_SEEKMODETYPE */ |
| 255 | |
| 256 | |
Lajos Molnar | a1ae5a4 | 2014-11-06 17:05:46 -0800 | [diff] [blame] | 257 | OMX_IndexKhronosExtensions = 0x6F000000, /**< Reserved region for introducing Khronos Standard Extensions */ |
James Dong | 334de52 | 2012-03-12 12:47:14 -0700 | [diff] [blame] | 258 | /* Vendor specific area */ |
| 259 | OMX_IndexVendorStartUnused = 0x7F000000, |
Lajos Molnar | a1ae5a4 | 2014-11-06 17:05:46 -0800 | [diff] [blame] | 260 | /* Vendor specific structures should be in the range of 0x7F000000 |
James Dong | 334de52 | 2012-03-12 12:47:14 -0700 | [diff] [blame] | 261 | to 0x7FFFFFFE. This range is not broken out by vendor, so |
| 262 | private indexes are not guaranteed unique and therefore should |
| 263 | only be sent to the appropriate component. */ |
| 264 | |
| 265 | OMX_IndexMax = 0x7FFFFFFF |
| 266 | |
| 267 | } OMX_INDEXTYPE; |
| 268 | |
| 269 | #ifdef __cplusplus |
| 270 | } |
| 271 | #endif /* __cplusplus */ |
| 272 | |
| 273 | #endif |
| 274 | /* File EOF */ |