35 lines
1.0 KiB
C
35 lines
1.0 KiB
C
/*
|
|
* Copyright 2019 Rockchip Electronics Co. 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.
|
|
*
|
|
* author: Hery.xu@rock-chips.com
|
|
* date: 2019/07/16
|
|
* module: hdmi define
|
|
*/
|
|
#ifndef ROCKIT_DIRECT_HDMIDEFINE_H_
|
|
#define ROCKIT_DIRECT_HDMIDEFINE_H_
|
|
|
|
#define TV_INFORMATION_MAX_LENGTH 48
|
|
#define HDMI_3D_NONE -1
|
|
#define HDMI_3D_FRAME_PACKING 0
|
|
#define HDMI_3D_TOP_BOTTOM 6
|
|
#define HDMI_3D_SIDE_BY_SIDE_HALT 8
|
|
|
|
#define VIDEO_FORMAT_P 'p'
|
|
#define VIDEO_FORMAT_I 'i'
|
|
#define HDMI_MAX_SCORE 100
|
|
|
|
#endif // ROCKIT_DIRECT_HDMIDEFINE_H_
|
|
|