idctdsp_arm.S 4.32 KB
Newer Older
1
@
2
@ ARMv4-optimized IDCT functions
3 4
@ Copyright (c) 2004 AGAWA Koji <i (AT) atty (DOT) jp>
@
5 6 7
@ This file is part of FFmpeg.
@
@ FFmpeg is free software; you can redistribute it and/or
8 9
@ modify it under the terms of the GNU Lesser General Public
@ License as published by the Free Software Foundation; either
10
@ version 2.1 of the License, or (at your option) any later version.
11
@
12
@ FFmpeg is distributed in the hope that it will be useful,
13 14 15 16 17
@ 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
18
@ License along with FFmpeg; if not, write to the Free Software
19
@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 21
@

22
#include "config.h"
23
#include "libavutil/arm/asm.S"
24

25
@ void ff_add_pixels_clamped_arm(int16_t *block, uint8_t *dest, ptrdiff_t stride)
26
function ff_add_pixels_clamped_arm, export=1, align=5
27 28 29 30 31 32 33 34 35
        push            {r4-r10}
        mov             r10, #8
1:
        ldr             r4,  [r1]               /* load dest */
        /* block[0] and block[1]*/
        ldrsh           r5,  [r0]
        ldrsh           r7,  [r0, #2]
        and             r6,  r4,  #0xFF
        and             r8,  r4,  #0xFF00
36
        add             r6,  r6,  r5
37 38 39 40
        add             r8,  r7,  r8,  lsr #8
        mvn             r5,  r5
        mvn             r7,  r7
        tst             r6,  #0x100
41
        it              ne
42 43
        movne           r6,  r5,  lsr #24
        tst             r8,  #0x100
44
        it              ne
45 46 47
        movne           r8,  r7,  lsr #24
        mov             r9,  r6
        ldrsh           r5,  [r0, #4]           /* moved form [A] */
48
        orr             r9,  r9,  r8,  lsl #8
49 50 51 52 53
        /* block[2] and block[3] */
        /* [A] */
        ldrsh           r7,  [r0, #6]
        and             r6,  r4,  #0xFF0000
        and             r8,  r4,  #0xFF000000
54 55
        add             r6,  r5,  r6,  lsr #16
        add             r8,  r7,  r8,  lsr #24
56 57 58
        mvn             r5,  r5
        mvn             r7,  r7
        tst             r6,  #0x100
59
        it              ne
60 61
        movne           r6,  r5,  lsr #24
        tst             r8,  #0x100
62
        it              ne
63
        movne           r8,  r7,  lsr #24
64
        orr             r9,  r9,  r6,  lsl #16
65
        ldr             r4,  [r1, #4]           /* moved form [B] */
66
        orr             r9,  r9,  r8,  lsl #24
67 68 69 70 71 72 73 74 75 76 77
        /* store dest */
        ldrsh           r5,  [r0, #8]           /* moved form [C] */
        str             r9,  [r1]

        /* load dest */
        /* [B] */
        /* block[4] and block[5] */
        /* [C] */
        ldrsh           r7,  [r0, #10]
        and             r6,  r4,  #0xFF
        and             r8,  r4,  #0xFF00
78
        add             r6,  r6,  r5
79
        add             r8,  r7,  r8,  lsr #8
80 81 82
        mvn             r5,  r5
        mvn             r7,  r7
        tst             r6,  #0x100
83
        it              ne
84 85
        movne           r6,  r5,  lsr #24
        tst             r8,  #0x100
86
        it              ne
87 88 89
        movne           r8,  r7,  lsr #24
        mov             r9,  r6
        ldrsh           r5,  [r0, #12]          /* moved from [D] */
90
        orr             r9,  r9,  r8,  lsl #8
91 92 93 94 95
        /* block[6] and block[7] */
        /* [D] */
        ldrsh           r7,  [r0, #14]
        and             r6,  r4,  #0xFF0000
        and             r8,  r4,  #0xFF000000
96 97
        add             r6,  r5,  r6,  lsr #16
        add             r8,  r7,  r8,  lsr #24
98 99 100
        mvn             r5,  r5
        mvn             r7,  r7
        tst             r6,  #0x100
101
        it              ne
102 103
        movne           r6,  r5,  lsr #24
        tst             r8,  #0x100
104
        it              ne
105
        movne           r8,  r7,  lsr #24
106
        orr             r9,  r9,  r6,  lsl #16
107
        add             r0,  r0,  #16           /* moved from [E] */
108
        orr             r9,  r9,  r8,  lsl #24
109 110 111 112 113 114 115 116 117 118 119
        subs            r10, r10, #1            /* moved from [F] */
        /* store dest */
        str             r9,  [r1, #4]

        /* [E] */
        /* [F] */
        add             r1,  r1,  r2
        bne             1b

        pop             {r4-r10}
        bx              lr
120
endfunc