forked from ralph-irving/squeezelite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dop.c
87 lines (77 loc) · 2.37 KB
/
dop.c
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
/*
* Squeezelite - lightweight headless squeezebox emulator
*
* (c) Adrian Smith 2012, 2013, triode1@btinternet.com
* Ralph Irving 2015-2024, ralph_irving@hotmail.com
*
* This program 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 program 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 program. If not, see <http://www.gnu.org/licenses/>.
*
*/
// DSP over PCM (DOP) specific functions
#include "squeezelite.h"
#if DSD
extern struct buffer *outputbuf;
extern struct outputstate output;
#define LOCK_O mutex_lock(outputbuf->mutex)
#define UNLOCK_O mutex_unlock(outputbuf->mutex)
// check for 32 dop marker frames to see if this is a dop stream
// dop is always encoded in 24 bit samples with markers 0x05 or 0xFA in MSB
bool is_stream_dop(u8_t *lptr, u8_t *rptr, int step, frames_t frames) {
int matched = 0;
u32_t next = 0;
while (frames--) {
if ((*lptr == 0x05 && *rptr == 0x05) ||
(*lptr == 0xFA && *rptr == 0xFA)) {
if (*lptr == next) {
matched++;
} else {
next = *lptr;
matched = 1;
}
next = ( 0x05 + 0xFA ) - next;
} else {
return false;
}
if (matched == 32) {
return true;
}
lptr+=step; rptr+=step;
}
return false;
}
// update the dop marker and potentially invert polarity for frames in the output buffer
// performaned on all output including silence to maintain marker phase consitency
void update_dop(u32_t *ptr, frames_t frames, bool invert) {
static u32_t marker = 0x05;
if (!invert) {
while (frames--) {
u32_t scaled_marker = marker << 24;
*ptr = (*ptr & 0x00FFFF00) | scaled_marker;
++ptr;
*ptr = (*ptr & 0x00FFFF00) | scaled_marker;
++ptr;
marker = ( 0x05 + 0xFA ) - marker;
}
} else {
while (frames--) {
u32_t scaled_marker = marker << 24;
*ptr = ((~(*ptr)) & 0x00FFFF00) | scaled_marker;
++ptr;
*ptr = ((~(*ptr)) & 0x00FFFF00) | scaled_marker;
++ptr;
marker = ( 0x05 + 0xFA ) - marker;
}
}
}
#endif // DSD