This function:
|
pub fn cd_tracks(metadata: &[ChdMetadata]) -> Result<Vec<CdTrackInfo>, text_io::Error> { |
only considers cd rom tracks as tracks
and this code:
|
let chd_tracks = track_metadata::cd_tracks(&metadata[..])?; |
then sends a error if a chd gdi is opened.
Is the code not ready to use the other functions for gdi chds?
This function:
imageparse/src/chd/track_metadata.rs
Line 72 in b95a705
only considers cd rom tracks as tracks
and this code:
imageparse/src/chd.rs
Line 183 in b95a705
then sends a error if a chd gdi is opened.
Is the code not ready to use the other functions for gdi chds?