/* Copyright 2013 Castle Technology Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef GLOBAL_VIDCLIST_H #include <stdint.h> typedef struct { int32_t index; uint32_t value; } ControlList; typedef struct { uint32_t Type; uint32_t PixelDepth; uint32_t HorizSyncWidth; uint32_t HorizBackPorch; uint32_t HorizLeftBorder; uint32_t HorizDisplaySize; uint32_t HorizRightBorder; uint32_t HorizFrontPorch; uint32_t VertiSyncWidth; uint32_t VertiBackPorch; uint32_t VertiTopBorder; uint32_t VertiDisplaySize; uint32_t VertiBottomBorder; uint32_t VertiFrontPorch; uint32_t PixelRate; uint32_t SyncPol; ControlList ControlList[1]; } VIDCList3; #endif /* In the exported copy of this file, the Hdr2H translation of hdr.VIDCList will follow. */