File: cd.hpp

package info (click to toggle)
ares 126-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 32,600 kB
  • sloc: cpp: 356,508; ansic: 20,394; makefile: 16; sh: 2
file content (31 lines) | stat: -rw-r--r-- 936 bytes parent folder | download
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
#pragma once

/* CD-ROM sector functions.
 *
 * Implemented:
 *   eight-to-fourteen modulation (encoding and decoding)
 *   sync header creation and verification
 *   error detection code creation and verification
 *   reed-solomon product-code creation and verification
 *   sector scrambling and descrambling (currently unverified)
 *
 * Unimplemented:
 *    reed-solomon product-code correction
 *    cross-interleave reed-solomon creation, verification, and correction
 *    CD-ROM XA mode 2 forms 1 & 2 support
 *    subcode insertion and removal
 *    subcode decoding from CUE files
 *    channel frame expansion and reduction
 */

#include <nall/galois-field.hpp>
#include <nall/matrix.hpp>
#include <nall/reed-solomon.hpp>

#include <nall/cd/crc16.hpp>
#include <nall/cd/efm.hpp>
#include <nall/cd/sync.hpp>
#include <nall/cd/edc.hpp>
#include <nall/cd/rspc.hpp>
#include <nall/cd/scrambler.hpp>
#include <nall/cd/session.hpp>