What does HRESULT 0x80AA0A07 (E_IMAPI_RAW_IMAGE_TRACK_INDEX_NOT_FOUND) mean?

 
Previous Next
E_IMAPI_RAW_IMAGE_TOO_MANY_TRACK_INDEXES E_IMAPI_RAW_IMAGE_TRACK_INDEX_OFFSET_ZERO_CANNOT_BE_CLEARED

E_IMAPI_RAW_IMAGE_TRACK_INDEX_NOT_FOUND

E_IMAPI_RAW_IMAGE_TRACK_INDEX_NOT_FOUND means index-management code referenced an LBA offset that is not in the selected track’s current index list. The track information object exposes indexes as part of per-track state, together with starting LBA and sector count.

Enumerate the list immediately before clearing or querying the index

  • Log the selected track number and requested index LBA.
  • Read TrackIndexes from that same IRawCDImageTrackInfo instance instead of using a cached list from another track.
  • Check whether earlier logic normalized, removed or deduplicated an index before the failing call.

The error does not say that the track itself is missing. It specifically identifies the index offset. Be careful when translating between absolute disc LBA, track starting LBA and an index offset expected by image-building code. A stale cue list can also reproduce the failure after tracks are rebuilt with different sizes. Re-enumerate actual creator state rather than retrying the same absent offset.

Track indexes · Track information · IMAPI return values


Looking for a different code? Search another status or error code.