]> git.sesse.net Git - ffmpeg/blob - libavcodec/arm/vp56_arith.h
cd02579e5bde2e1ffebd5c3ace3766bb0cf381c6
[ffmpeg] / libavcodec / arm / vp56_arith.h
1 /*
2  * Copyright (C) 2010 Mans Rullgard <mans@mansr.com>
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 #ifndef AVCODEC_ARM_VP56_ARITH_H
22 #define AVCODEC_ARM_VP56_ARITH_H
23
24 #if HAVE_ARMV6 && HAVE_INLINE_ASM
25
26 #define vp56_rac_get_prob vp56_rac_get_prob_armv6
27 static inline int vp56_rac_get_prob_armv6(VP56RangeCoder *c, int pr)
28 {
29     unsigned shift     = ff_vp56_norm_shift[c->high];
30     unsigned code_word = c->code_word << shift;
31     unsigned high      = c->high << shift;
32     unsigned bit;
33
34     __asm__ ("adds    %3,  %3,  %0           \n"
35              "cmpcs   %7,  %4                \n"
36              "ldrcsh  %2,  [%4], #2          \n"
37              "rsb     %0,  %6,  #256         \n"
38              "smlabb  %0,  %5,  %6,  %0      \n"
39              "rev16cs %2,  %2                \n"
40              "orrcs   %1,  %1,  %2,  lsl %3  \n"
41              "subcs   %3,  %3,  #16          \n"
42              "lsr     %0,  %0,  #8           \n"
43              "cmp     %1,  %0,  lsl #16      \n"
44              "subge   %1,  %1,  %0,  lsl #16 \n"
45              "subge   %0,  %5,  %0           \n"
46              "movge   %2,  #1                \n"
47              "movlt   %2,  #0                \n"
48              : "=&r"(c->high), "=&r"(c->code_word), "=&r"(bit),
49                "+&r"(c->bits), "+&r"(c->buffer)
50              : "r"(high), "r"(pr), "r"(c->end - 1),
51                "0"(shift), "1"(code_word)
52              : "cc");
53
54     return bit;
55 }
56
57 #define vp56_rac_get_prob_branchy vp56_rac_get_prob_branchy_armv6
58 static inline int vp56_rac_get_prob_branchy_armv6(VP56RangeCoder *c, int pr)
59 {
60     unsigned shift     = ff_vp56_norm_shift[c->high];
61     unsigned code_word = c->code_word << shift;
62     unsigned high      = c->high << shift;
63     unsigned low;
64     unsigned tmp;
65
66     __asm__ ("adds    %3,  %3,  %0           \n"
67              "cmpcs   %7,  %4                \n"
68              "ldrcsh  %2,  [%4], #2          \n"
69              "rsb     %0,  %6,  #256         \n"
70              "smlabb  %0,  %5,  %6,  %0      \n"
71              "rev16cs %2,  %2                \n"
72              "orrcs   %1,  %1,  %2,  lsl %3  \n"
73              "subcs   %3,  %3,  #16          \n"
74              "lsr     %0,  %0,  #8           \n"
75              "lsl     %2,  %0,  #16          \n"
76              : "=&r"(low), "+&r"(code_word), "=&r"(tmp),
77                "+&r"(c->bits), "+&r"(c->buffer)
78              : "r"(high), "r"(pr), "r"(c->end - 1), "0"(shift)
79              : "cc");
80
81     if (code_word >= tmp) {
82         c->high      = high - low;
83         c->code_word = code_word - tmp;
84         return 1;
85     }
86
87     c->high      = low;
88     c->code_word = code_word;
89     return 0;
90 }
91
92 #endif
93
94 #endif /* AVCODEC_ARM_VP56_ARITH_H */