jdk/src/share/native/sun/awt/medialib/mlib_ImageConv.h
author bae
Fri, 25 Mar 2011 12:50:59 +0300
changeset 8939 04615dca2a76
parent 5506 202f599c92aa
child 15628 228422512f97
permissions -rw-r--r--
6989717: media native code compiler warnings Reviewed-by: jgodinez, prr
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     2
 * Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
#ifndef __MLIB_IMAGECONV_H
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
#define __MLIB_IMAGECONV_H
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
#ifdef __cplusplus
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
extern "C" {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
#endif /* __cplusplus */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
void mlib_ImageXor80_aa(mlib_u8  *dl,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
                        mlib_s32 wid,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
                        mlib_s32 hgt,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
                        mlib_s32 str);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
void mlib_ImageXor80(mlib_u8  *dl,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
                     mlib_s32 wid,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
                     mlib_s32 hgt,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
                     mlib_s32 str,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
                     mlib_s32 nchan,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
                     mlib_s32 cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
mlib_status mlib_conv2x2ext_d64(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
                                const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
                                mlib_s32         dx_l,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
                                mlib_s32         dx_r,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
                                mlib_s32         dy_t,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
                                mlib_s32         dy_b,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
                                const mlib_d64   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
                                mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
mlib_status mlib_conv2x2ext_f32(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
                                const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
                                mlib_s32         dx_l,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
                                mlib_s32         dx_r,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
                                mlib_s32         dy_t,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
                                mlib_s32         dy_b,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
                                const mlib_d64   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
                                mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
mlib_status mlib_conv2x2ext_s16(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
                                const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
                                mlib_s32         dx_l,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
                                mlib_s32         dx_r,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
                                mlib_s32         dy_t,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
                                mlib_s32         dy_b,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
                                const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
                                mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
                                mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
mlib_status mlib_conv2x2ext_s32(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
                                const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
                                mlib_s32         dx_l,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
                                mlib_s32         dx_r,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
                                mlib_s32         dy_t,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
                                mlib_s32         dy_b,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
                                const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
                                mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
                                mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
mlib_status mlib_conv2x2ext_u16(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
                                const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
                                mlib_s32         dx_l,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
                                mlib_s32         dx_r,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
                                mlib_s32         dy_t,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
                                mlib_s32         dy_b,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
                                const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
                                mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
                                mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
mlib_status mlib_conv2x2ext_u8(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
                               const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
                               mlib_s32         dx_l,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
                               mlib_s32         dx_r,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
                               mlib_s32         dy_t,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
                               mlib_s32         dy_b,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
                               const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
                               mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
                               mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
mlib_status mlib_conv2x2nw_d64(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
                               const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
                               const mlib_d64   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
                               mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
mlib_status mlib_conv2x2nw_f32(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
                               const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
                               const mlib_d64   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
                               mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
mlib_status mlib_conv2x2nw_s16(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
                               const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
                               const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
                               mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
                               mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
mlib_status mlib_conv2x2nw_s32(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
                               const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
                               const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
                               mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
                               mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
mlib_status mlib_conv2x2nw_u16(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
                               const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
                               const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
                               mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
                               mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
mlib_status mlib_conv2x2nw_u8(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
                              const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
                              const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
                              mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
                              mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
mlib_status mlib_conv3x3ext_bit(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
                                const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
                                mlib_s32         dx_l,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
                                mlib_s32         dx_r,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
                                mlib_s32         dy_t,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
                                mlib_s32         dy_b,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
                                const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
                                mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
                                mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
mlib_status mlib_conv3x3ext_d64(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
                                const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
                                mlib_s32         dx_l,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
                                mlib_s32         dx_r,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
                                mlib_s32         dy_t,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
                                mlib_s32         dy_b,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
                                const mlib_d64   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
                                mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
mlib_status mlib_conv3x3ext_f32(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
                                const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
                                mlib_s32         dx_l,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
                                mlib_s32         dx_r,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
                                mlib_s32         dy_t,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
                                mlib_s32         dy_b,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
                                const mlib_d64   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
                                mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
mlib_status mlib_conv3x3ext_s16(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
                                const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
                                mlib_s32         dx_l,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
                                mlib_s32         dx_r,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
                                mlib_s32         dy_t,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
                                mlib_s32         dy_b,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
                                const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
                                mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
                                mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
mlib_status mlib_conv3x3ext_s32(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
                                const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
                                mlib_s32         dx_l,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
                                mlib_s32         dx_r,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
                                mlib_s32         dy_t,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
                                mlib_s32         dy_b,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
                                const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
                                mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
                                mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
mlib_status mlib_conv3x3ext_u16(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
                                const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
                                mlib_s32         dx_l,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
                                mlib_s32         dx_r,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
                                mlib_s32         dy_t,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
                                mlib_s32         dy_b,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
                                const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
                                mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
                                mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
mlib_status mlib_conv3x3ext_u8(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
                               const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
                               mlib_s32         dx_l,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
                               mlib_s32         dx_r,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
                               mlib_s32         dy_t,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
                               mlib_s32         dy_b,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
                               const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
                               mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
                               mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
mlib_status mlib_conv3x3nw_bit(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
                               const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
                               const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
                               mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
                               mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
mlib_status mlib_conv3x3nw_d64(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
                               const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
                               const mlib_d64   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
                               mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
mlib_status mlib_conv3x3nw_f32(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
                               const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
                               const mlib_d64   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
                               mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
mlib_status mlib_conv3x3nw_s16(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
                               const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
                               const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
                               mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
                               mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
mlib_status mlib_conv3x3nw_s32(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
                               const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
                               const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
                               mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
                               mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
mlib_status mlib_conv3x3nw_u16(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
                               const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
                               const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
                               mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
                               mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
mlib_status mlib_conv3x3nw_u8(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
                              const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
                              const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
                              mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
                              mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
mlib_status mlib_conv4x4ext_d64(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
                                const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
                                mlib_s32         dx_l,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
                                mlib_s32         dx_r,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
                                mlib_s32         dy_t,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
                                mlib_s32         dy_b,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
                                const mlib_d64   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
                                mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
mlib_status mlib_conv4x4ext_f32(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
                                const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
                                mlib_s32         dx_l,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
                                mlib_s32         dx_r,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
                                mlib_s32         dy_t,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
                                mlib_s32         dy_b,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
                                const mlib_d64   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
                                mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
mlib_status mlib_conv4x4ext_s16(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
                                const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
                                mlib_s32         dx_l,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
                                mlib_s32         dx_r,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
                                mlib_s32         dy_t,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
                                mlib_s32         dy_b,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
                                const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
                                mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
                                mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
mlib_status mlib_conv4x4ext_s32(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
                                const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
                                mlib_s32         dx_l,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
                                mlib_s32         dx_r,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
                                mlib_s32         dy_t,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
                                mlib_s32         dy_b,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
                                const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
                                mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
                                mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
mlib_status mlib_conv4x4ext_u16(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
                                const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
                                mlib_s32         dx_l,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
                                mlib_s32         dx_r,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
                                mlib_s32         dy_t,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
                                mlib_s32         dy_b,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
                                const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
                                mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
                                mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
mlib_status mlib_conv4x4ext_u8(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
                               const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
                               mlib_s32         dx_l,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
                               mlib_s32         dx_r,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
                               mlib_s32         dy_t,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
                               mlib_s32         dy_b,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
                               const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
                               mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
                               mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
mlib_status mlib_conv4x4nw_d64(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
                               const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
                               const mlib_d64   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
                               mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
mlib_status mlib_conv4x4nw_f32(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
                               const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
                               const mlib_d64   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
                               mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
mlib_status mlib_conv4x4nw_s16(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
                               const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
                               const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
                               mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
                               mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
mlib_status mlib_conv4x4nw_s32(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
                               const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
                               const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
                               mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
                               mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
mlib_status mlib_conv4x4nw_u16(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
                               const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
                               const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
                               mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
                               mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
mlib_status mlib_conv4x4nw_u8(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
                              const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
                              const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
                              mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
                              mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
mlib_status mlib_conv5x5ext_d64(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
                                const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
                                mlib_s32         dx_l,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
                                mlib_s32         dx_r,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
                                mlib_s32         dy_t,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
                                mlib_s32         dy_b,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
                                const mlib_d64   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
                                mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
mlib_status mlib_conv5x5ext_f32(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
                                const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
                                mlib_s32         dx_l,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
                                mlib_s32         dx_r,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
                                mlib_s32         dy_t,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
                                mlib_s32         dy_b,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
                                const mlib_d64   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
                                mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
mlib_status mlib_conv5x5ext_s16(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
                                const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
                                mlib_s32         dx_l,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
                                mlib_s32         dx_r,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
                                mlib_s32         dy_t,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
                                mlib_s32         dy_b,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
                                const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
                                mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
                                mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
mlib_status mlib_conv5x5ext_s32(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
                                const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
                                mlib_s32         dx_l,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
                                mlib_s32         dx_r,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
                                mlib_s32         dy_t,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
                                mlib_s32         dy_b,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
                                const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
                                mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
                                mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
mlib_status mlib_conv5x5ext_u16(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
                                const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
                                mlib_s32         dx_l,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
                                mlib_s32         dx_r,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
                                mlib_s32         dy_t,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
                                mlib_s32         dy_b,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
                                const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
                                mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
                                mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
mlib_status mlib_conv5x5ext_u8(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
                               const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
                               mlib_s32         dx_l,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
                               mlib_s32         dx_r,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
                               mlib_s32         dy_t,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
                               mlib_s32         dy_b,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
                               const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
                               mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
                               mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
mlib_status mlib_conv5x5nw_d64(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
                               const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
                               const mlib_d64   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
                               mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
mlib_status mlib_conv5x5nw_f32(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
                               const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
                               const mlib_d64   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
                               mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
mlib_status mlib_conv5x5nw_s16(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
                               const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
                               const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
                               mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
                               mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
mlib_status mlib_conv5x5nw_s32(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
                               const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
                               const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
                               mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
                               mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
mlib_status mlib_conv5x5nw_u16(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
                               const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
                               const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
                               mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
                               mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
mlib_status mlib_conv5x5nw_u8(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
                              const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
                              const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
                              mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
                              mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
mlib_status mlib_conv7x7ext_s16(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
                                const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
                                mlib_s32         dx_l,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
                                mlib_s32         dx_r,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
                                mlib_s32         dy_t,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
                                mlib_s32         dy_b,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
                                const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
                                mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
                                mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
mlib_status mlib_conv7x7ext_s32(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
                                const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
                                mlib_s32         dx_l,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
                                mlib_s32         dx_r,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
                                mlib_s32         dy_t,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
                                mlib_s32         dy_b,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
                                const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
                                mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
                                mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
mlib_status mlib_conv7x7ext_u16(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
                                const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
                                mlib_s32         dx_l,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
                                mlib_s32         dx_r,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
                                mlib_s32         dy_t,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
                                mlib_s32         dy_b,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
                                const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
                                mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
                                mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
mlib_status mlib_conv7x7ext_u8(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
                               const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
                               mlib_s32         dx_l,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
                               mlib_s32         dx_r,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
                               mlib_s32         dy_t,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
                               mlib_s32         dy_b,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
                               const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
                               mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
                               mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
mlib_status mlib_conv7x7nw_s16(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
                               const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
                               const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
                               mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
                               mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
mlib_status mlib_conv7x7nw_s32(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
                               const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
                               const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
                               mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
                               mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
mlib_status mlib_conv7x7nw_u16(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
                               const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
                               const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
                               mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
                               mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
mlib_status mlib_conv7x7nw_u8(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
                              const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
                              const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
                              mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
                              mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
mlib_status mlib_convMxNext_s32(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
                                const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
                                const mlib_s32   *kernel,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
                                mlib_s32         m,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
                                mlib_s32         n,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
                                mlib_s32         dx_l,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
                                mlib_s32         dx_r,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
                                mlib_s32         dy_t,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
                                mlib_s32         dy_b,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
                                mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
                                mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
mlib_status mlib_convMxNnw_d64(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
                               const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
                               const mlib_d64   *ker,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
                               mlib_s32         m,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
                               mlib_s32         n,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
                               mlib_s32         dm,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
                               mlib_s32         dn,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
                               mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
mlib_status mlib_convMxNnw_f32(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
                               const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
                               const mlib_d64   *ker,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
                               mlib_s32         m,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
                               mlib_s32         n,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
                               mlib_s32         dm,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
                               mlib_s32         dn,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
                               mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
mlib_status mlib_convMxNnw_s16(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
                               const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
                               const mlib_s32   *kernel,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
                               mlib_s32         m,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
                               mlib_s32         n,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
                               mlib_s32         dm,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
                               mlib_s32         dn,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
                               mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
                               mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
mlib_status mlib_convMxNnw_s32(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
                               const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
                               const mlib_s32   *kernel,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
                               mlib_s32         m,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
                               mlib_s32         n,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
                               mlib_s32         dm,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
                               mlib_s32         dn,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
                               mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
                               mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
mlib_status mlib_convMxNnw_u16(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
                               const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
                               const mlib_s32   *kernel,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
                               mlib_s32         m,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
                               mlib_s32         n,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
                               mlib_s32         dm,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
                               mlib_s32         dn,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
                               mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
                               mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
mlib_s32 mlib_ImageConvVersion(mlib_s32  m,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
                               mlib_s32  n,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
                               mlib_s32  scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
                               mlib_type type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
mlib_status mlib_ImageConvMxN_f(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
                                const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
                                const void       *kernel,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
                                mlib_s32         m,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
                                mlib_s32         n,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
                                mlib_s32         dm,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
                                mlib_s32         dn,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
                                mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
                                mlib_s32         cmask,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
                                mlib_edge        edge);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
mlib_status mlib_convMxNnw_u8(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
                              const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
                              const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
                              mlib_s32         m,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
                              mlib_s32         n,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
                              mlib_s32         dm,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
                              mlib_s32         dn,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
                              mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
                              mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
mlib_status mlib_convMxNext_u8(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
                               const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
                               const mlib_s32   *kern,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
                               mlib_s32         m,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
                               mlib_s32         n,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
                               mlib_s32         dx_l,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
                               mlib_s32         dx_r,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
                               mlib_s32         dy_t,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
                               mlib_s32         dy_b,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
                               mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
                               mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
mlib_status mlib_convMxNext_s16(mlib_image *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
                                const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
                                const mlib_s32 *kernel,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
                                mlib_s32 m,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
                                mlib_s32 n,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
                                mlib_s32 dx_l,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
                                mlib_s32 dx_r,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
                                mlib_s32 dy_t,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
                                mlib_s32 dy_b,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
                                mlib_s32 scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
                                mlib_s32 cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
mlib_status mlib_convMxNext_u16(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
                                const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
                                const mlib_s32   *kernel,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
                                mlib_s32         m,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
                                mlib_s32         n,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
                                mlib_s32         dx_l,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
                                mlib_s32         dx_r,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
                                mlib_s32         dy_t,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
                                mlib_s32         dy_b,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
                                mlib_s32         scale,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
                                mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
mlib_status mlib_convMxNext_f32(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
                                const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
                                const mlib_d64   *kernel,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
                                mlib_s32         m,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
                                mlib_s32         n,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
                                mlib_s32         dx_l,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
                                mlib_s32         dx_r,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
                                mlib_s32         dy_t,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
                                mlib_s32         dy_b,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
                                mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
mlib_status mlib_convMxNext_d64(mlib_image       *dst,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
                                const mlib_image *src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
                                const mlib_d64   *kernel,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
                                mlib_s32         m,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
                                mlib_s32         n,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
                                mlib_s32         dx_l,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
                                mlib_s32         dx_r,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
                                mlib_s32         dy_t,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
                                mlib_s32         dy_b,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
                                mlib_s32         cmask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
#ifdef __cplusplus
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
#endif /* __cplusplus */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
#endif /* __MLIB_IMAGECONV_H */