1 /*
2 * Copyright (c) 2012 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
24 #include "config.h"
25
26 #define SAMPLE_SIZE 16
27 #define PLANAR 0
30
31 #undef PLANAR
32 #define PLANAR 1
34
35 #undef SAMPLE_SIZE
36 #undef PLANAR
37 #define SAMPLE_SIZE 32
38 #define PLANAR 0
41
42 #undef PLANAR
45
47 int pred_order,
int qlevel,
int len)
48 {
49 int i, j;
50
51 for (i = pred_order; i < len - 1; i += 2, decoded += 2) {
53 int d = decoded[0];
55 for (j = 1; j < pred_order; j++) {
56 s0 += c*d;
57 d = decoded[j];
59 c = coeffs[j];
60 }
61 s0 += c*d;
62 d = decoded[j] += s0 >> qlevel;
64 decoded[j + 1] +=
s1 >> qlevel;
65 }
66 if (i < len) {
67 int sum = 0;
68 for (j = 0; j < pred_order; j++)
69 sum += coeffs[j] * decoded[j];
70 decoded[j] += sum >> qlevel;
71 }
72 }
73
75 int pred_order,
int qlevel,
int len)
76 {
77 int i, j;
78
79 for (i = pred_order; i <
len; i++, decoded++) {
80 int64_t sum = 0;
81 for (j = 0; j < pred_order; j++)
82 sum += (int64_t)coeffs[j] * decoded[j];
83 decoded[j] += sum >> qlevel;
84 }
85
86 }
87
90 {
91 if (bps > 16) {
94 } else {
97 }
98
99 switch (fmt) {
105 break;
106
112 break;
113
119 break;
120
126 break;
127 }
128
129 if (ARCH_ARM)
131 if (ARCH_X86)
133 }