summaryrefslogtreecommitdiff
path: root/libavfilter/x86/vf_limiter.asm
blob: c5b9b0a64dde06889a4f0a9ed3436da9c5f96721 (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
;*****************************************************************************
;* x86-optimized functions for limiter filter
;*
;* This file is part of FFmpeg.
;*
;* FFmpeg is free software; you can redistribute it and/or
;* modify it under the terms of the GNU Lesser General Public
;* License as published by the Free Software Foundation; either
;* version 2.1 of the License, or (at your option) any later version.
;*
;* FFmpeg is distributed in the hope that it will be useful,
;* but WITHOUT ANY WARRANTY; without even the implied warranty of
;* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
;* Lesser General Public License for more details.
;*
;* You should have received a copy of the GNU Lesser General Public
;* License along with FFmpeg; if not, write to the Free Software
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;******************************************************************************

%include "libavutil/x86/x86util.asm"

SECTION .text

INIT_XMM sse2

cglobal limiter_8bit, 6, 7, 3, src, dst, slinesize, dlinesize, w, h, x
    movsxdifnidn wq, wd
    add        srcq, wq
    add        dstq, wq
    neg          wq
    movd         m1, r6m
    punpcklbw    m1, m1
    SPLATW       m1, m1
    movd         m2, r7m
    punpcklbw    m2, m2
    SPLATW       m2, m2
.nextrow:
    mov          xq, wq

    .loop:
        movu           m0, [srcq + xq]
        CLIPUB         m0, m1, m2
        mova    [dstq+xq], m0
        add            xq, mmsize
    jl .loop

    add        srcq, slinesizeq
    add        dstq, dlinesizeq
    sub        hd, 1
    jg .nextrow
    RET

INIT_XMM sse4

cglobal limiter_16bit, 6, 7, 3, src, dst, slinesize, dlinesize, w, h, x
    shl          wd, 1
    add        srcq, wq
    add        dstq, wq
    neg          wq
    movd         m1, r6m
    SPLATW       m1, m1
    movd         m2, r7m
    SPLATW       m2, m2
.nextrow:
    mov          xq, wq

    .loop:
        movu           m0, [srcq + xq]
        pmaxuw         m0, m1
        pminuw         m0, m2
        mova    [dstq+xq], m0
        add            xq, mmsize
    jl .loop

    add        srcq, slinesizeq
    add        dstq, dlinesizeq
    sub        hd, 1
    jg .nextrow
    RET