forked from FrankBoesing/Arduino-Teensy-Codec-lib
-
Notifications
You must be signed in to change notification settings - Fork 2
/
memcpy_frominterleaved.S
97 lines (71 loc) · 2.59 KB
/
memcpy_frominterleaved.S
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/*
Helix library Arduino interface
Copyright (c) 2014-2016 Frank Bösing
This library is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This library 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this library. If not, see <http://www.gnu.org/licenses/>.
The helix decoder itself as a different license, look at the subdirectories for more info.
Diese Bibliothek ist freie Software: Sie können es unter den Bedingungen
der GNU General Public License, wie von der Free Software Foundation,
Version 3 der Lizenz oder (nach Ihrer Wahl) jeder neueren
veröffentlichten Version, weiterverbreiten und/oder modifizieren.
Diese Bibliothek wird in der Hoffnung, dass es nützlich sein wird, aber
OHNE JEDE GEWÄHRLEISTUNG, bereitgestellt; sogar ohne die implizite
Gewährleistung der MARKTFÄHIGKEIT oder EIGNUNG FÜR EINEN BESTIMMTEN ZWECK.
Siehe die GNU General Public License für weitere Details.
Sie sollten eine Kopie der GNU General Public License zusammen mit diesem
Programm erhalten haben. Wenn nicht, siehe <http://www.gnu.org/licenses/>.
Der Helixdecoder selbst hat eine eigene Lizenz, bitte für mehr Informationen
in den Unterverzeichnissen nachsehen.
*/
#if TEENSYDUINO>132
#include <AudioStream.h>
#else
#define AUDIO_BLOCK_SAMPLES 128
#endif
//Fast copy decoded data (interleaved LRLRLR) to the two audiobuffers (LLL, RRR)
.cpu cortex-m4
.syntax unified
.thumb
.text
.align 2
.global memcpy_frominterleaved
/* void memcpy_frominterleaved(int16_t *dst1, int16_t *dst2, int16_t *src); */
.global memcpy_frominterleaved
.thumb_func
memcpy_frominterleaved:
@ r0: dst1
@ r1: dst2
@ r2: src
push {r4-r11,r14}
add r14,r0,#AUDIO_BLOCK_SAMPLES * 2
.align 2
.loop:
.irp offset, 1,2,3,4
//load 8 words (32 byte) at once into r3-r10 increase adress of r2
ldmia r2!,{r3, r4, r5, r6, r7, r8, r9, r10}
pkhbt r11, r3, r4, lsl #16
pkhbt r12, r5, r6, lsl #16
stmia r0!,{r11,r12}
pkhtb r11, r4, r3, asr #16
pkhtb r12, r6, r5, asr #16
stmia r1!,{r11,r12}
pkhbt r3, r7, r8, lsl #16
pkhbt r4, r9, r10, lsl #16
stmia r0!,{r3,r4}
pkhtb r5, r8, r7, asr #16
pkhtb r6, r10, r9, asr #16
stmia r1!,{r5,r6}
.endr
cmp r14, r0
bne .loop
pop {r4-r11,r14}
BX lr
.END