nmpp
iReodering.h
1#ifndef __IREODERING_H
2#define __IREODERING_H
3
4#ifdef __cplusplus
5 extern "C" {
6#endif
7
8
9//*****************************************************************************
10
21//*****************************************************************************
22
36//*****************************************************************************
37
103
104void nmppiSplitIntoBlocks8x8(
105 nm8s* pSrcImg,
106 nm8s* pDstBlockSeq,
107 int nWidth,
108 int nHeight
109 );
111
112void nmppiSplitInto2x2Blocks8x8(
113 nm8u* pSrcImg,
114 nm8u* pDstBlockSeq,
115 int nWidth,
116 int nHeight
117 );
118
119void nmppiSplitInto2x2Blocks8x8xor(
120 nm8u* pSrcImg,
121 nm8u* pDstBlockSeq,
122 nm8u* pXor,
123 int nWidth,
124 int nHeight
125 );
126
127
128//*****************************************************************************
129
196void nmppiMergeFromBlocks8x8(
197 nm8s* pSrcBlockSeq,
198 nm8s* pDstImg,
199 int nWidth,
200 int nHeight
201 );
203
204#ifdef __cplusplus
205 };
206#endif
207
208#endif
unsigned char nm8u
Definition: nmtype.h:448
char nm8s
Definition: nmtype.h:167