Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(89)

Side by Side Diff: src/libFLAC/stream_encoder_intrin_ssse3.c

Issue 1961133002: Update FLAC to 1.3.1 (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/flac.git@master
Patch Set: build config tweaks for Windows Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/libFLAC/stream_encoder_intrin_sse2.c ('k') | src/libFLAC/window.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /* libFLAC - Free Lossless Audio Codec library
2 * Copyright (C) 2000-2009 Josh Coalson
3 * Copyright (C) 2011-2014 Xiph.Org Foundation
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 *
12 * - Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 *
16 * - Neither the name of the Xiph.org Foundation nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
24 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
27 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
28 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
29 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
30 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 */
32
33 #ifdef HAVE_CONFIG_H
34 # include <config.h>
35 #endif
36
37 #ifndef FLAC__NO_ASM
38 #if (defined FLAC__CPU_IA32 || defined FLAC__CPU_X86_64) && defined FLAC__HAS_X8 6INTRIN
39 #include "private/stream_encoder.h"
40 #include "private/bitmath.h"
41 #ifdef FLAC__SSSE3_SUPPORTED
42
43 #include <stdlib.h> /* for abs() */
44 #include <tmmintrin.h> /* SSSE3 */
45 #include "FLAC/assert.h"
46
47 FLAC__SSE_TARGET("ssse3")
48 void FLAC__precompute_partition_info_sums_intrin_ssse3(const FLAC__int32 residua l[], FLAC__uint64 abs_residual_partition_sums[],
49 unsigned residual_samples, unsigned predictor_order, unsigned mi n_partition_order, unsigned max_partition_order, unsigned bps)
50 {
51 const unsigned default_partition_samples = (residual_samples + predictor _order) >> max_partition_order;
52 unsigned partitions = 1u << max_partition_order;
53
54 FLAC__ASSERT(default_partition_samples > predictor_order);
55
56 /* first do max_partition_order */
57 {
58 unsigned partition, residual_sample, end = (unsigned)(-(int)pred ictor_order);
59 unsigned e1, e3;
60 __m128i mm_res, mm_sum;
61
62 if(FLAC__bitmath_ilog2(default_partition_samples) + bps + FLAC__ MAX_EXTRA_RESIDUAL_BPS < 32) {
63 for(partition = residual_sample = 0; partition < partiti ons; partition++) {
64 end += default_partition_samples;
65 mm_sum = _mm_setzero_si128();
66
67 e1 = (residual_sample + 3) & ~3; e3 = end & ~3;
68 if(e1 > end)
69 e1 = end; /* try flac -l 1 -b 16 and you 'll be here */
70
71 /* assumption: residual[] is properly aligned so (residual + e1) is properly aligned too and _mm_loadu_si128() is fast */
72 for( ; residual_sample < e1; residual_sample++) {
73 mm_res = _mm_cvtsi32_si128(residual[resi dual_sample]);
74 mm_res = _mm_abs_epi32(mm_res); /* abs(I NT_MIN) is undefined, but if the residual is INT_MIN we have bigger problems */
75 mm_sum = _mm_add_epi32(mm_sum, mm_res);
76 }
77
78 for( ; residual_sample < e3; residual_sample+=4) {
79 mm_res = _mm_loadu_si128((const __m128i* )(residual+residual_sample));
80 mm_res = _mm_abs_epi32(mm_res);
81 mm_sum = _mm_add_epi32(mm_sum, mm_res);
82 }
83
84 for( ; residual_sample < end; residual_sample++) {
85 mm_res = _mm_cvtsi32_si128(residual[resi dual_sample]);
86 mm_res = _mm_abs_epi32(mm_res);
87 mm_sum = _mm_add_epi32(mm_sum, mm_res);
88 }
89
90 mm_sum = _mm_hadd_epi32(mm_sum, mm_sum);
91 mm_sum = _mm_hadd_epi32(mm_sum, mm_sum);
92 abs_residual_partition_sums[partition] = (FLAC__ uint32)_mm_cvtsi128_si32(mm_sum);
93 }
94 }
95 else { /* have to pessimistically use 64 bits for accumulator */
96 for(partition = residual_sample = 0; partition < partiti ons; partition++) {
97 end += default_partition_samples;
98 mm_sum = _mm_setzero_si128();
99
100 e1 = (residual_sample + 1) & ~1; e3 = end & ~1;
101 FLAC__ASSERT(e1 <= end);
102
103 for( ; residual_sample < e1; residual_sample++) {
104 mm_res = _mm_cvtsi32_si128(residual[resi dual_sample]); /* 0 0 0 r0 */
105 mm_res = _mm_abs_epi32(mm_res); /* 0 0 0 |r0| == 00 |r0_64| */
106 mm_sum = _mm_add_epi64(mm_sum, mm_res);
107 }
108
109 for( ; residual_sample < e3; residual_sample+=2) {
110 mm_res = _mm_loadl_epi64((const __m128i* )(residual+residual_sample)); /* 0 0 r1 r0 */
111 mm_res = _mm_abs_epi32(mm_res); /* 0 0 |r1| |r0| */
112 mm_res = _mm_shuffle_epi32(mm_res, _MM_S HUFFLE(3,1,2,0)); /* 0 |r1| 0 |r0| == |r1_64| |r0_64| */
113 mm_sum = _mm_add_epi64(mm_sum, mm_res);
114 }
115
116 for( ; residual_sample < end; residual_sample++) {
117 mm_res = _mm_cvtsi32_si128(residual[resi dual_sample]);
118 mm_res = _mm_abs_epi32(mm_res);
119 mm_sum = _mm_add_epi64(mm_sum, mm_res);
120 }
121
122 mm_sum = _mm_add_epi64(mm_sum, _mm_srli_si128(mm _sum, 8));
123 _mm_storel_epi64((__m128i*)(abs_residual_partiti on_sums+partition), mm_sum);
124 }
125 }
126 }
127
128 /* now merge partitions for lower orders */
129 {
130 unsigned from_partition = 0, to_partition = partitions;
131 int partition_order;
132 for(partition_order = (int)max_partition_order - 1; partition_or der >= (int)min_partition_order; partition_order--) {
133 unsigned i;
134 partitions >>= 1;
135 for(i = 0; i < partitions; i++) {
136 abs_residual_partition_sums[to_partition++] =
137 abs_residual_partition_sums[from_partiti on ] +
138 abs_residual_partition_sums[from_partiti on+1];
139 from_partition += 2;
140 }
141 }
142 }
143 }
144
145 #endif /* FLAC__SSSE3_SUPPORTED */
146 #endif /* (FLAC__CPU_IA32 || FLAC__CPU_X86_64) && FLAC__HAS_X86INTRIN */
147 #endif /* FLAC__NO_ASM */
OLDNEW
« no previous file with comments | « src/libFLAC/stream_encoder_intrin_sse2.c ('k') | src/libFLAC/window.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698