summaryrefslogtreecommitdiffstats
path: root/decoder/ihevcd_ittiam_logo.h
blob: 71540e3ac045fcedeb5d81594c48e3f6c1bb3d02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/******************************************************************************
*
* Copyright (C) 2012 Ittiam Systems Pvt Ltd, Bangalore
*
* 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.
*
******************************************************************************/
/*****************************************************************************/
/*                                                                           */
/*  File Name         : ihevcd_ittiam_logo.h.h                               */
/*                                                                           */
/*  Description       : This file contains all the necessary function headers*/
/*                      to insert ittiam logo to a yuv buffer.               */
/*                                                                           */
/*  List of Functions : None                                                 */
/*                                                                           */
/*  Issues / Problems : None                                                 */
/*                                                                           */
/*  Revision History  :                                                      */
/*                                                                           */
/*         DD MM YYYY   Author(s)       Changes (Describe the changes made)  */
/*         10 10 2005   Ittiam          Draft                                */
/*                                                                           */
/*****************************************************************************/

#ifndef LOGO_INSERT_H
#define LOGO_INSERT_H

//#define LOGO_EN

#define LOGO_WD 90
#define LOGO_HT 36

#define LOGO_WD_Y       LOGO_WD
#define LOGO_HT_Y       LOGO_HT

#define LOGO_WD_RGBA8888       160
#define LOGO_HT_RGBA8888       64

#define LOGO_WD_RGB565       160
#define LOGO_HT_RGB565       64

#define LOGO_WD_444_UV  LOGO_WD
#define LOGO_HT_444_UV  LOGO_HT


#define LOGO_WD_420_UV  (LOGO_WD >> 1)
#define LOGO_HT_420_UV  (LOGO_HT >> 1)

#define LOGO_WD_420SP_UV  (LOGO_WD)
#define LOGO_HT_420SP_UV  (LOGO_HT >> 1)

#define LOGO_WD_420SP_VU  (LOGO_WD)
#define LOGO_HT_420SP_VU  (LOGO_HT >> 1)

#define LOGO_WD_422_UV  (LOGO_WD >> 1)
#define LOGO_HT_422_UV  (LOGO_HT)

#define LOGO_WD_422V_UV  (LOGO_WD)
#define LOGO_HT_422V_UV  (LOGO_HT >> 1)

#define LOGO_WD_411_UV  (LOGO_WD >> 2)
#define LOGO_HT_411_UV  (LOGO_HT)

#define LOGO_CODEC_WD 80
#define LOGO_CODEC_HT  24

#define LOGO_CODEC_WD_Y       LOGO_CODEC_WD
#define LOGO_CODEC_HT_Y       LOGO_CODEC_HT


#define LOGO_CODEC_WD_444_UV  LOGO_CODEC_WD
#define LOGO_CODEC_HT_444_UV  LOGO_CODEC_HT


#define LOGO_CODEC_WD_420_UV  (LOGO_CODEC_WD >> 1)
#define LOGO_CODEC_HT_420_UV  (LOGO_CODEC_HT >> 1)

#define LOGO_CODEC_WD_420SP_UV  (LOGO_CODEC_WD)
#define LOGO_CODEC_HT_420SP_UV  (LOGO_CODEC_HT >> 1)

#define LOGO_CODEC_WD_420SP_VU  (LOGO_CODEC_WD)
#define LOGO_CODEC_HT_420SP_VU  (LOGO_CODEC_HT >> 1)

#define LOGO_CODEC_WD_422_UV  (LOGO_CODEC_WD >> 1)
#define LOGO_CODEC_HT_422_UV  (LOGO_CODEC_HT)

#define LOGO_CODEC_WD_422V_UV  (LOGO_CODEC_WD)
#define LOGO_CODEC_HT_422V_UV  (LOGO_CODEC_HT >> 1)

#define LOGO_CODEC_WD_411_UV  (LOGO_CODEC_WD >> 2)
#define LOGO_CODEC_HT_411_UV  (LOGO_CODEC_HT)




#define START_X_ITT_LOGO        0
#define START_Y_ITT_LOGO        0

#define WD_ITT_LOGO             128
#define HT_ITT_LOGO             60

void ihevcd_insert_logo(UWORD8 *buf_y, UWORD8 *buf_u, UWORD8 *buf_v,
                        UWORD32 stride,
                        UWORD32 x_pos,
                        UWORD32 y_pos,
                        UWORD32 yuv_fmt,
                        UWORD32 u4_disp_wd,
                        UWORD32 u4_disp_ht);

#ifdef LOGO_EN
#define INSERT_LOGO(buf_y, buf_u, buf_v, stride, x_pos, y_pos, yuv_fmt,disp_wd,disp_ht) ihevcd_insert_logo(buf_y, buf_u, buf_v, stride, x_pos, y_pos, yuv_fmt,disp_wd,disp_ht);
#else
#define INSERT_LOGO(buf_y, buf_u, buf_v, stride, x_pos, y_pos, yuv_fmt,disp_wd,disp_ht)
#endif

#endif /* LOGO_INSERT_H */