-
Notifications
You must be signed in to change notification settings - Fork 15
/
yuv.h
86 lines (84 loc) · 3.07 KB
/
yuv.h
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
//==============================================================================
// xxYUV : yuv Header
//
// Copyright (c) 2020-2021 TAiGA
// https://github.com/metarutaiga/xxYUV
//==============================================================================
#pragma once
#ifndef xxYUV_EXPORT
#define xxYUV_EXPORT
#endif
//------------------------------------------------------------------------------
#ifndef xxYUV_DEPRECATED
#include "yuv2yuva.h"
//------------------------------------------------------------------------------
inline void yuv_yu12_to_yuva(int width, int height, const void* input, void* output, bool yuvSwizzle = false, int strideOutput = 0, int alignWidth = 16, int alignHeight = 1, int alignSize = 1)
{
yuv2yuva_parameter parameter =
{
.width = width,
.height = height,
.y = input,
.alignWidth = alignWidth,
.alignHeight = alignHeight,
.alignSize = alignSize,
.output = output,
.strideOutput = strideOutput,
.swizzleOutput = yuvSwizzle,
};
yuv2yuva_yu12(¶meter);
}
//------------------------------------------------------------------------------
inline void yuv_yv12_to_yuva(int width, int height, const void* input, void* output, bool yuvSwizzle = false, int strideOutput = 0, int alignWidth = 16, int alignHeight = 1, int alignSize = 1)
{
yuv2yuva_parameter parameter =
{
.width = width,
.height = height,
.y = input,
.alignWidth = alignWidth,
.alignHeight = alignHeight,
.alignSize = alignSize,
.output = output,
.strideOutput = strideOutput,
.swizzleOutput = yuvSwizzle,
};
yuv2yuva_yv12(¶meter);
}
//------------------------------------------------------------------------------
inline void yuv_nv12_to_yuva(int width, int height, const void* input, void* output, bool yuvSwizzle = false, int strideOutput = 0, int alignWidth = 16, int alignHeight = 1, int alignSize = 1)
{
yuv2yuva_parameter parameter =
{
.width = width,
.height = height,
.y = input,
.alignWidth = alignWidth,
.alignHeight = alignHeight,
.alignSize = alignSize,
.output = output,
.strideOutput = strideOutput,
.swizzleOutput = yuvSwizzle,
};
yuv2yuva_nv12(¶meter);
}
//------------------------------------------------------------------------------
inline void yuv_nv21_to_yuva(int width, int height, const void* input, void* output, bool yuvSwizzle = false, int strideOutput = 0, int alignWidth = 16, int alignHeight = 1, int alignSize = 1)
{
yuv2yuva_parameter parameter =
{
.width = width,
.height = height,
.y = input,
.alignWidth = alignWidth,
.alignHeight = alignHeight,
.alignSize = alignSize,
.output = output,
.strideOutput = strideOutput,
.swizzleOutput = yuvSwizzle,
};
yuv2yuva_nv21(¶meter);
}
//------------------------------------------------------------------------------
#endif
//------------------------------------------------------------------------------