Go-based FM stereo transmitter with RDS, Windows-first and cross-platform
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

252 lines
9.4KB

  1. // Package watermark implements STFT-domain spread-spectrum audio watermarking
  2. // for fm-rds-tx, based on Kirovski & Malvar (IEEE TSP 2003).
  3. //
  4. // The watermark is embedded in STFT magnitude (dB scale) — a multiplicative
  5. // modification that naturally scales with audio content (psychoacoustic masking).
  6. // Block repetition coding provides drift tolerance. Reed-Solomon RS(16,8)
  7. // provides error correction for the 128-bit payload.
  8. //
  9. // Encoder: internal/watermark/stft_watermark.go (STFTEmbedder)
  10. // Decoder: cmd/wmdecode (STFTDetector)
  11. package watermark
  12. import (
  13. "crypto/sha256"
  14. "fmt"
  15. )
  16. // RS code parameters.
  17. const (
  18. rsDataBytes = 8 // payload bytes
  19. rsCheckBytes = 8 // parity bytes
  20. rsTotalBytes = rsDataBytes + rsCheckBytes // 16
  21. payloadBits = rsTotalBytes * 8 // 128
  22. )
  23. // Exported constants for tools.
  24. const (
  25. PayloadBits = payloadBits
  26. RsDataBytes = rsDataBytes
  27. RsTotalBytes = rsTotalBytes
  28. RsCheckBytes = rsCheckBytes
  29. )
  30. // --- GF(2^8) arithmetic — primitive polynomial 0x11d ---
  31. func gfMul(a, b byte) byte {
  32. if a == 0 || b == 0 {
  33. return 0
  34. }
  35. return gfExp[(int(gfLog[a])+int(gfLog[b]))%255]
  36. }
  37. func gfInv(a byte) byte {
  38. if a == 0 {
  39. return 0
  40. }
  41. return gfExp[255-int(gfLog[a])]
  42. }
  43. func gfPow(a byte, n int) byte {
  44. if n == 0 {
  45. return 1
  46. }
  47. r := a
  48. for i := 1; i < n; i++ {
  49. r = gfMul(r, a)
  50. }
  51. return r
  52. }
  53. // --- RS(16,8) encoding ---
  54. func rsEncode(data [rsDataBytes]byte) [rsTotalBytes]byte {
  55. work := make([]byte, rsTotalBytes)
  56. copy(work, data[:])
  57. for i := 0; i < rsDataBytes; i++ {
  58. fb := work[i]
  59. if fb != 0 {
  60. for j := 1; j <= rsCheckBytes; j++ {
  61. work[i+j] ^= gfMul(rsGen[j], fb)
  62. }
  63. }
  64. }
  65. var out [rsTotalBytes]byte
  66. copy(out[:rsDataBytes], data[:])
  67. copy(out[rsDataBytes:], work[rsDataBytes:])
  68. return out
  69. }
  70. // RSEncode encodes 8 data bytes into a 16-byte RS codeword (exported).
  71. func RSEncode(data [rsDataBytes]byte) [rsTotalBytes]byte {
  72. return rsEncode(data)
  73. }
  74. // --- RS(16,8) decoding (Vandermonde solver) ---
  75. // RSDecode recovers 8 data bytes from a (possibly corrupted) 16-byte codeword.
  76. // erasurePositions lists the byte indices (0-15) of known-erased bytes.
  77. // Returns the 8 payload bytes and true if decoding succeeded.
  78. //
  79. // The polynomial convention is C(x) = c[0]x^15 + c[1]x^14 + … + c[15],
  80. // so byte position j maps to polynomial power (15-j). The locator for
  81. // position j is α^(15-j). Decoding uses Vandermonde/Gaussian elimination
  82. // instead of Forney's formula to avoid position-mapping bugs.
  83. func RSDecode(recv [rsTotalBytes]byte, erasurePositions []int) ([rsDataBytes]byte, bool) {
  84. // Syndromes S[i] = C(α^i) via Horner's method.
  85. var S [rsCheckBytes]byte
  86. for i := 0; i < rsCheckBytes; i++ {
  87. var acc byte
  88. for _, c := range recv {
  89. acc = gfMul(acc, gfPow(2, i)) ^ c
  90. }
  91. S[i] = acc
  92. }
  93. // All syndromes zero → valid codeword.
  94. hasErr := false
  95. for _, s := range S {
  96. if s != 0 {
  97. hasErr = true
  98. break
  99. }
  100. }
  101. if !hasErr {
  102. var out [rsDataBytes]byte
  103. copy(out[:], recv[:rsDataBytes])
  104. return out, true
  105. }
  106. ne := len(erasurePositions)
  107. if ne == 0 || ne > rsCheckBytes {
  108. return [rsDataBytes]byte{}, false
  109. }
  110. // Locators: X[k] = α^(15-pos) for byte position pos.
  111. X := make([]byte, ne)
  112. for k, pos := range erasurePositions {
  113. X[k] = gfPow(2, rsTotalBytes-1-pos)
  114. }
  115. // Vandermonde system: S[i] = Σ_k e_k · X[k]^i
  116. // Augmented matrix [V | S], ne × (ne+1)
  117. mat := make([][]byte, ne)
  118. for i := range mat {
  119. mat[i] = make([]byte, ne+1)
  120. for k := 0; k < ne; k++ {
  121. mat[i][k] = gfPow(X[k], i)
  122. }
  123. mat[i][ne] = S[i]
  124. }
  125. // Gaussian elimination
  126. for col := 0; col < ne; col++ {
  127. pivot := -1
  128. for row := col; row < ne; row++ {
  129. if mat[row][col] != 0 {
  130. pivot = row
  131. break
  132. }
  133. }
  134. if pivot < 0 {
  135. return [rsDataBytes]byte{}, false
  136. }
  137. mat[col], mat[pivot] = mat[pivot], mat[col]
  138. inv := gfInv(mat[col][col])
  139. for j := 0; j <= ne; j++ {
  140. mat[col][j] = gfMul(mat[col][j], inv)
  141. }
  142. for row := 0; row < ne; row++ {
  143. if row == col {
  144. continue
  145. }
  146. f := mat[row][col]
  147. if f == 0 {
  148. continue
  149. }
  150. for j := 0; j <= ne; j++ {
  151. mat[row][j] ^= gfMul(f, mat[col][j])
  152. }
  153. }
  154. }
  155. // Apply corrections
  156. result := recv
  157. for k := 0; k < ne; k++ {
  158. result[erasurePositions[k]] ^= mat[k][ne]
  159. }
  160. // Verify
  161. for i := 0; i < rsCheckBytes; i++ {
  162. var acc byte
  163. for _, c := range result {
  164. acc = gfMul(acc, gfPow(2, i)) ^ c
  165. }
  166. if acc != 0 {
  167. return [rsDataBytes]byte{}, false
  168. }
  169. }
  170. var out [rsDataBytes]byte
  171. copy(out[:], result[:rsDataBytes])
  172. return out, true
  173. }
  174. // --- Key utilities ---
  175. // KeyMatchesPayload returns true if SHA-256(key)[:8] matches payload.
  176. func KeyMatchesPayload(key string, payload [rsDataBytes]byte) bool {
  177. h := sha256.Sum256([]byte(key))
  178. var expected [rsDataBytes]byte
  179. copy(expected[:], h[:rsDataBytes])
  180. return expected == payload
  181. }
  182. // KeyToPayload returns SHA-256(key)[:8].
  183. func KeyToPayload(key string) [rsDataBytes]byte {
  184. var data [rsDataBytes]byte
  185. h := sha256.Sum256([]byte(key))
  186. copy(data[:], h[:rsDataBytes])
  187. return data
  188. }
  189. // PayloadHex returns the hex string of the RS-encoded payload for a key.
  190. func PayloadHex(key string) string {
  191. data := KeyToPayload(key)
  192. cw := rsEncode(data)
  193. return fmt.Sprintf("%x", cw)
  194. }
  195. // --- STFT detector accessors ---
  196. // PNChipAt returns the PN chip value at group g, bin b.
  197. func (d *STFTDetector) PNChipAt(g, b int) int8 {
  198. return d.pnChips[g][b]
  199. }
  200. // GroupBit returns the data bit index for group g.
  201. func (d *STFTDetector) GroupBit(g int) int {
  202. return d.groupToBit[g]
  203. }
  204. // PNChipsFloat returns all PN chips as float64 for fast inner-loop access.
  205. func (d *STFTDetector) PNChipsFloat() [TotalGroups][NumBins]float64 {
  206. var out [TotalGroups][NumBins]float64
  207. for g := 0; g < TotalGroups; g++ {
  208. for b := 0; b < NumBins; b++ {
  209. out[g][b] = float64(d.pnChips[g][b])
  210. }
  211. }
  212. return out
  213. }
  214. // GroupToBit returns the full group-to-bit mapping.
  215. func (d *STFTDetector) GroupToBit() [TotalGroups]int {
  216. return d.groupToBit
  217. }
  218. // --- GF tables ---
  219. var gfExp = [512]byte{1, 2, 4, 8, 16, 32, 64, 128, 29, 58, 116, 232, 205, 135, 19, 38, 76, 152, 45, 90, 180, 117, 234, 201, 143, 3, 6, 12, 24, 48, 96, 192, 157, 39, 78, 156, 37, 74, 148, 53, 106, 212, 181, 119, 238, 193, 159, 35, 70, 140, 5, 10, 20, 40, 80, 160, 93, 186, 105, 210, 185, 111, 222, 161, 95, 190, 97, 194, 153, 47, 94, 188, 101, 202, 137, 15, 30, 60, 120, 240, 253, 231, 211, 187, 107, 214, 177, 127, 254, 225, 223, 163, 91, 182, 113, 226, 217, 175, 67, 134, 17, 34, 68, 136, 13, 26, 52, 104, 208, 189, 103, 206, 129, 31, 62, 124, 248, 237, 199, 147, 59, 118, 236, 197, 151, 51, 102, 204, 133, 23, 46, 92, 184, 109, 218, 169, 79, 158, 33, 66, 132, 21, 42, 84, 168, 77, 154, 41, 82, 164, 85, 170, 73, 146, 57, 114, 228, 213, 183, 115, 230, 209, 191, 99, 198, 145, 63, 126, 252, 229, 215, 179, 123, 246, 241, 255, 227, 219, 171, 75, 150, 49, 98, 196, 149, 55, 110, 220, 165, 87, 174, 65, 130, 25, 50, 100, 200, 141, 7, 14, 28, 56, 112, 224, 221, 167, 83, 166, 81, 162, 89, 178, 121, 242, 249, 239, 195, 155, 43, 86, 172, 69, 138, 9, 18, 36, 72, 144, 61, 122, 244, 245, 247, 243, 251, 235, 203, 139, 11, 22, 44, 88, 176, 125, 250, 233, 207, 131, 27, 54, 108, 216, 173, 71, 142, 1, 2, 4, 8, 16, 32, 64, 128, 29, 58, 116, 232, 205, 135, 19, 38, 76, 152, 45, 90, 180, 117, 234, 201, 143, 3, 6, 12, 24, 48, 96, 192, 157, 39, 78, 156, 37, 74, 148, 53, 106, 212, 181, 119, 238, 193, 159, 35, 70, 140, 5, 10, 20, 40, 80, 160, 93, 186, 105, 210, 185, 111, 222, 161, 95, 190, 97, 194, 153, 47, 94, 188, 101, 202, 137, 15, 30, 60, 120, 240, 253, 231, 211, 187, 107, 214, 177, 127, 254, 225, 223, 163, 91, 182, 113, 226, 217, 175, 67, 134, 17, 34, 68, 136, 13, 26, 52, 104, 208, 189, 103, 206, 129, 31, 62, 124, 248, 237, 199, 147, 59, 118, 236, 197, 151, 51, 102, 204, 133, 23, 46, 92, 184, 109, 218, 169, 79, 158, 33, 66, 132, 21, 42, 84, 168, 77, 154, 41, 82, 164, 85, 170, 73, 146, 57, 114, 228, 213, 183, 115, 230, 209, 191, 99, 198, 145, 63, 126, 252, 229, 215, 179, 123, 246, 241, 255, 227, 219, 171, 75, 150, 49, 98, 196, 149, 55, 110, 220, 165, 87, 174, 65, 130, 25, 50, 100, 200, 141, 7, 14, 28, 56, 112, 224, 221, 167, 83, 166, 81, 162, 89, 178, 121, 242, 249, 239, 195, 155, 43, 86, 172, 69, 138, 9, 18, 36, 72, 144, 61, 122, 244, 245, 247, 243, 251, 235, 203, 139, 11, 22, 44, 88, 176, 125, 250, 233, 207, 131, 27, 54, 108, 216, 173, 71, 142, 1, 2}
  220. var gfLog = [256]byte{0, 0, 1, 25, 2, 50, 26, 198, 3, 223, 51, 238, 27, 104, 199, 75, 4, 100, 224, 14, 52, 141, 239, 129, 28, 193, 105, 248, 200, 8, 76, 113, 5, 138, 101, 47, 225, 36, 15, 33, 53, 147, 142, 218, 240, 18, 130, 69, 29, 181, 194, 125, 106, 39, 249, 185, 201, 154, 9, 120, 77, 228, 114, 166, 6, 191, 139, 98, 102, 221, 48, 253, 226, 152, 37, 179, 16, 145, 34, 136, 54, 208, 148, 206, 143, 150, 219, 189, 241, 210, 19, 92, 131, 56, 70, 64, 30, 66, 182, 163, 195, 72, 126, 110, 107, 58, 40, 84, 250, 133, 186, 61, 202, 94, 155, 159, 10, 21, 121, 43, 78, 212, 229, 172, 115, 243, 167, 87, 7, 112, 192, 247, 140, 128, 99, 13, 103, 74, 222, 237, 49, 197, 254, 24, 227, 165, 153, 119, 38, 184, 180, 124, 17, 68, 146, 217, 35, 32, 137, 46, 55, 63, 209, 91, 149, 188, 207, 205, 144, 135, 151, 178, 220, 252, 190, 97, 242, 86, 211, 171, 20, 42, 93, 158, 132, 60, 57, 83, 71, 109, 65, 162, 31, 45, 67, 216, 183, 123, 164, 118, 196, 23, 73, 236, 127, 12, 111, 246, 108, 161, 59, 82, 41, 157, 85, 170, 251, 96, 134, 177, 187, 204, 62, 90, 203, 89, 95, 176, 156, 169, 160, 81, 11, 245, 22, 235, 122, 117, 44, 215, 79, 174, 213, 233, 230, 231, 173, 232, 116, 214, 244, 234, 168, 80, 88, 175}
  221. var rsGen = [9]byte{1, 255, 11, 81, 54, 239, 173, 200, 24}