summaryrefslogtreecommitdiff
path: root/original-kernel-headers/media/msm_media_info.h
blob: 42c3572598bc030d9e1240c7feef08b01ced45de (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
#ifndef __MEDIA_INFO_H__
#define __MEDIA_INFO_H__

#ifndef MSM_MEDIA_ALIGN
#define MSM_MEDIA_ALIGN(__sz, __align) (((__sz) + (__align-1)) & (~(__align-1)))
#endif

enum color_fmts {
	COLOR_FMT_NV12,
	COLOR_FMT_NV21,
};

#define VENUS_Y_STRIDE(__color_fmt, __width) ({\
	unsigned int __alignment, __stride = 0; \
	if (__width) { \
		switch (__color_fmt) { \
		case COLOR_FMT_NV12: \
		__alignment = 128; \
		__stride = MSM_MEDIA_ALIGN(__width, __alignment);\
		break;\
		default:\
		break;\
		}\
	} \
	__stride;\
})

#define VENUS_UV_STRIDE(__color_fmt, __width) ({\
	unsigned int __alignment, __stride = 0; \
	if (__width) {\
		switch (__color_fmt) { \
		case COLOR_FMT_NV12: \
		__alignment = 128; \
		__stride = MSM_MEDIA_ALIGN(__width, __alignment); \
		break; \
		default: \
		break; \
		} \
	} \
	__stride; \
})

#define VENUS_Y_SCANLINES(__color_fmt, __height) ({ \
	unsigned int __alignment, __sclines = 0; \
	if (__height) {\
		switch (__color_fmt) { \
		case COLOR_FMT_NV12: \
		__alignment = 32; \
		__sclines = MSM_MEDIA_ALIGN(__height, __alignment); \
		break; \
		default: \
		break; \
		} \
	} \
	__sclines; \
})

#define VENUS_UV_SCANLINES(__color_fmt, __height) ({\
	unsigned int __alignment, __sclines = 0; \
	if (__height) {\
		switch (__color_fmt) { \
		case COLOR_FMT_NV12: \
			__alignment = 16; \
			__sclines = MSM_MEDIA_ALIGN(((__height + 1) >> 1), __alignment); \
			break; \
		default: \
			break; \
		} \
	} \
	__sclines; \
})

#define VENUS_BUFFER_SIZE( \
	__color_fmt, __width, __height) ({ \
	unsigned int __uv_alignment; \
	unsigned int __size = 0; \
	unsigned int __y_plane, __uv_plane, __y_stride, \
		__uv_stride, __y_sclines, __uv_sclines; \
	if (__width && __height) {\
		__y_stride = VENUS_Y_STRIDE(__color_fmt, __width); \
		__uv_stride = VENUS_UV_STRIDE(__color_fmt, __width); \
		__y_sclines = VENUS_Y_SCANLINES(__color_fmt, __height); \
		__uv_sclines = VENUS_UV_SCANLINES(__color_fmt, __height); \
		switch (__color_fmt) { \
		case COLOR_FMT_NV12: \
			__uv_alignment = 4096; \
			__y_plane = __y_stride * __y_sclines; \
			__uv_plane = __uv_stride * __uv_sclines + __uv_alignment; \
			__size = __y_plane + __uv_plane; \
			__size = MSM_MEDIA_ALIGN(__size, 4096); \
			break; \
		default: \
			break; \
		} \
	} \
	__size; \
})

#endif