Title | Data B> | Data Name | No |
constant name | description |
|---|---|
CDC_PTYPE_DFL | Specify the default value_CD playback: Indicates the beginning / end of the disc |
CDC_PTYPE_FAD | Frame address specification |
CDC_PTYPE_TNO | track / index specification |
CDC_PTYPE_NOCHG | Unchanged specification (does not change setting value) |
access macro | type | Description |
|---|---|---|
CDC_POS_PTYPE (pos) | Sint32 | Position type |
CDC_POS_FAD (pos) | Sint32 | Frame address, FAD Number of sectors |
CDC_POS_TNO (pos) | Uint8 | track number |
CDC_POS_IDX (pos) | Uint8 | index number |
(a) Specifying default values CdcPos poswk, * pos = & poswk; CDC_POS_PTYPE (pos) = CDC_PTYPE_DFL;(b) Frame address specification CdcPos poswk, * pos = & poswk; CDC_POS_PTYPE (pos) = CDC_PTYPE_FAD; CDC_POS_FAD (pos) = fad; / * Frame address * / In the case of the end position, specify the number of sectors from the start FAD (number of FAD sectors).
(c) Track / index specification CdcPos poswk, * pos = & poswk; CDC_POS_PTYPE (pos) = CDC_PTYPE_TNO; CDC_POS_TNO (pos) = tno; / * Track number * / CDC_POS_IDX (pos) = x; / * Index number * /
(d) Unchanged designation
CdcPos poswk, * pos = & poswk; CDC_POS_PTYPE (pos) = CDC_PTYPE_NOCHG;