├── .github └── workflows │ ├── codeql.yml │ ├── make-dist.sh │ ├── make-mac-app.sh │ ├── release.yml │ └── tests.yml ├── .gitignore ├── CHANGELOG ├── COPYING ├── CREDITS.de ├── CREDITS.en ├── GNUmakefile.template ├── INSTALL ├── Makefile ├── README ├── README.md ├── TODO ├── TRANSLATION.HOWTO ├── compat └── cpuid.h ├── configure ├── contrib ├── AppRun.sh ├── README ├── dvdisaster.desktop ├── dvdisaster.spec.skel ├── dvdisaster16.png ├── dvdisaster16.xpm ├── dvdisaster24.png ├── dvdisaster24.xpm ├── dvdisaster32.png ├── dvdisaster32.xpm ├── dvdisaster48.png ├── dvdisaster48.xpm ├── dvdisaster64.png └── dvdisaster64.xpm ├── debian ├── changelog ├── control ├── copyright ├── dvdisaster-doc.doc-base ├── dvdisaster-doc.docs ├── dvdisaster.docs ├── dvdisaster.examples ├── dvdisaster.install ├── dvdisaster.lintian-overrides ├── examples │ └── gmkrs02 ├── gbp.conf ├── patches │ ├── 02-encryption.patch │ ├── 03-dvdrom.patch │ ├── 05-help-dialog.patch │ ├── 08-fix-gnu-make-detection.patch │ ├── 10-use-non-size-specific-icon-and-add-keywords-to-desktop-file.patch │ ├── 11-no-cruft.patch │ ├── 12-fix-spelling-of-up-to.patch │ ├── 13-fix-missing-language-field-in-po-files.patch │ ├── 14-make-builds-reproducible.patch │ ├── 15-show-new-pkg-tracker.patch │ ├── 16-remove-auto-build-of-doco-from-install-rule.patch │ ├── 17-fix-all-but-deprecated-api-warnings.patch │ ├── 18-update-copyright-in-about-dialog.patch │ ├── 19-show-text-files-with-abs-path.patch │ ├── 20-display-changelog-credits-and-todo.patch │ ├── 22-fix-hurd-i386-ftbfs.patch │ ├── 23-add-bdrom-support.patch │ ├── 24-show-gpl3-license.patch │ ├── 25-fix-man-pages.patch │ ├── 26-fix-display-of-manual.pdf.patch │ ├── 27-allow-opening-in-browser-again.patch │ ├── 28-pdftex-reproducibility.patch │ ├── 29-fix-more-typos.patch │ ├── 30-hurd-kfreebsd-ftbfs.patch │ ├── 31-improve-hurd-and-kfreebsd-support.patch │ ├── 32-display-compilation-commands.patch │ ├── 33-honour-LDFLAGS.patch │ ├── 34-gcc8-format-security.patch │ ├── 35-archived-homepage.patch │ ├── 36-fix-parallelism.patch │ ├── 37-suggest-dvdisaster-doc.patch │ └── series ├── rules ├── source │ ├── format │ ├── lintian-overrides │ └── options ├── tests │ ├── control │ └── unknown-system ├── upstream │ ├── metadata │ └── signing-key.asc └── watch ├── documentation ├── codec-specs │ ├── Makefile │ ├── changelog.tex │ ├── codecs.pdf │ ├── codecs.tex │ ├── crc-block.tex │ ├── ecc-header.tex │ ├── layer.eps │ ├── layer.fig │ ├── rs-params.tex │ ├── rs01-layout.eps │ ├── rs01-layout.fig │ ├── rs01.tex │ ├── rs02-layout.eps │ ├── rs02-layout.fig │ ├── rs02.tex │ ├── rs03.tex │ ├── spiral-rs01.eps │ ├── spiral-rs01.fig │ ├── spiral-rs02.eps │ ├── spiral-rs02.fig │ ├── spiral-rs03.eps │ ├── spiral-rs03.fig │ ├── title.eps │ └── title.fig ├── codecs.pdf ├── dvdisaster.de.1 ├── dvdisaster.en.1 ├── install.template ├── manual.pdf └── user-manual │ ├── Makefile │ ├── background.tex │ ├── defect-reporting.tex │ ├── download.tex │ ├── figures │ ├── metadata1.dia │ ├── metadata1.pdf │ ├── metadata2.dia │ ├── metadata2.pdf │ ├── metadata3.dia │ ├── metadata3.pdf │ ├── pin-ink.dia │ ├── pin-ink.pdf │ ├── pin-sum.dia │ ├── pin-sum.pdf │ ├── pin.dia │ ├── pin.pdf │ ├── puzzle.fig │ └── puzzle.pdf │ ├── howtos.tex │ ├── icons │ ├── augmented-cd.png │ ├── backup1.png │ ├── backup2.png │ ├── bad-cd.png │ ├── bad-cd1.png │ ├── bad-image.png │ ├── create-icon.png │ ├── down-arrow.png │ ├── down-fork-arrow.png │ ├── ecc-example.png │ ├── ecc-file.png │ ├── filemanager.png │ ├── fix-icon.png │ ├── good-cd.png │ ├── good-image.png │ ├── good-image2.png │ ├── gplv3-127x51.png │ ├── join-arrow.png │ ├── ldiag-arrow.png │ ├── log-icon.png │ ├── old-cd.png │ ├── old-image.png │ ├── prefs-icon.png │ ├── rdiag-arrow.png │ ├── read-icon.png │ ├── right-arrow.png │ ├── scan-icon.png │ ├── select-drive.png │ ├── select-ecc.png │ ├── select-image.png │ ├── slot-in.png │ ├── stop-icon.png │ └── verify-icon.png │ ├── local.tex │ ├── manual.pdf │ ├── manual.tex │ ├── overview.tex │ ├── preface.tex │ ├── qa.tex │ └── screenshots │ ├── action-buttons.png │ ├── activate-logfile.png │ ├── adaptive-failure.png │ ├── adaptive-progress.png │ ├── adaptive-success.png │ ├── augment-prefs-rs02-adv.png │ ├── augment-prefs-rs02.png │ ├── augment-prefs-rs03-adv.png │ ├── augment-prefs-rs03.png │ ├── compat-dialog-rs01.png │ ├── crc-cd-scan.png │ ├── create-prefs-file.png │ ├── defective-cd-scan.png │ ├── dialog-drive-full.png │ ├── dialog-drive-linux.png │ ├── dialog-eccfile-full.png │ ├── dialog-image-full.png │ ├── eccfile-prefs-drive-adv.png │ ├── eccfile-prefs-drive.png │ ├── eccfile-prefs-ecc-file1.png │ ├── eccfile-prefs-ecc-file3.png │ ├── eccfile-prefs-ecc3-adv.png │ ├── eccfile-prefs-file-adv.png │ ├── eccfile-prefs-image-adv.png │ ├── eccfile-prefs-image.png │ ├── eccfile-prefs-read-attempts.png │ ├── fix-image.png │ ├── fix-prefs-read-attempts-adv1.png │ ├── fix-prefs-read-attempts-adv2.png │ ├── fix-prefs-read-drive-adv.png │ ├── fix-reread-dvd.png │ ├── fix-success.png │ ├── general-prefs-misc.png │ ├── global-prefs-invoke.png │ ├── good-cd-scan.png │ ├── good-dvd9-scan.png │ ├── info-bad-rs01.png │ ├── info-bad-rs02.png │ ├── info-mismatch.png │ ├── info-okay-rs01.png │ ├── info-okay-rs02.png │ ├── info-okay-rs03-augmented.png │ ├── info-okay-rs03-file.png │ ├── info-padding.png │ ├── info-truncated.png │ ├── make-ecc3.png │ ├── make-iso1.png │ ├── make-iso2.png │ ├── make-iso3.png │ ├── make-iso4.png │ ├── make-iso5.png │ ├── make-iso6.png │ ├── recover-linear.png │ ├── recover-prefs-drive.png │ ├── recover-prefs-image.png │ ├── recover-prefs-read-attempts.png │ ├── scan-prefs-drive-adv.png │ ├── scan-prefs-drive.png │ ├── scan-prefs-image.png │ ├── scan-prefs-read-attempts-adv.png │ ├── scan-prefs-read-attempts.png │ ├── verify-fail1.png │ ├── verify-fail2.png │ ├── watch-create.png │ ├── weak-cd-scan.png │ ├── write-iso1.png │ ├── write-iso2.png │ ├── write-iso3.png │ └── write-iso4.png ├── icons ├── cd.svg ├── close.svg ├── create.svg ├── fix-symbolic.svg ├── icons.gresource.xml ├── log.svg ├── manual.svg ├── open-ecc.svg ├── open-img.svg ├── preferences.svg ├── quit.svg ├── read-symbolic.svg ├── scan-symbolic.svg ├── stop.svg ├── strip.svg ├── verify-symbolic.svg └── win.ico ├── locale ├── create-makefile ├── cs.po ├── de.po ├── it.po ├── pt_BR.po ├── ru.po └── sv.po ├── macinst ├── Info.plist └── dvdisaster.icns ├── regtest ├── .dvdisaster-default ├── README ├── common.bash ├── config-win.txt ├── config.txt ├── database │ ├── .RS02_adaptive_longer.swp │ ├── RS01_adapive_wrong_fp_with_ecc │ ├── RS01_adaptive_crc_errors_with_ecc │ ├── RS01_adaptive_defective_large_skip │ ├── RS01_adaptive_defective_no_ecc │ ├── RS01_adaptive_good │ ├── RS01_adaptive_longer_with_ecc │ ├── RS01_adaptive_medium_with_dsm │ ├── RS01_adaptive_new_with_invalid_range_no_ecc │ ├── RS01_adaptive_new_with_range_no_ecc │ ├── RS01_adaptive_no_device │ ├── RS01_adaptive_no_device.darwin │ ├── RS01_adaptive_no_device.win │ ├── RS01_adaptive_no_device_access │ ├── RS01_adaptive_no_device_access.darwin │ ├── RS01_adaptive_no_ecc │ ├── RS01_adaptive_no_tao_tail_with_ecc │ ├── RS01_adaptive_shorter_with_ecc │ ├── RS01_adaptive_tao_tail_with_ecc │ ├── RS01_adaptive_truncated_no_ecc │ ├── RS01_adaptive_truncated_no_ecc_again │ ├── RS01_adaptive_with_double_ecc │ ├── RS01_adaptive_with_gap_no_ecc │ ├── RS01_adaptive_with_gap_no_ecc2 │ ├── RS01_adaptive_with_gap_no_ecc3 │ ├── RS01_adaptive_with_hardware_failure │ ├── RS01_adaptive_with_ignored_hardware_failure │ ├── RS01_adaptive_with_incompatible_ecc │ ├── RS01_adaptive_with_no_permission_for_ecc │ ├── RS01_crc_errors_with_ecc │ ├── RS01_crc_in_fingerprint │ ├── RS01_defective_image_no_ecc │ ├── RS01_defective_with_ecc │ ├── RS01_ecc_create │ ├── RS01_ecc_create_after_partial_read │ ├── RS01_ecc_create_after_read │ ├── RS01_ecc_create_plus56 │ ├── RS01_ecc_header_crc_error │ ├── RS01_ecc_missing_image │ ├── RS01_ecc_missing_sectors │ ├── RS01_ecc_no_read_perm │ ├── RS01_ecc_no_write_perm │ ├── RS01_ecc_plus56_bytes │ ├── RS01_ecc_recreate_after_read_rs01 │ ├── RS01_ecc_recreate_after_read_rs02 │ ├── RS01_ecc_recreate_after_read_rs03f │ ├── RS01_ecc_recreate_after_read_rs03i │ ├── RS01_fix_additional_sector │ ├── RS01_fix_crc_errors │ ├── RS01_fix_good │ ├── RS01_fix_missing_sectors │ ├── RS01_fix_no_read_perm │ ├── RS01_fix_no_read_perm_ecc │ ├── RS01_fix_no_write_perm │ ├── RS01_fix_plus17 │ ├── RS01_fix_plus17_truncate │ ├── RS01_fix_plus56 │ ├── RS01_fix_plus56_bytes │ ├── RS01_fix_plus56_little_truncated │ ├── RS01_fix_plus56_plus17 │ ├── RS01_fix_plus56_plus17500 │ ├── RS01_fix_plus56_plus1s │ ├── RS01_fix_plus56_plus2s │ ├── RS01_fix_plus56_truncated │ ├── RS01_fix_truncated │ ├── RS01_good │ ├── RS01_good_quick │ ├── RS01_image_few_bytes_longer │ ├── RS01_image_few_bytes_shorter │ ├── RS01_image_plus56_bytes │ ├── RS01_image_plus56b_normal_ecc │ ├── RS01_missing_ecc_header │ ├── RS01_missing_fingerprint │ ├── RS01_missing_sectors_with_ecc │ ├── RS01_no_ecc │ ├── RS01_no_files │ ├── RS01_no_image │ ├── RS01_normal_image_ecc_plus56b │ ├── RS01_plus1 │ ├── RS01_plus17 │ ├── RS01_plus56_bytes │ ├── RS01_read_crc_errors_with_ecc │ ├── RS01_read_defective_large_skip │ ├── RS01_read_defective_no_ecc │ ├── RS01_read_defective_no_ecc_again │ ├── RS01_read_longer_with_ecc │ ├── RS01_read_medium_with_dsm │ ├── RS01_read_medium_with_dsm_in_image │ ├── RS01_read_medium_with_dsm_in_image2 │ ├── RS01_read_medium_with_dsm_in_image2_verbose │ ├── RS01_read_medium_with_dsm_in_image_verbose │ ├── RS01_read_medium_with_dsm_verbose │ ├── RS01_read_more_missing_at_end_with_ecc │ ├── RS01_read_multipass_ecc_partial_success │ ├── RS01_read_multipass_no_ecc_again │ ├── RS01_read_multipass_partial_success │ ├── RS01_read_new_with_invalid_range_no_ecc │ ├── RS01_read_new_with_range_no_ecc │ ├── RS01_read_no_device │ ├── RS01_read_no_device.darwin │ ├── RS01_read_no_device.win │ ├── RS01_read_no_device_access │ ├── RS01_read_no_device_access.darwin │ ├── RS01_read_no_ecc │ ├── RS01_read_no_ecc_good_file │ ├── RS01_read_no_tao_tail_with_ecc │ ├── RS01_read_second_pass_with_crc_error │ ├── RS01_read_second_pass_with_ecc_success │ ├── RS01_read_shorter_with_ecc │ ├── RS01_read_tao_tail_with_ecc │ ├── RS01_read_truncated_no_ecc │ ├── RS01_read_truncated_no_ecc_again │ ├── RS01_read_two_missing_secs_no_ecc │ ├── RS01_read_with_double_ecc │ ├── RS01_read_with_ecc │ ├── RS01_read_with_ecc_good_file │ ├── RS01_read_with_gap_no_ecc │ ├── RS01_read_with_hardware_failure │ ├── RS01_read_with_ignored_hardware_failure │ ├── RS01_read_with_incompatible_ecc │ ├── RS01_read_with_no_permission_for_ecc │ ├── RS01_read_with_non_existing_ecc │ ├── RS01_read_wrong_fp_with_ecc │ ├── RS01_scan_crc_errors_with_ecc │ ├── RS01_scan_defective_large_skip │ ├── RS01_scan_defective_no_ecc │ ├── RS01_scan_defective_no_ecc_again │ ├── RS01_scan_longer_with_ecc │ ├── RS01_scan_medium_with_dsm │ ├── RS01_scan_more_missing_at_end_with_ecc │ ├── RS01_scan_new_with_invalid_range_no_ecc │ ├── RS01_scan_new_with_range_no_ecc │ ├── RS01_scan_no_device │ ├── RS01_scan_no_device.darwin │ ├── RS01_scan_no_device.win │ ├── RS01_scan_no_device_access │ ├── RS01_scan_no_device_access.darwin │ ├── RS01_scan_no_ecc │ ├── RS01_scan_no_tao_tail_with_ecc │ ├── RS01_scan_shorter_with_ecc │ ├── RS01_scan_tao_tail_with_ecc │ ├── RS01_scan_with_double_ecc │ ├── RS01_scan_with_ecc │ ├── RS01_scan_with_hardware_failure │ ├── RS01_scan_with_ignored_hardware_failure │ ├── RS01_scan_with_incompatible_ecc │ ├── RS01_scan_with_no_permission_for_ecc │ ├── RS01_scan_with_non_existing_ecc │ ├── RS01_truncated │ ├── RS01_truncated_by_bytes │ ├── RS01_uncorrectable_dsm_in_image │ ├── RS01_uncorrectable_dsm_in_image2 │ ├── RS01_uncorrectable_dsm_in_image2_verbose │ ├── RS01_uncorrectable_dsm_in_image_verbose │ ├── RS02_adaptive_bad_header │ ├── RS02_adaptive_bad_headers │ ├── RS02_adaptive_crc_bad_byte │ ├── RS02_adaptive_data_bad_byte │ ├── RS02_adaptive_ecc_bad_byte │ ├── RS02_adaptive_good │ ├── RS02_adaptive_good_file │ ├── RS02_adaptive_good_verbose │ ├── RS02_adaptive_incompatible_ecc │ ├── RS02_adaptive_longer │ ├── RS02_adaptive_missing_crc_sectors │ ├── RS02_adaptive_missing_data_sectors │ ├── RS02_adaptive_missing_ecc_sectors │ ├── RS02_adaptive_modulo_glitch │ ├── RS02_adaptive_modulo_glitch2 │ ├── RS02_adaptive_modulo_glitch3 │ ├── RS02_adaptive_modulo_glitch4 │ ├── RS02_adaptive_no_tao_tail │ ├── RS02_adaptive_shorter │ ├── RS02_adaptive_tao_tail │ ├── RS02_adaptive_with_rs01_file │ ├── RS02_adaptive_with_wrong_rs01_file │ ├── RS02_bad_header │ ├── RS02_bad_headers │ ├── RS02_bad_master │ ├── RS02_crc_bad_byte │ ├── RS02_data_bad_byte │ ├── RS02_ecc_bad_byte │ ├── RS02_ecc_create │ ├── RS02_ecc_create_after_partial_read │ ├── RS02_ecc_create_after_read │ ├── RS02_ecc_from_larger_rs02 │ ├── RS02_ecc_from_larger_rs02_non_blocksize │ ├── RS02_ecc_from_rs02 │ ├── RS02_ecc_from_rs02_non_blocksize │ ├── RS02_ecc_from_rs03 │ ├── RS02_ecc_from_rs03_non_blocksize │ ├── RS02_ecc_missing_image │ ├── RS02_ecc_missing_sectors │ ├── RS02_ecc_no_read_perm │ ├── RS02_ecc_no_write_perm │ ├── RS02_ecc_non_blocksize │ ├── RS02_ecc_recreate_after_read_rs01 │ ├── RS02_ecc_recreate_after_read_rs02 │ ├── RS02_ecc_recreate_after_read_rs03f │ ├── RS02_ecc_recreate_after_read_rs03i │ ├── RS02_fix_bad_header │ ├── RS02_fix_bad_headers │ ├── RS02_fix_bad_master │ ├── RS02_fix_correctable │ ├── RS02_fix_crc_bad_byte │ ├── RS02_fix_data_bad_byte │ ├── RS02_fix_ecc_bad_byte │ ├── RS02_fix_good_0_offset │ ├── RS02_fix_good_150_offset │ ├── RS02_fix_good_image │ ├── RS02_fix_image_error_in_plus137 │ ├── RS02_fix_image_plus137 │ ├── RS02_fix_image_plus137_truncated │ ├── RS02_fix_large_file │ ├── RS02_fix_missing_crc_sectors │ ├── RS02_fix_missing_data_sectors │ ├── RS02_fix_missing_ecc_sectors │ ├── RS02_fix_missing_headers │ ├── RS02_fix_no_read_perm │ ├── RS02_fix_no_write_perm │ ├── RS02_fix_trailing_bytes │ ├── RS02_fix_trailing_garbage │ ├── RS02_fix_trailing_garbage2 │ ├── RS02_fix_trailing_tao │ ├── RS02_fix_truncated_image │ ├── RS02_fix_with_rs01_file │ ├── RS02_fix_with_rs03_file │ ├── RS02_good │ ├── RS02_good_0_offset │ ├── RS02_good_150_offset │ ├── RS02_good_quick │ ├── RS02_missing_crc_sectors │ ├── RS02_missing_data_sectors │ ├── RS02_missing_ecc_sectors │ ├── RS02_missing_headers │ ├── RS02_modulo_glitch │ ├── RS02_modulo_glitch2 │ ├── RS02_modulo_glitch3 │ ├── RS02_modulo_glitch4 │ ├── RS02_no_image │ ├── RS02_plus1 │ ├── RS02_plus17 │ ├── RS02_read_bad_header │ ├── RS02_read_bad_headers │ ├── RS02_read_bad_master │ ├── RS02_read_bad_master_exhaustive │ ├── RS02_read_crc_bad_byte │ ├── RS02_read_data_bad_bytes │ ├── RS02_read_ecc_bad_byte │ ├── RS02_read_good │ ├── RS02_read_good_file │ ├── RS02_read_good_verbose │ ├── RS02_read_incompatible_ecc │ ├── RS02_read_longer │ ├── RS02_read_missing_crc_sectors │ ├── RS02_read_missing_data_sectors │ ├── RS02_read_missing_ecc_sectors │ ├── RS02_read_modulo_glitch │ ├── RS02_read_modulo_glitch2 │ ├── RS02_read_modulo_glitch3 │ ├── RS02_read_modulo_glitch4 │ ├── RS02_read_multipass_ecc_partial_success │ ├── RS02_read_no_tao_tail │ ├── RS02_read_second_pass_with_crc_error │ ├── RS02_read_shorter │ ├── RS02_read_tao_tail │ ├── RS02_read_with_rs01_file │ ├── RS02_read_with_rs03_file │ ├── RS02_read_with_wrong_rs01_file │ ├── RS02_read_with_wrong_rs03_file │ ├── RS02_scan_bad_header │ ├── RS02_scan_bad_headers │ ├── RS02_scan_crc_bad_byte │ ├── RS02_scan_data_bad_byte │ ├── RS02_scan_ecc_bad_byte │ ├── RS02_scan_good │ ├── RS02_scan_incompatible_ecc │ ├── RS02_scan_longer │ ├── RS02_scan_missing_crc_sectors │ ├── RS02_scan_missing_data_sectors │ ├── RS02_scan_missing_ecc_sectors │ ├── RS02_scan_modulo_glitch │ ├── RS02_scan_modulo_glitch2 │ ├── RS02_scan_modulo_glitch3 │ ├── RS02_scan_modulo_glitch4 │ ├── RS02_scan_no_tao_tail │ ├── RS02_scan_shorter │ ├── RS02_scan_tao_tail │ ├── RS02_scan_with_rs01_file │ ├── RS02_scan_with_rs03_file │ ├── RS02_scan_with_wrong_rs01_file │ ├── RS02_scan_with_wrong_rs03_file │ ├── RS02_strip_ecc │ ├── RS02_strip_ecc_not │ ├── RS02_truncated │ ├── RS02_uncorrectable_dsm_in_image │ ├── RS02_uncorrectable_dsm_in_image2 │ ├── RS02_uncorrectable_dsm_in_image2_verbose │ ├── RS02_uncorrectable_dsm_in_image3 │ ├── RS02_uncorrectable_dsm_in_image_verbose │ ├── RS02_with_rs01_file │ ├── RS02_with_rs03_file │ ├── RS02_with_wrong_rs01_file │ ├── RS02_with_wrong_rs03_file │ ├── RS03f_17_extra_sectors │ ├── RS03f_crc_error_in_fingerprint │ ├── RS03f_crc_errors │ ├── RS03f_crc_section_with_uncorrectable_dsm │ ├── RS03f_ecc_create │ ├── RS03f_ecc_create_after_partial_read │ ├── RS03f_ecc_create_after_read │ ├── RS03f_ecc_create_plus56 │ ├── RS03f_ecc_existing_file │ ├── RS03f_ecc_file_cookieless_crc │ ├── RS03f_ecc_file_defective_crc │ ├── RS03f_ecc_file_defective_ecc │ ├── RS03f_ecc_file_missing_crc │ ├── RS03f_ecc_file_missing_crc2 │ ├── RS03f_ecc_file_missing_crc3 │ ├── RS03f_ecc_file_missing_ecc │ ├── RS03f_ecc_file_plus_garbage │ ├── RS03f_ecc_file_truncated │ ├── RS03f_ecc_header_crc_error │ ├── RS03f_ecc_missing_image │ ├── RS03f_ecc_missing_sectors │ ├── RS03f_ecc_no_read_perm │ ├── RS03f_ecc_no_write_perm │ ├── RS03f_ecc_recreate_after_read_rs01 │ ├── RS03f_ecc_recreate_after_read_rs02 │ ├── RS03f_ecc_recreate_after_read_rs03f │ ├── RS03f_ecc_recreate_after_read_rs03i │ ├── RS03f_ecc_section_with_uncorrectable_dsm │ ├── RS03f_few_bytes_longer │ ├── RS03f_few_bytes_shorter │ ├── RS03f_few_bytes_shorter2 │ ├── RS03f_fingerprint_unreadable │ ├── RS03f_fix_additional_sector │ ├── RS03f_fix_border_cases_crc_errors │ ├── RS03f_fix_border_cases_erasures │ ├── RS03f_fix_ecc_file_truncated │ ├── RS03f_fix_good │ ├── RS03f_fix_good_plus56 │ ├── RS03f_fix_missing_crc_sectors │ ├── RS03f_fix_missing_data_sectors │ ├── RS03f_fix_missing_ecc_header │ ├── RS03f_fix_missing_ecc_sectors │ ├── RS03f_fix_no_read_perm │ ├── RS03f_fix_no_read_perm_ecc │ ├── RS03f_fix_no_write_perm │ ├── RS03f_fix_no_write_perm_ecc │ ├── RS03f_fix_plus17 │ ├── RS03f_fix_plus17_truncate │ ├── RS03f_fix_plus56 │ ├── RS03f_fix_plus56_bytes │ ├── RS03f_fix_plus56_little_truncated │ ├── RS03f_fix_plus56_plus17 │ ├── RS03f_fix_plus56_plus17500 │ ├── RS03f_fix_plus56_plus17_truncate │ ├── RS03f_fix_plus56_plus1s │ ├── RS03f_fix_plus56_plus2s │ ├── RS03f_fix_plus56_truncated │ ├── RS03f_fix_truncated │ ├── RS03f_good │ ├── RS03f_good_quick │ ├── RS03f_image_plus56_normal_ecc │ ├── RS03f_image_truncated_by5 │ ├── RS03f_missing_ecc_header │ ├── RS03f_missing_ecc_header_and_crc │ ├── RS03f_missing_ecc_header_and_defective_crc │ ├── RS03f_missing_sectors │ ├── RS03f_mixed_errors │ ├── RS03f_no_image │ ├── RS03f_no_image_plus56_bytes │ ├── RS03f_normal_image_ecc_plus56_bytes │ ├── RS03f_one_extra_sector │ ├── RS03f_plus56_bytes │ ├── RS03f_read_bad_header │ ├── RS03f_read_crc_bad_byte │ ├── RS03f_read_crc_section_with_uncorrectable_dsm │ ├── RS03f_read_data_bad_byte │ ├── RS03f_read_ecc_bad_byte │ ├── RS03f_read_good │ ├── RS03f_read_good_file │ ├── RS03f_read_good_verbose │ ├── RS03f_read_incompatible_ecc │ ├── RS03f_read_longer │ ├── RS03f_read_missing_crc_sectors │ ├── RS03f_read_missing_data_sectors │ ├── RS03f_read_missing_ecc_sectors │ ├── RS03f_read_multipass_ecc_partial_success │ ├── RS03f_read_no_tao_tail │ ├── RS03f_read_second_pass_with_crc_error │ ├── RS03f_read_shorter │ ├── RS03f_read_tao_tail │ ├── RS03f_scan_bad_header │ ├── RS03f_scan_crc_bad_byte │ ├── RS03f_scan_data_bad_byte │ ├── RS03f_scan_ecc_bad_byte │ ├── RS03f_scan_ecc_header_crc_error │ ├── RS03f_scan_good │ ├── RS03f_scan_good_verbose │ ├── RS03f_scan_incompatible_ecc │ ├── RS03f_scan_longer │ ├── RS03f_scan_missing_crc_sectors │ ├── RS03f_scan_missing_data_sectors │ ├── RS03f_scan_missing_ecc_header │ ├── RS03f_scan_missing_ecc_header_and_crc │ ├── RS03f_scan_missing_ecc_header_and_defective_crc │ ├── RS03f_scan_missing_ecc_sectors │ ├── RS03f_scan_no_tao_tail │ ├── RS03f_scan_shorter │ ├── RS03f_scan_tao_tail │ ├── RS03f_special_padding │ ├── RS03f_special_padding_plus56 │ ├── RS03f_uncorrectable_dsm_in_image │ ├── RS03f_uncorrectable_dsm_in_image2 │ ├── RS03f_uncorrectable_dsm_in_image2_verbose │ ├── RS03f_uncorrectable_dsm_in_image_verbose │ ├── RS03i_bad_crc_checksum │ ├── RS03i_bad_crc_cookie │ ├── RS03i_crc_section_with_uncorrectable_dsm │ ├── RS03i_data_bad_byte │ ├── RS03i_ecc_bad_byte │ ├── RS03i_ecc_create │ ├── RS03i_ecc_create_after_partial_read │ ├── RS03i_ecc_create_after_read │ ├── RS03i_ecc_from_larger_rs03 │ ├── RS03i_ecc_from_larger_rs03_non_blocksize │ ├── RS03i_ecc_from_rs02 │ ├── RS03i_ecc_from_rs02_non_blocksize │ ├── RS03i_ecc_from_rs03 │ ├── RS03i_ecc_from_rs03_non_blocksize │ ├── RS03i_ecc_layer_multiple │ ├── RS03i_ecc_missing_image │ ├── RS03i_ecc_missing_sectors │ ├── RS03i_ecc_no_padding │ ├── RS03i_ecc_no_read_perm │ ├── RS03i_ecc_no_write_perm │ ├── RS03i_ecc_non_blocksize │ ├── RS03i_ecc_recreate_after_read_rs01 │ ├── RS03i_ecc_recreate_after_read_rs02 │ ├── RS03i_ecc_recreate_after_read_rs03f │ ├── RS03i_ecc_recreate_after_read_rs03i │ ├── RS03i_ecc_section_with_uncorrectable_dsm │ ├── RS03i_fix_border_cases_crc_errors │ ├── RS03i_fix_border_cases_erasures │ ├── RS03i_fix_correctable │ ├── RS03i_fix_good_image │ ├── RS03i_fix_layer_multiple │ ├── RS03i_fix_no_padding │ ├── RS03i_fix_no_read_perm │ ├── RS03i_fix_no_write_perm │ ├── RS03i_fix_trailing_bytes │ ├── RS03i_fix_trailing_garbage │ ├── RS03i_fix_trailing_garbage2 │ ├── RS03i_fix_trailing_tao │ ├── RS03i_fix_truncated_image │ ├── RS03i_fix_with_crc_error_in_padding │ ├── RS03i_fix_with_ecc_file_crc_block │ ├── RS03i_fix_with_ecc_file_header │ ├── RS03i_fix_with_missing_header │ ├── RS03i_fix_with_missing_iso_header │ ├── RS03i_fix_with_rs01_file │ ├── RS03i_fix_with_rs03_file │ ├── RS03i_good │ ├── RS03i_good_quick │ ├── RS03i_layer_multiple │ ├── RS03i_missing_crc_sectors │ ├── RS03i_missing_data_sectors │ ├── RS03i_missing_ecc_sectors │ ├── RS03i_missing_header │ ├── RS03i_missing_header2 │ ├── RS03i_missing_header3 │ ├── RS03i_missing_header4 │ ├── RS03i_missing_header5 │ ├── RS03i_missing_header6 │ ├── RS03i_missing_header_no_crcsec │ ├── RS03i_missing_header_truncated │ ├── RS03i_missing_iso_header │ ├── RS03i_no_image │ ├── RS03i_no_padding │ ├── RS03i_plus1 │ ├── RS03i_plus17 │ ├── RS03i_plus_56_bytes │ ├── RS03i_random_image │ ├── RS03i_read_bad_header │ ├── RS03i_read_bad_header_exhaustive │ ├── RS03i_read_crc_bad_byte │ ├── RS03i_read_crc_section_with_uncorrectable_dsm │ ├── RS03i_read_data_bad_byte │ ├── RS03i_read_ecc_bad_byte │ ├── RS03i_read_good │ ├── RS03i_read_good_file │ ├── RS03i_read_good_verbose │ ├── RS03i_read_incompatible_ecc │ ├── RS03i_read_longer │ ├── RS03i_read_missing_crc_sectors │ ├── RS03i_read_missing_data_sectors │ ├── RS03i_read_missing_ecc_sectors │ ├── RS03i_read_missing_iso_header │ ├── RS03i_read_multipass_ecc_partial_success │ ├── RS03i_read_no_tao_tail │ ├── RS03i_read_second_pass_with_crc_error │ ├── RS03i_read_shorter │ ├── RS03i_read_tao_tail │ ├── RS03i_read_with_crc_error_in_padding │ ├── RS03i_read_with_ecc_file_crc_block │ ├── RS03i_read_with_ecc_file_header │ ├── RS03i_read_with_missing_header │ ├── RS03i_read_with_missing_header_exhaustive │ ├── RS03i_read_with_missing_iso_header_exhaustive │ ├── RS03i_read_with_rs01_file │ ├── RS03i_read_with_rs03_file │ ├── RS03i_read_with_wrong_rs01_file │ ├── RS03i_read_with_wrong_rs03_file │ ├── RS03i_rediscover_170_roots │ ├── RS03i_rediscover_170_roots-padding │ ├── RS03i_rediscover_170_roots-padding2 │ ├── RS03i_rediscover_170_roots2 │ ├── RS03i_rediscover_8_roots │ ├── RS03i_rediscover_8_roots2 │ ├── RS03i_scan_bad_header │ ├── RS03i_scan_crc_bad_byte │ ├── RS03i_scan_data_bad_byte │ ├── RS03i_scan_ecc_bad_byte │ ├── RS03i_scan_good │ ├── RS03i_scan_good_file │ ├── RS03i_scan_good_verbose │ ├── RS03i_scan_incompatible_ecc │ ├── RS03i_scan_longer │ ├── RS03i_scan_missing_crc_sectors │ ├── RS03i_scan_missing_data_sectors │ ├── RS03i_scan_missing_ecc_sectors │ ├── RS03i_scan_missing_header │ ├── RS03i_scan_missing_header2 │ ├── RS03i_scan_missing_header3 │ ├── RS03i_scan_missing_header4 │ ├── RS03i_scan_missing_header_no_crcsec │ ├── RS03i_scan_missing_header_not_exhaustive │ ├── RS03i_scan_missing_header_truncated │ ├── RS03i_scan_no_tao_tail │ ├── RS03i_scan_random_image │ ├── RS03i_scan_rediscover_170_roots │ ├── RS03i_scan_rediscover_170_roots-padding │ ├── RS03i_scan_rediscover_170_roots-padding2 │ ├── RS03i_scan_rediscover_170_roots2 │ ├── RS03i_scan_rediscover_8_roots │ ├── RS03i_scan_rediscover_8_roots2 │ ├── RS03i_scan_shorter │ ├── RS03i_scan_tao_tail │ ├── RS03i_scan_with_crc_error_in_padding │ ├── RS03i_scan_with_rs01_file │ ├── RS03i_scan_with_rs03_file │ ├── RS03i_scan_with_wrong_rs01_file │ ├── RS03i_scan_with_wrong_rs03_file │ ├── RS03i_strip_ecc │ ├── RS03i_strip_ecc_not │ ├── RS03i_truncated │ ├── RS03i_uncorrectable_dsm_in_image │ ├── RS03i_uncorrectable_dsm_in_image2 │ ├── RS03i_uncorrectable_dsm_in_image2_verbose │ ├── RS03i_uncorrectable_dsm_in_image_verbose │ ├── RS03i_with_crc_error_in_padding │ ├── RS03i_with_ecc_file_crc_block │ ├── RS03i_with_ecc_file_header │ ├── RS03i_with_rs01_file │ ├── RS03i_with_rs03_file │ ├── RS03i_with_wrong_rs01_file │ └── RS03i_with_wrong_rs03_file ├── fixed-random-sequence ├── rs01.bash ├── rs02.bash ├── rs03f.bash ├── rs03i.bash └── runtests.sh ├── scripts ├── bash-based-configure ├── distcomp.bash └── time-stamper.bash └── src ├── bitmap.c ├── build.c ├── cacheprobe.c ├── closure.c ├── crc32.c ├── crcbuf.c ├── curve.c ├── debug.c ├── ds-marker.c ├── dvdisaster.c ├── dvdisaster.h ├── ecc-rs01.c ├── ecc-rs02.c ├── ecc-rs03.c ├── endian.c ├── galois-inlines.h ├── galois.c ├── help-dialogs.c ├── heuristic-lec.c ├── image.c ├── l-ec.c ├── large-io.c ├── logfile.c ├── main-window.c ├── maintenance.c ├── md5.c ├── md5.h ├── medium-info.c ├── memtrack.c ├── menubar.c ├── method-link.c ├── method.c ├── misc-gui.c ├── misc.c ├── preferences.c ├── print-sense.c ├── random.c ├── raw-editor.c ├── raw-sector-cache.c ├── read-adaptive-window.c ├── read-adaptive.c ├── read-linear-window.c ├── read-linear.c ├── read-linear.h ├── recover-raw.c ├── rs-decoder.c ├── rs-encoder-altivec.c ├── rs-encoder-sse2.c ├── rs-encoder.c ├── rs01-common.c ├── rs01-create.c ├── rs01-fix.c ├── rs01-includes.h ├── rs01-verify.c ├── rs01-window.c ├── rs02-common.c ├── rs02-create.c ├── rs02-fix.c ├── rs02-includes.h ├── rs02-recognize.c ├── rs02-verify.c ├── rs02-window.c ├── rs03-common.c ├── rs03-create.c ├── rs03-fix.c ├── rs03-includes.h ├── rs03-preferences.c ├── rs03-recognize.c ├── rs03-verify.c ├── rs03-window.c ├── scsi-darwin.c ├── scsi-freebsd.c ├── scsi-layer.c ├── scsi-layer.h ├── scsi-linux.c ├── scsi-netbsd.c ├── scsi-simulated.c ├── scsi-unknown.c ├── scsi-win32.c ├── show-manual.c ├── smart-lec.c ├── spiral.c ├── udf.c ├── udf.h ├── welcome-window.c └── winres.rc /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/make-dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/.github/workflows/make-dist.sh -------------------------------------------------------------------------------- /.github/workflows/make-mac-app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/.github/workflows/make-mac-app.sh -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/CHANGELOG -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/COPYING -------------------------------------------------------------------------------- /CREDITS.de: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/CREDITS.de -------------------------------------------------------------------------------- /CREDITS.en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/CREDITS.en -------------------------------------------------------------------------------- /GNUmakefile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/GNUmakefile.template -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/TODO -------------------------------------------------------------------------------- /TRANSLATION.HOWTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/TRANSLATION.HOWTO -------------------------------------------------------------------------------- /compat/cpuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/compat/cpuid.h -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/configure -------------------------------------------------------------------------------- /contrib/AppRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/contrib/AppRun.sh -------------------------------------------------------------------------------- /contrib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/contrib/README -------------------------------------------------------------------------------- /contrib/dvdisaster.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/contrib/dvdisaster.desktop -------------------------------------------------------------------------------- /contrib/dvdisaster.spec.skel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/contrib/dvdisaster.spec.skel -------------------------------------------------------------------------------- /contrib/dvdisaster16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/contrib/dvdisaster16.png -------------------------------------------------------------------------------- /contrib/dvdisaster16.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/contrib/dvdisaster16.xpm -------------------------------------------------------------------------------- /contrib/dvdisaster24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/contrib/dvdisaster24.png -------------------------------------------------------------------------------- /contrib/dvdisaster24.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/contrib/dvdisaster24.xpm -------------------------------------------------------------------------------- /contrib/dvdisaster32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/contrib/dvdisaster32.png -------------------------------------------------------------------------------- /contrib/dvdisaster32.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/contrib/dvdisaster32.xpm -------------------------------------------------------------------------------- /contrib/dvdisaster48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/contrib/dvdisaster48.png -------------------------------------------------------------------------------- /contrib/dvdisaster48.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/contrib/dvdisaster48.xpm -------------------------------------------------------------------------------- /contrib/dvdisaster64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/contrib/dvdisaster64.png -------------------------------------------------------------------------------- /contrib/dvdisaster64.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/contrib/dvdisaster64.xpm -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/dvdisaster-doc.doc-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/debian/dvdisaster-doc.doc-base -------------------------------------------------------------------------------- /debian/dvdisaster-doc.docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/debian/dvdisaster-doc.docs -------------------------------------------------------------------------------- /debian/dvdisaster.docs: -------------------------------------------------------------------------------- 1 | CREDITS.* 2 | README.MODIFYING 3 | TODO 4 | TRANSLATION.HOWTO 5 | -------------------------------------------------------------------------------- /debian/dvdisaster.examples: -------------------------------------------------------------------------------- 1 | debian/examples/* 2 | -------------------------------------------------------------------------------- /debian/dvdisaster.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/debian/dvdisaster.install -------------------------------------------------------------------------------- /debian/dvdisaster.lintian-overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/debian/dvdisaster.lintian-overrides -------------------------------------------------------------------------------- /debian/examples/gmkrs02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/debian/examples/gmkrs02 -------------------------------------------------------------------------------- /debian/gbp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/debian/gbp.conf -------------------------------------------------------------------------------- /debian/patches/02-encryption.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/debian/patches/02-encryption.patch -------------------------------------------------------------------------------- /debian/patches/03-dvdrom.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/debian/patches/03-dvdrom.patch -------------------------------------------------------------------------------- /debian/patches/05-help-dialog.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/debian/patches/05-help-dialog.patch -------------------------------------------------------------------------------- /debian/patches/08-fix-gnu-make-detection.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/debian/patches/08-fix-gnu-make-detection.patch -------------------------------------------------------------------------------- /debian/patches/11-no-cruft.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/debian/patches/11-no-cruft.patch -------------------------------------------------------------------------------- /debian/patches/12-fix-spelling-of-up-to.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/debian/patches/12-fix-spelling-of-up-to.patch -------------------------------------------------------------------------------- /debian/patches/14-make-builds-reproducible.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/debian/patches/14-make-builds-reproducible.patch -------------------------------------------------------------------------------- /debian/patches/15-show-new-pkg-tracker.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/debian/patches/15-show-new-pkg-tracker.patch -------------------------------------------------------------------------------- /debian/patches/19-show-text-files-with-abs-path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/debian/patches/19-show-text-files-with-abs-path.patch -------------------------------------------------------------------------------- /debian/patches/22-fix-hurd-i386-ftbfs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/debian/patches/22-fix-hurd-i386-ftbfs.patch -------------------------------------------------------------------------------- /debian/patches/23-add-bdrom-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/debian/patches/23-add-bdrom-support.patch -------------------------------------------------------------------------------- /debian/patches/24-show-gpl3-license.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/debian/patches/24-show-gpl3-license.patch -------------------------------------------------------------------------------- /debian/patches/25-fix-man-pages.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/debian/patches/25-fix-man-pages.patch -------------------------------------------------------------------------------- /debian/patches/26-fix-display-of-manual.pdf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/debian/patches/26-fix-display-of-manual.pdf.patch -------------------------------------------------------------------------------- /debian/patches/27-allow-opening-in-browser-again.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/debian/patches/27-allow-opening-in-browser-again.patch -------------------------------------------------------------------------------- /debian/patches/28-pdftex-reproducibility.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/debian/patches/28-pdftex-reproducibility.patch -------------------------------------------------------------------------------- /debian/patches/29-fix-more-typos.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/debian/patches/29-fix-more-typos.patch -------------------------------------------------------------------------------- /debian/patches/30-hurd-kfreebsd-ftbfs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/debian/patches/30-hurd-kfreebsd-ftbfs.patch -------------------------------------------------------------------------------- /debian/patches/32-display-compilation-commands.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/debian/patches/32-display-compilation-commands.patch -------------------------------------------------------------------------------- /debian/patches/33-honour-LDFLAGS.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/debian/patches/33-honour-LDFLAGS.patch -------------------------------------------------------------------------------- /debian/patches/34-gcc8-format-security.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/debian/patches/34-gcc8-format-security.patch -------------------------------------------------------------------------------- /debian/patches/35-archived-homepage.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/debian/patches/35-archived-homepage.patch -------------------------------------------------------------------------------- /debian/patches/36-fix-parallelism.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/debian/patches/36-fix-parallelism.patch -------------------------------------------------------------------------------- /debian/patches/37-suggest-dvdisaster-doc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/debian/patches/37-suggest-dvdisaster-doc.patch -------------------------------------------------------------------------------- /debian/patches/series: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/debian/patches/series -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /debian/source/lintian-overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/debian/source/lintian-overrides -------------------------------------------------------------------------------- /debian/source/options: -------------------------------------------------------------------------------- 1 | no-unapply-patches 2 | -------------------------------------------------------------------------------- /debian/tests/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/debian/tests/control -------------------------------------------------------------------------------- /debian/tests/unknown-system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/debian/tests/unknown-system -------------------------------------------------------------------------------- /debian/upstream/metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/debian/upstream/metadata -------------------------------------------------------------------------------- /debian/upstream/signing-key.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/debian/upstream/signing-key.asc -------------------------------------------------------------------------------- /debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/debian/watch -------------------------------------------------------------------------------- /documentation/codec-specs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/codec-specs/Makefile -------------------------------------------------------------------------------- /documentation/codec-specs/changelog.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/codec-specs/changelog.tex -------------------------------------------------------------------------------- /documentation/codec-specs/codecs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/codec-specs/codecs.pdf -------------------------------------------------------------------------------- /documentation/codec-specs/codecs.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/codec-specs/codecs.tex -------------------------------------------------------------------------------- /documentation/codec-specs/crc-block.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/codec-specs/crc-block.tex -------------------------------------------------------------------------------- /documentation/codec-specs/ecc-header.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/codec-specs/ecc-header.tex -------------------------------------------------------------------------------- /documentation/codec-specs/layer.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/codec-specs/layer.eps -------------------------------------------------------------------------------- /documentation/codec-specs/layer.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/codec-specs/layer.fig -------------------------------------------------------------------------------- /documentation/codec-specs/rs-params.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/codec-specs/rs-params.tex -------------------------------------------------------------------------------- /documentation/codec-specs/rs01-layout.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/codec-specs/rs01-layout.eps -------------------------------------------------------------------------------- /documentation/codec-specs/rs01-layout.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/codec-specs/rs01-layout.fig -------------------------------------------------------------------------------- /documentation/codec-specs/rs01.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/codec-specs/rs01.tex -------------------------------------------------------------------------------- /documentation/codec-specs/rs02-layout.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/codec-specs/rs02-layout.eps -------------------------------------------------------------------------------- /documentation/codec-specs/rs02-layout.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/codec-specs/rs02-layout.fig -------------------------------------------------------------------------------- /documentation/codec-specs/rs02.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/codec-specs/rs02.tex -------------------------------------------------------------------------------- /documentation/codec-specs/rs03.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/codec-specs/rs03.tex -------------------------------------------------------------------------------- /documentation/codec-specs/spiral-rs01.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/codec-specs/spiral-rs01.eps -------------------------------------------------------------------------------- /documentation/codec-specs/spiral-rs01.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/codec-specs/spiral-rs01.fig -------------------------------------------------------------------------------- /documentation/codec-specs/spiral-rs02.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/codec-specs/spiral-rs02.eps -------------------------------------------------------------------------------- /documentation/codec-specs/spiral-rs02.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/codec-specs/spiral-rs02.fig -------------------------------------------------------------------------------- /documentation/codec-specs/spiral-rs03.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/codec-specs/spiral-rs03.eps -------------------------------------------------------------------------------- /documentation/codec-specs/spiral-rs03.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/codec-specs/spiral-rs03.fig -------------------------------------------------------------------------------- /documentation/codec-specs/title.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/codec-specs/title.eps -------------------------------------------------------------------------------- /documentation/codec-specs/title.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/codec-specs/title.fig -------------------------------------------------------------------------------- /documentation/codecs.pdf: -------------------------------------------------------------------------------- 1 | codec-specs/codecs.pdf -------------------------------------------------------------------------------- /documentation/dvdisaster.de.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/dvdisaster.de.1 -------------------------------------------------------------------------------- /documentation/dvdisaster.en.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/dvdisaster.en.1 -------------------------------------------------------------------------------- /documentation/install.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/install.template -------------------------------------------------------------------------------- /documentation/manual.pdf: -------------------------------------------------------------------------------- 1 | user-manual/manual.pdf -------------------------------------------------------------------------------- /documentation/user-manual/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/Makefile -------------------------------------------------------------------------------- /documentation/user-manual/background.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/background.tex -------------------------------------------------------------------------------- /documentation/user-manual/defect-reporting.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/defect-reporting.tex -------------------------------------------------------------------------------- /documentation/user-manual/download.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/download.tex -------------------------------------------------------------------------------- /documentation/user-manual/figures/metadata1.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/figures/metadata1.dia -------------------------------------------------------------------------------- /documentation/user-manual/figures/metadata1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/figures/metadata1.pdf -------------------------------------------------------------------------------- /documentation/user-manual/figures/metadata2.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/figures/metadata2.dia -------------------------------------------------------------------------------- /documentation/user-manual/figures/metadata2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/figures/metadata2.pdf -------------------------------------------------------------------------------- /documentation/user-manual/figures/metadata3.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/figures/metadata3.dia -------------------------------------------------------------------------------- /documentation/user-manual/figures/metadata3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/figures/metadata3.pdf -------------------------------------------------------------------------------- /documentation/user-manual/figures/pin-ink.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/figures/pin-ink.dia -------------------------------------------------------------------------------- /documentation/user-manual/figures/pin-ink.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/figures/pin-ink.pdf -------------------------------------------------------------------------------- /documentation/user-manual/figures/pin-sum.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/figures/pin-sum.dia -------------------------------------------------------------------------------- /documentation/user-manual/figures/pin-sum.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/figures/pin-sum.pdf -------------------------------------------------------------------------------- /documentation/user-manual/figures/pin.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/figures/pin.dia -------------------------------------------------------------------------------- /documentation/user-manual/figures/pin.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/figures/pin.pdf -------------------------------------------------------------------------------- /documentation/user-manual/figures/puzzle.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/figures/puzzle.fig -------------------------------------------------------------------------------- /documentation/user-manual/figures/puzzle.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/figures/puzzle.pdf -------------------------------------------------------------------------------- /documentation/user-manual/howtos.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/howtos.tex -------------------------------------------------------------------------------- /documentation/user-manual/icons/augmented-cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/icons/augmented-cd.png -------------------------------------------------------------------------------- /documentation/user-manual/icons/backup1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/icons/backup1.png -------------------------------------------------------------------------------- /documentation/user-manual/icons/backup2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/icons/backup2.png -------------------------------------------------------------------------------- /documentation/user-manual/icons/bad-cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/icons/bad-cd.png -------------------------------------------------------------------------------- /documentation/user-manual/icons/bad-cd1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/icons/bad-cd1.png -------------------------------------------------------------------------------- /documentation/user-manual/icons/bad-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/icons/bad-image.png -------------------------------------------------------------------------------- /documentation/user-manual/icons/create-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/icons/create-icon.png -------------------------------------------------------------------------------- /documentation/user-manual/icons/down-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/icons/down-arrow.png -------------------------------------------------------------------------------- /documentation/user-manual/icons/down-fork-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/icons/down-fork-arrow.png -------------------------------------------------------------------------------- /documentation/user-manual/icons/ecc-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/icons/ecc-example.png -------------------------------------------------------------------------------- /documentation/user-manual/icons/ecc-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/icons/ecc-file.png -------------------------------------------------------------------------------- /documentation/user-manual/icons/filemanager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/icons/filemanager.png -------------------------------------------------------------------------------- /documentation/user-manual/icons/fix-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/icons/fix-icon.png -------------------------------------------------------------------------------- /documentation/user-manual/icons/good-cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/icons/good-cd.png -------------------------------------------------------------------------------- /documentation/user-manual/icons/good-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/icons/good-image.png -------------------------------------------------------------------------------- /documentation/user-manual/icons/good-image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/icons/good-image2.png -------------------------------------------------------------------------------- /documentation/user-manual/icons/gplv3-127x51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/icons/gplv3-127x51.png -------------------------------------------------------------------------------- /documentation/user-manual/icons/join-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/icons/join-arrow.png -------------------------------------------------------------------------------- /documentation/user-manual/icons/ldiag-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/icons/ldiag-arrow.png -------------------------------------------------------------------------------- /documentation/user-manual/icons/log-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/icons/log-icon.png -------------------------------------------------------------------------------- /documentation/user-manual/icons/old-cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/icons/old-cd.png -------------------------------------------------------------------------------- /documentation/user-manual/icons/old-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/icons/old-image.png -------------------------------------------------------------------------------- /documentation/user-manual/icons/prefs-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/icons/prefs-icon.png -------------------------------------------------------------------------------- /documentation/user-manual/icons/rdiag-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/icons/rdiag-arrow.png -------------------------------------------------------------------------------- /documentation/user-manual/icons/read-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/icons/read-icon.png -------------------------------------------------------------------------------- /documentation/user-manual/icons/right-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/icons/right-arrow.png -------------------------------------------------------------------------------- /documentation/user-manual/icons/scan-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/icons/scan-icon.png -------------------------------------------------------------------------------- /documentation/user-manual/icons/select-drive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/icons/select-drive.png -------------------------------------------------------------------------------- /documentation/user-manual/icons/select-ecc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/icons/select-ecc.png -------------------------------------------------------------------------------- /documentation/user-manual/icons/select-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/icons/select-image.png -------------------------------------------------------------------------------- /documentation/user-manual/icons/slot-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/icons/slot-in.png -------------------------------------------------------------------------------- /documentation/user-manual/icons/stop-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/icons/stop-icon.png -------------------------------------------------------------------------------- /documentation/user-manual/icons/verify-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/icons/verify-icon.png -------------------------------------------------------------------------------- /documentation/user-manual/local.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/local.tex -------------------------------------------------------------------------------- /documentation/user-manual/manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/manual.pdf -------------------------------------------------------------------------------- /documentation/user-manual/manual.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/manual.tex -------------------------------------------------------------------------------- /documentation/user-manual/overview.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/overview.tex -------------------------------------------------------------------------------- /documentation/user-manual/preface.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/preface.tex -------------------------------------------------------------------------------- /documentation/user-manual/qa.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/qa.tex -------------------------------------------------------------------------------- /documentation/user-manual/screenshots/crc-cd-scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/screenshots/crc-cd-scan.png -------------------------------------------------------------------------------- /documentation/user-manual/screenshots/fix-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/screenshots/fix-image.png -------------------------------------------------------------------------------- /documentation/user-manual/screenshots/fix-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/screenshots/fix-success.png -------------------------------------------------------------------------------- /documentation/user-manual/screenshots/good-cd-scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/screenshots/good-cd-scan.png -------------------------------------------------------------------------------- /documentation/user-manual/screenshots/info-padding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/screenshots/info-padding.png -------------------------------------------------------------------------------- /documentation/user-manual/screenshots/make-ecc3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/screenshots/make-ecc3.png -------------------------------------------------------------------------------- /documentation/user-manual/screenshots/make-iso1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/screenshots/make-iso1.png -------------------------------------------------------------------------------- /documentation/user-manual/screenshots/make-iso2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/screenshots/make-iso2.png -------------------------------------------------------------------------------- /documentation/user-manual/screenshots/make-iso3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/screenshots/make-iso3.png -------------------------------------------------------------------------------- /documentation/user-manual/screenshots/make-iso4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/screenshots/make-iso4.png -------------------------------------------------------------------------------- /documentation/user-manual/screenshots/make-iso5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/screenshots/make-iso5.png -------------------------------------------------------------------------------- /documentation/user-manual/screenshots/make-iso6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/screenshots/make-iso6.png -------------------------------------------------------------------------------- /documentation/user-manual/screenshots/verify-fail1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/screenshots/verify-fail1.png -------------------------------------------------------------------------------- /documentation/user-manual/screenshots/verify-fail2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/screenshots/verify-fail2.png -------------------------------------------------------------------------------- /documentation/user-manual/screenshots/watch-create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/screenshots/watch-create.png -------------------------------------------------------------------------------- /documentation/user-manual/screenshots/weak-cd-scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/screenshots/weak-cd-scan.png -------------------------------------------------------------------------------- /documentation/user-manual/screenshots/write-iso1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/screenshots/write-iso1.png -------------------------------------------------------------------------------- /documentation/user-manual/screenshots/write-iso2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/screenshots/write-iso2.png -------------------------------------------------------------------------------- /documentation/user-manual/screenshots/write-iso3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/screenshots/write-iso3.png -------------------------------------------------------------------------------- /documentation/user-manual/screenshots/write-iso4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/documentation/user-manual/screenshots/write-iso4.png -------------------------------------------------------------------------------- /icons/cd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/icons/cd.svg -------------------------------------------------------------------------------- /icons/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/icons/close.svg -------------------------------------------------------------------------------- /icons/create.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/icons/create.svg -------------------------------------------------------------------------------- /icons/fix-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/icons/fix-symbolic.svg -------------------------------------------------------------------------------- /icons/icons.gresource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/icons/icons.gresource.xml -------------------------------------------------------------------------------- /icons/log.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/icons/log.svg -------------------------------------------------------------------------------- /icons/manual.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/icons/manual.svg -------------------------------------------------------------------------------- /icons/open-ecc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/icons/open-ecc.svg -------------------------------------------------------------------------------- /icons/open-img.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/icons/open-img.svg -------------------------------------------------------------------------------- /icons/preferences.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/icons/preferences.svg -------------------------------------------------------------------------------- /icons/quit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/icons/quit.svg -------------------------------------------------------------------------------- /icons/read-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/icons/read-symbolic.svg -------------------------------------------------------------------------------- /icons/scan-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/icons/scan-symbolic.svg -------------------------------------------------------------------------------- /icons/stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/icons/stop.svg -------------------------------------------------------------------------------- /icons/strip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/icons/strip.svg -------------------------------------------------------------------------------- /icons/verify-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/icons/verify-symbolic.svg -------------------------------------------------------------------------------- /icons/win.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/icons/win.ico -------------------------------------------------------------------------------- /locale/create-makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/locale/create-makefile -------------------------------------------------------------------------------- /locale/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/locale/cs.po -------------------------------------------------------------------------------- /locale/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/locale/de.po -------------------------------------------------------------------------------- /locale/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/locale/it.po -------------------------------------------------------------------------------- /locale/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/locale/pt_BR.po -------------------------------------------------------------------------------- /locale/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/locale/ru.po -------------------------------------------------------------------------------- /locale/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/locale/sv.po -------------------------------------------------------------------------------- /macinst/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/macinst/Info.plist -------------------------------------------------------------------------------- /macinst/dvdisaster.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/macinst/dvdisaster.icns -------------------------------------------------------------------------------- /regtest/.dvdisaster-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/.dvdisaster-default -------------------------------------------------------------------------------- /regtest/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/README -------------------------------------------------------------------------------- /regtest/common.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/common.bash -------------------------------------------------------------------------------- /regtest/config-win.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/config-win.txt -------------------------------------------------------------------------------- /regtest/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/config.txt -------------------------------------------------------------------------------- /regtest/database/.RS02_adaptive_longer.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/.RS02_adaptive_longer.swp -------------------------------------------------------------------------------- /regtest/database/RS01_adapive_wrong_fp_with_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_adapive_wrong_fp_with_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_adaptive_crc_errors_with_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_adaptive_crc_errors_with_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_adaptive_defective_large_skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_adaptive_defective_large_skip -------------------------------------------------------------------------------- /regtest/database/RS01_adaptive_defective_no_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_adaptive_defective_no_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_adaptive_good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_adaptive_good -------------------------------------------------------------------------------- /regtest/database/RS01_adaptive_longer_with_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_adaptive_longer_with_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_adaptive_medium_with_dsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_adaptive_medium_with_dsm -------------------------------------------------------------------------------- /regtest/database/RS01_adaptive_new_with_range_no_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_adaptive_new_with_range_no_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_adaptive_no_device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_adaptive_no_device -------------------------------------------------------------------------------- /regtest/database/RS01_adaptive_no_device.darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_adaptive_no_device.darwin -------------------------------------------------------------------------------- /regtest/database/RS01_adaptive_no_device.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_adaptive_no_device.win -------------------------------------------------------------------------------- /regtest/database/RS01_adaptive_no_device_access: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_adaptive_no_device_access -------------------------------------------------------------------------------- /regtest/database/RS01_adaptive_no_device_access.darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_adaptive_no_device_access.darwin -------------------------------------------------------------------------------- /regtest/database/RS01_adaptive_no_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_adaptive_no_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_adaptive_no_tao_tail_with_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_adaptive_no_tao_tail_with_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_adaptive_shorter_with_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_adaptive_shorter_with_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_adaptive_tao_tail_with_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_adaptive_tao_tail_with_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_adaptive_truncated_no_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_adaptive_truncated_no_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_adaptive_with_double_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_adaptive_with_double_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_adaptive_with_gap_no_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_adaptive_with_gap_no_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_adaptive_with_gap_no_ecc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_adaptive_with_gap_no_ecc2 -------------------------------------------------------------------------------- /regtest/database/RS01_adaptive_with_gap_no_ecc3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_adaptive_with_gap_no_ecc3 -------------------------------------------------------------------------------- /regtest/database/RS01_adaptive_with_hardware_failure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_adaptive_with_hardware_failure -------------------------------------------------------------------------------- /regtest/database/RS01_adaptive_with_incompatible_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_adaptive_with_incompatible_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_crc_errors_with_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_crc_errors_with_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_crc_in_fingerprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_crc_in_fingerprint -------------------------------------------------------------------------------- /regtest/database/RS01_defective_image_no_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_defective_image_no_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_defective_with_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_defective_with_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_ecc_create: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_ecc_create -------------------------------------------------------------------------------- /regtest/database/RS01_ecc_create_after_partial_read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_ecc_create_after_partial_read -------------------------------------------------------------------------------- /regtest/database/RS01_ecc_create_after_read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_ecc_create_after_read -------------------------------------------------------------------------------- /regtest/database/RS01_ecc_create_plus56: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_ecc_create_plus56 -------------------------------------------------------------------------------- /regtest/database/RS01_ecc_header_crc_error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_ecc_header_crc_error -------------------------------------------------------------------------------- /regtest/database/RS01_ecc_missing_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_ecc_missing_image -------------------------------------------------------------------------------- /regtest/database/RS01_ecc_missing_sectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_ecc_missing_sectors -------------------------------------------------------------------------------- /regtest/database/RS01_ecc_no_read_perm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_ecc_no_read_perm -------------------------------------------------------------------------------- /regtest/database/RS01_ecc_no_write_perm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_ecc_no_write_perm -------------------------------------------------------------------------------- /regtest/database/RS01_ecc_plus56_bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_ecc_plus56_bytes -------------------------------------------------------------------------------- /regtest/database/RS01_ecc_recreate_after_read_rs01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_ecc_recreate_after_read_rs01 -------------------------------------------------------------------------------- /regtest/database/RS01_ecc_recreate_after_read_rs02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_ecc_recreate_after_read_rs02 -------------------------------------------------------------------------------- /regtest/database/RS01_ecc_recreate_after_read_rs03f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_ecc_recreate_after_read_rs03f -------------------------------------------------------------------------------- /regtest/database/RS01_ecc_recreate_after_read_rs03i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_ecc_recreate_after_read_rs03i -------------------------------------------------------------------------------- /regtest/database/RS01_fix_additional_sector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_fix_additional_sector -------------------------------------------------------------------------------- /regtest/database/RS01_fix_crc_errors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_fix_crc_errors -------------------------------------------------------------------------------- /regtest/database/RS01_fix_good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_fix_good -------------------------------------------------------------------------------- /regtest/database/RS01_fix_missing_sectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_fix_missing_sectors -------------------------------------------------------------------------------- /regtest/database/RS01_fix_no_read_perm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_fix_no_read_perm -------------------------------------------------------------------------------- /regtest/database/RS01_fix_no_read_perm_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_fix_no_read_perm_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_fix_no_write_perm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_fix_no_write_perm -------------------------------------------------------------------------------- /regtest/database/RS01_fix_plus17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_fix_plus17 -------------------------------------------------------------------------------- /regtest/database/RS01_fix_plus17_truncate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_fix_plus17_truncate -------------------------------------------------------------------------------- /regtest/database/RS01_fix_plus56: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_fix_plus56 -------------------------------------------------------------------------------- /regtest/database/RS01_fix_plus56_bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_fix_plus56_bytes -------------------------------------------------------------------------------- /regtest/database/RS01_fix_plus56_little_truncated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_fix_plus56_little_truncated -------------------------------------------------------------------------------- /regtest/database/RS01_fix_plus56_plus17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_fix_plus56_plus17 -------------------------------------------------------------------------------- /regtest/database/RS01_fix_plus56_plus17500: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_fix_plus56_plus17500 -------------------------------------------------------------------------------- /regtest/database/RS01_fix_plus56_plus1s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_fix_plus56_plus1s -------------------------------------------------------------------------------- /regtest/database/RS01_fix_plus56_plus2s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_fix_plus56_plus2s -------------------------------------------------------------------------------- /regtest/database/RS01_fix_plus56_truncated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_fix_plus56_truncated -------------------------------------------------------------------------------- /regtest/database/RS01_fix_truncated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_fix_truncated -------------------------------------------------------------------------------- /regtest/database/RS01_good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_good -------------------------------------------------------------------------------- /regtest/database/RS01_good_quick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_good_quick -------------------------------------------------------------------------------- /regtest/database/RS01_image_few_bytes_longer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_image_few_bytes_longer -------------------------------------------------------------------------------- /regtest/database/RS01_image_few_bytes_shorter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_image_few_bytes_shorter -------------------------------------------------------------------------------- /regtest/database/RS01_image_plus56_bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_image_plus56_bytes -------------------------------------------------------------------------------- /regtest/database/RS01_image_plus56b_normal_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_image_plus56b_normal_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_missing_ecc_header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_missing_ecc_header -------------------------------------------------------------------------------- /regtest/database/RS01_missing_fingerprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_missing_fingerprint -------------------------------------------------------------------------------- /regtest/database/RS01_missing_sectors_with_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_missing_sectors_with_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_no_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_no_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_no_files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_no_files -------------------------------------------------------------------------------- /regtest/database/RS01_no_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_no_image -------------------------------------------------------------------------------- /regtest/database/RS01_normal_image_ecc_plus56b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_normal_image_ecc_plus56b -------------------------------------------------------------------------------- /regtest/database/RS01_plus1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_plus1 -------------------------------------------------------------------------------- /regtest/database/RS01_plus17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_plus17 -------------------------------------------------------------------------------- /regtest/database/RS01_plus56_bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_plus56_bytes -------------------------------------------------------------------------------- /regtest/database/RS01_read_crc_errors_with_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_read_crc_errors_with_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_read_defective_large_skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_read_defective_large_skip -------------------------------------------------------------------------------- /regtest/database/RS01_read_defective_no_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_read_defective_no_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_read_defective_no_ecc_again: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_read_defective_no_ecc_again -------------------------------------------------------------------------------- /regtest/database/RS01_read_longer_with_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_read_longer_with_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_read_medium_with_dsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_read_medium_with_dsm -------------------------------------------------------------------------------- /regtest/database/RS01_read_medium_with_dsm_in_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_read_medium_with_dsm_in_image -------------------------------------------------------------------------------- /regtest/database/RS01_read_medium_with_dsm_in_image2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_read_medium_with_dsm_in_image2 -------------------------------------------------------------------------------- /regtest/database/RS01_read_medium_with_dsm_verbose: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_read_medium_with_dsm_verbose -------------------------------------------------------------------------------- /regtest/database/RS01_read_multipass_no_ecc_again: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_read_multipass_no_ecc_again -------------------------------------------------------------------------------- /regtest/database/RS01_read_multipass_partial_success: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_read_multipass_partial_success -------------------------------------------------------------------------------- /regtest/database/RS01_read_new_with_range_no_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_read_new_with_range_no_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_read_no_device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_read_no_device -------------------------------------------------------------------------------- /regtest/database/RS01_read_no_device.darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_read_no_device.darwin -------------------------------------------------------------------------------- /regtest/database/RS01_read_no_device.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_read_no_device.win -------------------------------------------------------------------------------- /regtest/database/RS01_read_no_device_access: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_read_no_device_access -------------------------------------------------------------------------------- /regtest/database/RS01_read_no_device_access.darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_read_no_device_access.darwin -------------------------------------------------------------------------------- /regtest/database/RS01_read_no_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_read_no_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_read_no_ecc_good_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_read_no_ecc_good_file -------------------------------------------------------------------------------- /regtest/database/RS01_read_no_tao_tail_with_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_read_no_tao_tail_with_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_read_shorter_with_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_read_shorter_with_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_read_tao_tail_with_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_read_tao_tail_with_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_read_truncated_no_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_read_truncated_no_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_read_truncated_no_ecc_again: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_read_truncated_no_ecc_again -------------------------------------------------------------------------------- /regtest/database/RS01_read_two_missing_secs_no_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_read_two_missing_secs_no_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_read_with_double_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_read_with_double_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_read_with_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_read_with_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_read_with_ecc_good_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_read_with_ecc_good_file -------------------------------------------------------------------------------- /regtest/database/RS01_read_with_gap_no_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_read_with_gap_no_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_read_with_hardware_failure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_read_with_hardware_failure -------------------------------------------------------------------------------- /regtest/database/RS01_read_with_incompatible_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_read_with_incompatible_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_read_with_non_existing_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_read_with_non_existing_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_read_wrong_fp_with_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_read_wrong_fp_with_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_scan_crc_errors_with_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_scan_crc_errors_with_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_scan_defective_large_skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_scan_defective_large_skip -------------------------------------------------------------------------------- /regtest/database/RS01_scan_defective_no_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_scan_defective_no_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_scan_defective_no_ecc_again: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_scan_defective_no_ecc_again -------------------------------------------------------------------------------- /regtest/database/RS01_scan_longer_with_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_scan_longer_with_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_scan_medium_with_dsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_scan_medium_with_dsm -------------------------------------------------------------------------------- /regtest/database/RS01_scan_new_with_range_no_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_scan_new_with_range_no_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_scan_no_device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_scan_no_device -------------------------------------------------------------------------------- /regtest/database/RS01_scan_no_device.darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_scan_no_device.darwin -------------------------------------------------------------------------------- /regtest/database/RS01_scan_no_device.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_scan_no_device.win -------------------------------------------------------------------------------- /regtest/database/RS01_scan_no_device_access: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_scan_no_device_access -------------------------------------------------------------------------------- /regtest/database/RS01_scan_no_device_access.darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_scan_no_device_access.darwin -------------------------------------------------------------------------------- /regtest/database/RS01_scan_no_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_scan_no_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_scan_no_tao_tail_with_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_scan_no_tao_tail_with_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_scan_shorter_with_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_scan_shorter_with_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_scan_tao_tail_with_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_scan_tao_tail_with_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_scan_with_double_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_scan_with_double_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_scan_with_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_scan_with_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_scan_with_hardware_failure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_scan_with_hardware_failure -------------------------------------------------------------------------------- /regtest/database/RS01_scan_with_incompatible_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_scan_with_incompatible_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_scan_with_non_existing_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_scan_with_non_existing_ecc -------------------------------------------------------------------------------- /regtest/database/RS01_truncated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_truncated -------------------------------------------------------------------------------- /regtest/database/RS01_truncated_by_bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_truncated_by_bytes -------------------------------------------------------------------------------- /regtest/database/RS01_uncorrectable_dsm_in_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_uncorrectable_dsm_in_image -------------------------------------------------------------------------------- /regtest/database/RS01_uncorrectable_dsm_in_image2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS01_uncorrectable_dsm_in_image2 -------------------------------------------------------------------------------- /regtest/database/RS02_adaptive_bad_header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_adaptive_bad_header -------------------------------------------------------------------------------- /regtest/database/RS02_adaptive_bad_headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_adaptive_bad_headers -------------------------------------------------------------------------------- /regtest/database/RS02_adaptive_crc_bad_byte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_adaptive_crc_bad_byte -------------------------------------------------------------------------------- /regtest/database/RS02_adaptive_data_bad_byte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_adaptive_data_bad_byte -------------------------------------------------------------------------------- /regtest/database/RS02_adaptive_ecc_bad_byte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_adaptive_ecc_bad_byte -------------------------------------------------------------------------------- /regtest/database/RS02_adaptive_good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_adaptive_good -------------------------------------------------------------------------------- /regtest/database/RS02_adaptive_good_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_adaptive_good_file -------------------------------------------------------------------------------- /regtest/database/RS02_adaptive_good_verbose: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_adaptive_good_verbose -------------------------------------------------------------------------------- /regtest/database/RS02_adaptive_incompatible_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_adaptive_incompatible_ecc -------------------------------------------------------------------------------- /regtest/database/RS02_adaptive_longer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_adaptive_longer -------------------------------------------------------------------------------- /regtest/database/RS02_adaptive_missing_crc_sectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_adaptive_missing_crc_sectors -------------------------------------------------------------------------------- /regtest/database/RS02_adaptive_missing_data_sectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_adaptive_missing_data_sectors -------------------------------------------------------------------------------- /regtest/database/RS02_adaptive_missing_ecc_sectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_adaptive_missing_ecc_sectors -------------------------------------------------------------------------------- /regtest/database/RS02_adaptive_modulo_glitch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_adaptive_modulo_glitch -------------------------------------------------------------------------------- /regtest/database/RS02_adaptive_modulo_glitch2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_adaptive_modulo_glitch2 -------------------------------------------------------------------------------- /regtest/database/RS02_adaptive_modulo_glitch3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_adaptive_modulo_glitch3 -------------------------------------------------------------------------------- /regtest/database/RS02_adaptive_modulo_glitch4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_adaptive_modulo_glitch4 -------------------------------------------------------------------------------- /regtest/database/RS02_adaptive_no_tao_tail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_adaptive_no_tao_tail -------------------------------------------------------------------------------- /regtest/database/RS02_adaptive_shorter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_adaptive_shorter -------------------------------------------------------------------------------- /regtest/database/RS02_adaptive_tao_tail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_adaptive_tao_tail -------------------------------------------------------------------------------- /regtest/database/RS02_adaptive_with_rs01_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_adaptive_with_rs01_file -------------------------------------------------------------------------------- /regtest/database/RS02_adaptive_with_wrong_rs01_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_adaptive_with_wrong_rs01_file -------------------------------------------------------------------------------- /regtest/database/RS02_bad_header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_bad_header -------------------------------------------------------------------------------- /regtest/database/RS02_bad_headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_bad_headers -------------------------------------------------------------------------------- /regtest/database/RS02_bad_master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_bad_master -------------------------------------------------------------------------------- /regtest/database/RS02_crc_bad_byte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_crc_bad_byte -------------------------------------------------------------------------------- /regtest/database/RS02_data_bad_byte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_data_bad_byte -------------------------------------------------------------------------------- /regtest/database/RS02_ecc_bad_byte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_ecc_bad_byte -------------------------------------------------------------------------------- /regtest/database/RS02_ecc_create: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_ecc_create -------------------------------------------------------------------------------- /regtest/database/RS02_ecc_create_after_partial_read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_ecc_create_after_partial_read -------------------------------------------------------------------------------- /regtest/database/RS02_ecc_create_after_read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_ecc_create_after_read -------------------------------------------------------------------------------- /regtest/database/RS02_ecc_from_larger_rs02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_ecc_from_larger_rs02 -------------------------------------------------------------------------------- /regtest/database/RS02_ecc_from_rs02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_ecc_from_rs02 -------------------------------------------------------------------------------- /regtest/database/RS02_ecc_from_rs02_non_blocksize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_ecc_from_rs02_non_blocksize -------------------------------------------------------------------------------- /regtest/database/RS02_ecc_from_rs03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_ecc_from_rs03 -------------------------------------------------------------------------------- /regtest/database/RS02_ecc_from_rs03_non_blocksize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_ecc_from_rs03_non_blocksize -------------------------------------------------------------------------------- /regtest/database/RS02_ecc_missing_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_ecc_missing_image -------------------------------------------------------------------------------- /regtest/database/RS02_ecc_missing_sectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_ecc_missing_sectors -------------------------------------------------------------------------------- /regtest/database/RS02_ecc_no_read_perm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_ecc_no_read_perm -------------------------------------------------------------------------------- /regtest/database/RS02_ecc_no_write_perm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_ecc_no_write_perm -------------------------------------------------------------------------------- /regtest/database/RS02_ecc_non_blocksize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_ecc_non_blocksize -------------------------------------------------------------------------------- /regtest/database/RS02_ecc_recreate_after_read_rs01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_ecc_recreate_after_read_rs01 -------------------------------------------------------------------------------- /regtest/database/RS02_ecc_recreate_after_read_rs02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_ecc_recreate_after_read_rs02 -------------------------------------------------------------------------------- /regtest/database/RS02_ecc_recreate_after_read_rs03f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_ecc_recreate_after_read_rs03f -------------------------------------------------------------------------------- /regtest/database/RS02_ecc_recreate_after_read_rs03i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_ecc_recreate_after_read_rs03i -------------------------------------------------------------------------------- /regtest/database/RS02_fix_bad_header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_fix_bad_header -------------------------------------------------------------------------------- /regtest/database/RS02_fix_bad_headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_fix_bad_headers -------------------------------------------------------------------------------- /regtest/database/RS02_fix_bad_master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_fix_bad_master -------------------------------------------------------------------------------- /regtest/database/RS02_fix_correctable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_fix_correctable -------------------------------------------------------------------------------- /regtest/database/RS02_fix_crc_bad_byte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_fix_crc_bad_byte -------------------------------------------------------------------------------- /regtest/database/RS02_fix_data_bad_byte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_fix_data_bad_byte -------------------------------------------------------------------------------- /regtest/database/RS02_fix_ecc_bad_byte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_fix_ecc_bad_byte -------------------------------------------------------------------------------- /regtest/database/RS02_fix_good_0_offset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_fix_good_0_offset -------------------------------------------------------------------------------- /regtest/database/RS02_fix_good_150_offset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_fix_good_150_offset -------------------------------------------------------------------------------- /regtest/database/RS02_fix_good_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_fix_good_image -------------------------------------------------------------------------------- /regtest/database/RS02_fix_image_error_in_plus137: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_fix_image_error_in_plus137 -------------------------------------------------------------------------------- /regtest/database/RS02_fix_image_plus137: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_fix_image_plus137 -------------------------------------------------------------------------------- /regtest/database/RS02_fix_image_plus137_truncated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_fix_image_plus137_truncated -------------------------------------------------------------------------------- /regtest/database/RS02_fix_large_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_fix_large_file -------------------------------------------------------------------------------- /regtest/database/RS02_fix_missing_crc_sectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_fix_missing_crc_sectors -------------------------------------------------------------------------------- /regtest/database/RS02_fix_missing_data_sectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_fix_missing_data_sectors -------------------------------------------------------------------------------- /regtest/database/RS02_fix_missing_ecc_sectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_fix_missing_ecc_sectors -------------------------------------------------------------------------------- /regtest/database/RS02_fix_missing_headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_fix_missing_headers -------------------------------------------------------------------------------- /regtest/database/RS02_fix_no_read_perm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_fix_no_read_perm -------------------------------------------------------------------------------- /regtest/database/RS02_fix_no_write_perm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_fix_no_write_perm -------------------------------------------------------------------------------- /regtest/database/RS02_fix_trailing_bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_fix_trailing_bytes -------------------------------------------------------------------------------- /regtest/database/RS02_fix_trailing_garbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_fix_trailing_garbage -------------------------------------------------------------------------------- /regtest/database/RS02_fix_trailing_garbage2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_fix_trailing_garbage2 -------------------------------------------------------------------------------- /regtest/database/RS02_fix_trailing_tao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_fix_trailing_tao -------------------------------------------------------------------------------- /regtest/database/RS02_fix_truncated_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_fix_truncated_image -------------------------------------------------------------------------------- /regtest/database/RS02_fix_with_rs01_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_fix_with_rs01_file -------------------------------------------------------------------------------- /regtest/database/RS02_fix_with_rs03_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_fix_with_rs03_file -------------------------------------------------------------------------------- /regtest/database/RS02_good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_good -------------------------------------------------------------------------------- /regtest/database/RS02_good_0_offset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_good_0_offset -------------------------------------------------------------------------------- /regtest/database/RS02_good_150_offset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_good_150_offset -------------------------------------------------------------------------------- /regtest/database/RS02_good_quick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_good_quick -------------------------------------------------------------------------------- /regtest/database/RS02_missing_crc_sectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_missing_crc_sectors -------------------------------------------------------------------------------- /regtest/database/RS02_missing_data_sectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_missing_data_sectors -------------------------------------------------------------------------------- /regtest/database/RS02_missing_ecc_sectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_missing_ecc_sectors -------------------------------------------------------------------------------- /regtest/database/RS02_missing_headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_missing_headers -------------------------------------------------------------------------------- /regtest/database/RS02_modulo_glitch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_modulo_glitch -------------------------------------------------------------------------------- /regtest/database/RS02_modulo_glitch2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_modulo_glitch2 -------------------------------------------------------------------------------- /regtest/database/RS02_modulo_glitch3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_modulo_glitch3 -------------------------------------------------------------------------------- /regtest/database/RS02_modulo_glitch4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_modulo_glitch4 -------------------------------------------------------------------------------- /regtest/database/RS02_no_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_no_image -------------------------------------------------------------------------------- /regtest/database/RS02_plus1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_plus1 -------------------------------------------------------------------------------- /regtest/database/RS02_plus17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_plus17 -------------------------------------------------------------------------------- /regtest/database/RS02_read_bad_header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_read_bad_header -------------------------------------------------------------------------------- /regtest/database/RS02_read_bad_headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_read_bad_headers -------------------------------------------------------------------------------- /regtest/database/RS02_read_bad_master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_read_bad_master -------------------------------------------------------------------------------- /regtest/database/RS02_read_bad_master_exhaustive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_read_bad_master_exhaustive -------------------------------------------------------------------------------- /regtest/database/RS02_read_crc_bad_byte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_read_crc_bad_byte -------------------------------------------------------------------------------- /regtest/database/RS02_read_data_bad_bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_read_data_bad_bytes -------------------------------------------------------------------------------- /regtest/database/RS02_read_ecc_bad_byte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_read_ecc_bad_byte -------------------------------------------------------------------------------- /regtest/database/RS02_read_good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_read_good -------------------------------------------------------------------------------- /regtest/database/RS02_read_good_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_read_good_file -------------------------------------------------------------------------------- /regtest/database/RS02_read_good_verbose: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_read_good_verbose -------------------------------------------------------------------------------- /regtest/database/RS02_read_incompatible_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_read_incompatible_ecc -------------------------------------------------------------------------------- /regtest/database/RS02_read_longer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_read_longer -------------------------------------------------------------------------------- /regtest/database/RS02_read_missing_crc_sectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_read_missing_crc_sectors -------------------------------------------------------------------------------- /regtest/database/RS02_read_missing_data_sectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_read_missing_data_sectors -------------------------------------------------------------------------------- /regtest/database/RS02_read_missing_ecc_sectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_read_missing_ecc_sectors -------------------------------------------------------------------------------- /regtest/database/RS02_read_modulo_glitch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_read_modulo_glitch -------------------------------------------------------------------------------- /regtest/database/RS02_read_modulo_glitch2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_read_modulo_glitch2 -------------------------------------------------------------------------------- /regtest/database/RS02_read_modulo_glitch3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_read_modulo_glitch3 -------------------------------------------------------------------------------- /regtest/database/RS02_read_modulo_glitch4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_read_modulo_glitch4 -------------------------------------------------------------------------------- /regtest/database/RS02_read_no_tao_tail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_read_no_tao_tail -------------------------------------------------------------------------------- /regtest/database/RS02_read_shorter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_read_shorter -------------------------------------------------------------------------------- /regtest/database/RS02_read_tao_tail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_read_tao_tail -------------------------------------------------------------------------------- /regtest/database/RS02_read_with_rs01_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_read_with_rs01_file -------------------------------------------------------------------------------- /regtest/database/RS02_read_with_rs03_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_read_with_rs03_file -------------------------------------------------------------------------------- /regtest/database/RS02_read_with_wrong_rs01_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_read_with_wrong_rs01_file -------------------------------------------------------------------------------- /regtest/database/RS02_read_with_wrong_rs03_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_read_with_wrong_rs03_file -------------------------------------------------------------------------------- /regtest/database/RS02_scan_bad_header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_scan_bad_header -------------------------------------------------------------------------------- /regtest/database/RS02_scan_bad_headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_scan_bad_headers -------------------------------------------------------------------------------- /regtest/database/RS02_scan_crc_bad_byte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_scan_crc_bad_byte -------------------------------------------------------------------------------- /regtest/database/RS02_scan_data_bad_byte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_scan_data_bad_byte -------------------------------------------------------------------------------- /regtest/database/RS02_scan_ecc_bad_byte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_scan_ecc_bad_byte -------------------------------------------------------------------------------- /regtest/database/RS02_scan_good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_scan_good -------------------------------------------------------------------------------- /regtest/database/RS02_scan_incompatible_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_scan_incompatible_ecc -------------------------------------------------------------------------------- /regtest/database/RS02_scan_longer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_scan_longer -------------------------------------------------------------------------------- /regtest/database/RS02_scan_missing_crc_sectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_scan_missing_crc_sectors -------------------------------------------------------------------------------- /regtest/database/RS02_scan_missing_data_sectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_scan_missing_data_sectors -------------------------------------------------------------------------------- /regtest/database/RS02_scan_missing_ecc_sectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_scan_missing_ecc_sectors -------------------------------------------------------------------------------- /regtest/database/RS02_scan_modulo_glitch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_scan_modulo_glitch -------------------------------------------------------------------------------- /regtest/database/RS02_scan_modulo_glitch2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_scan_modulo_glitch2 -------------------------------------------------------------------------------- /regtest/database/RS02_scan_modulo_glitch3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_scan_modulo_glitch3 -------------------------------------------------------------------------------- /regtest/database/RS02_scan_modulo_glitch4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_scan_modulo_glitch4 -------------------------------------------------------------------------------- /regtest/database/RS02_scan_no_tao_tail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_scan_no_tao_tail -------------------------------------------------------------------------------- /regtest/database/RS02_scan_shorter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_scan_shorter -------------------------------------------------------------------------------- /regtest/database/RS02_scan_tao_tail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_scan_tao_tail -------------------------------------------------------------------------------- /regtest/database/RS02_scan_with_rs01_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_scan_with_rs01_file -------------------------------------------------------------------------------- /regtest/database/RS02_scan_with_rs03_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_scan_with_rs03_file -------------------------------------------------------------------------------- /regtest/database/RS02_scan_with_wrong_rs01_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_scan_with_wrong_rs01_file -------------------------------------------------------------------------------- /regtest/database/RS02_scan_with_wrong_rs03_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_scan_with_wrong_rs03_file -------------------------------------------------------------------------------- /regtest/database/RS02_strip_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_strip_ecc -------------------------------------------------------------------------------- /regtest/database/RS02_strip_ecc_not: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_strip_ecc_not -------------------------------------------------------------------------------- /regtest/database/RS02_truncated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_truncated -------------------------------------------------------------------------------- /regtest/database/RS02_uncorrectable_dsm_in_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_uncorrectable_dsm_in_image -------------------------------------------------------------------------------- /regtest/database/RS02_uncorrectable_dsm_in_image2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_uncorrectable_dsm_in_image2 -------------------------------------------------------------------------------- /regtest/database/RS02_uncorrectable_dsm_in_image3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_uncorrectable_dsm_in_image3 -------------------------------------------------------------------------------- /regtest/database/RS02_with_rs01_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_with_rs01_file -------------------------------------------------------------------------------- /regtest/database/RS02_with_rs03_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_with_rs03_file -------------------------------------------------------------------------------- /regtest/database/RS02_with_wrong_rs01_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_with_wrong_rs01_file -------------------------------------------------------------------------------- /regtest/database/RS02_with_wrong_rs03_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS02_with_wrong_rs03_file -------------------------------------------------------------------------------- /regtest/database/RS03f_17_extra_sectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_17_extra_sectors -------------------------------------------------------------------------------- /regtest/database/RS03f_crc_error_in_fingerprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_crc_error_in_fingerprint -------------------------------------------------------------------------------- /regtest/database/RS03f_crc_errors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_crc_errors -------------------------------------------------------------------------------- /regtest/database/RS03f_ecc_create: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_ecc_create -------------------------------------------------------------------------------- /regtest/database/RS03f_ecc_create_after_partial_read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_ecc_create_after_partial_read -------------------------------------------------------------------------------- /regtest/database/RS03f_ecc_create_after_read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_ecc_create_after_read -------------------------------------------------------------------------------- /regtest/database/RS03f_ecc_create_plus56: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_ecc_create_plus56 -------------------------------------------------------------------------------- /regtest/database/RS03f_ecc_existing_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_ecc_existing_file -------------------------------------------------------------------------------- /regtest/database/RS03f_ecc_file_cookieless_crc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_ecc_file_cookieless_crc -------------------------------------------------------------------------------- /regtest/database/RS03f_ecc_file_defective_crc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_ecc_file_defective_crc -------------------------------------------------------------------------------- /regtest/database/RS03f_ecc_file_defective_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_ecc_file_defective_ecc -------------------------------------------------------------------------------- /regtest/database/RS03f_ecc_file_missing_crc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_ecc_file_missing_crc -------------------------------------------------------------------------------- /regtest/database/RS03f_ecc_file_missing_crc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_ecc_file_missing_crc2 -------------------------------------------------------------------------------- /regtest/database/RS03f_ecc_file_missing_crc3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_ecc_file_missing_crc3 -------------------------------------------------------------------------------- /regtest/database/RS03f_ecc_file_missing_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_ecc_file_missing_ecc -------------------------------------------------------------------------------- /regtest/database/RS03f_ecc_file_plus_garbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_ecc_file_plus_garbage -------------------------------------------------------------------------------- /regtest/database/RS03f_ecc_file_truncated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_ecc_file_truncated -------------------------------------------------------------------------------- /regtest/database/RS03f_ecc_header_crc_error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_ecc_header_crc_error -------------------------------------------------------------------------------- /regtest/database/RS03f_ecc_missing_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_ecc_missing_image -------------------------------------------------------------------------------- /regtest/database/RS03f_ecc_missing_sectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_ecc_missing_sectors -------------------------------------------------------------------------------- /regtest/database/RS03f_ecc_no_read_perm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_ecc_no_read_perm -------------------------------------------------------------------------------- /regtest/database/RS03f_ecc_no_write_perm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_ecc_no_write_perm -------------------------------------------------------------------------------- /regtest/database/RS03f_ecc_recreate_after_read_rs01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_ecc_recreate_after_read_rs01 -------------------------------------------------------------------------------- /regtest/database/RS03f_ecc_recreate_after_read_rs02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_ecc_recreate_after_read_rs02 -------------------------------------------------------------------------------- /regtest/database/RS03f_ecc_recreate_after_read_rs03f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_ecc_recreate_after_read_rs03f -------------------------------------------------------------------------------- /regtest/database/RS03f_ecc_recreate_after_read_rs03i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_ecc_recreate_after_read_rs03i -------------------------------------------------------------------------------- /regtest/database/RS03f_few_bytes_longer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_few_bytes_longer -------------------------------------------------------------------------------- /regtest/database/RS03f_few_bytes_shorter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_few_bytes_shorter -------------------------------------------------------------------------------- /regtest/database/RS03f_few_bytes_shorter2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_few_bytes_shorter2 -------------------------------------------------------------------------------- /regtest/database/RS03f_fingerprint_unreadable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_fingerprint_unreadable -------------------------------------------------------------------------------- /regtest/database/RS03f_fix_additional_sector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_fix_additional_sector -------------------------------------------------------------------------------- /regtest/database/RS03f_fix_border_cases_crc_errors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_fix_border_cases_crc_errors -------------------------------------------------------------------------------- /regtest/database/RS03f_fix_border_cases_erasures: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_fix_border_cases_erasures -------------------------------------------------------------------------------- /regtest/database/RS03f_fix_ecc_file_truncated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_fix_ecc_file_truncated -------------------------------------------------------------------------------- /regtest/database/RS03f_fix_good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_fix_good -------------------------------------------------------------------------------- /regtest/database/RS03f_fix_good_plus56: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_fix_good_plus56 -------------------------------------------------------------------------------- /regtest/database/RS03f_fix_missing_crc_sectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_fix_missing_crc_sectors -------------------------------------------------------------------------------- /regtest/database/RS03f_fix_missing_data_sectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_fix_missing_data_sectors -------------------------------------------------------------------------------- /regtest/database/RS03f_fix_missing_ecc_header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_fix_missing_ecc_header -------------------------------------------------------------------------------- /regtest/database/RS03f_fix_missing_ecc_sectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_fix_missing_ecc_sectors -------------------------------------------------------------------------------- /regtest/database/RS03f_fix_no_read_perm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_fix_no_read_perm -------------------------------------------------------------------------------- /regtest/database/RS03f_fix_no_read_perm_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_fix_no_read_perm_ecc -------------------------------------------------------------------------------- /regtest/database/RS03f_fix_no_write_perm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_fix_no_write_perm -------------------------------------------------------------------------------- /regtest/database/RS03f_fix_no_write_perm_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_fix_no_write_perm_ecc -------------------------------------------------------------------------------- /regtest/database/RS03f_fix_plus17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_fix_plus17 -------------------------------------------------------------------------------- /regtest/database/RS03f_fix_plus17_truncate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_fix_plus17_truncate -------------------------------------------------------------------------------- /regtest/database/RS03f_fix_plus56: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_fix_plus56 -------------------------------------------------------------------------------- /regtest/database/RS03f_fix_plus56_bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_fix_plus56_bytes -------------------------------------------------------------------------------- /regtest/database/RS03f_fix_plus56_little_truncated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_fix_plus56_little_truncated -------------------------------------------------------------------------------- /regtest/database/RS03f_fix_plus56_plus17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_fix_plus56_plus17 -------------------------------------------------------------------------------- /regtest/database/RS03f_fix_plus56_plus17500: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_fix_plus56_plus17500 -------------------------------------------------------------------------------- /regtest/database/RS03f_fix_plus56_plus17_truncate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_fix_plus56_plus17_truncate -------------------------------------------------------------------------------- /regtest/database/RS03f_fix_plus56_plus1s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_fix_plus56_plus1s -------------------------------------------------------------------------------- /regtest/database/RS03f_fix_plus56_plus2s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_fix_plus56_plus2s -------------------------------------------------------------------------------- /regtest/database/RS03f_fix_plus56_truncated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_fix_plus56_truncated -------------------------------------------------------------------------------- /regtest/database/RS03f_fix_truncated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_fix_truncated -------------------------------------------------------------------------------- /regtest/database/RS03f_good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_good -------------------------------------------------------------------------------- /regtest/database/RS03f_good_quick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_good_quick -------------------------------------------------------------------------------- /regtest/database/RS03f_image_plus56_normal_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_image_plus56_normal_ecc -------------------------------------------------------------------------------- /regtest/database/RS03f_image_truncated_by5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_image_truncated_by5 -------------------------------------------------------------------------------- /regtest/database/RS03f_missing_ecc_header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_missing_ecc_header -------------------------------------------------------------------------------- /regtest/database/RS03f_missing_ecc_header_and_crc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_missing_ecc_header_and_crc -------------------------------------------------------------------------------- /regtest/database/RS03f_missing_sectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_missing_sectors -------------------------------------------------------------------------------- /regtest/database/RS03f_mixed_errors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_mixed_errors -------------------------------------------------------------------------------- /regtest/database/RS03f_no_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_no_image -------------------------------------------------------------------------------- /regtest/database/RS03f_no_image_plus56_bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_no_image_plus56_bytes -------------------------------------------------------------------------------- /regtest/database/RS03f_normal_image_ecc_plus56_bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_normal_image_ecc_plus56_bytes -------------------------------------------------------------------------------- /regtest/database/RS03f_one_extra_sector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_one_extra_sector -------------------------------------------------------------------------------- /regtest/database/RS03f_plus56_bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_plus56_bytes -------------------------------------------------------------------------------- /regtest/database/RS03f_read_bad_header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_read_bad_header -------------------------------------------------------------------------------- /regtest/database/RS03f_read_crc_bad_byte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_read_crc_bad_byte -------------------------------------------------------------------------------- /regtest/database/RS03f_read_data_bad_byte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_read_data_bad_byte -------------------------------------------------------------------------------- /regtest/database/RS03f_read_ecc_bad_byte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_read_ecc_bad_byte -------------------------------------------------------------------------------- /regtest/database/RS03f_read_good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_read_good -------------------------------------------------------------------------------- /regtest/database/RS03f_read_good_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_read_good_file -------------------------------------------------------------------------------- /regtest/database/RS03f_read_good_verbose: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_read_good_verbose -------------------------------------------------------------------------------- /regtest/database/RS03f_read_incompatible_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_read_incompatible_ecc -------------------------------------------------------------------------------- /regtest/database/RS03f_read_longer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_read_longer -------------------------------------------------------------------------------- /regtest/database/RS03f_read_missing_crc_sectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_read_missing_crc_sectors -------------------------------------------------------------------------------- /regtest/database/RS03f_read_missing_data_sectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_read_missing_data_sectors -------------------------------------------------------------------------------- /regtest/database/RS03f_read_missing_ecc_sectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_read_missing_ecc_sectors -------------------------------------------------------------------------------- /regtest/database/RS03f_read_no_tao_tail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_read_no_tao_tail -------------------------------------------------------------------------------- /regtest/database/RS03f_read_shorter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_read_shorter -------------------------------------------------------------------------------- /regtest/database/RS03f_read_tao_tail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_read_tao_tail -------------------------------------------------------------------------------- /regtest/database/RS03f_scan_bad_header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_scan_bad_header -------------------------------------------------------------------------------- /regtest/database/RS03f_scan_crc_bad_byte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_scan_crc_bad_byte -------------------------------------------------------------------------------- /regtest/database/RS03f_scan_data_bad_byte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_scan_data_bad_byte -------------------------------------------------------------------------------- /regtest/database/RS03f_scan_ecc_bad_byte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_scan_ecc_bad_byte -------------------------------------------------------------------------------- /regtest/database/RS03f_scan_ecc_header_crc_error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_scan_ecc_header_crc_error -------------------------------------------------------------------------------- /regtest/database/RS03f_scan_good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_scan_good -------------------------------------------------------------------------------- /regtest/database/RS03f_scan_good_verbose: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_scan_good_verbose -------------------------------------------------------------------------------- /regtest/database/RS03f_scan_incompatible_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_scan_incompatible_ecc -------------------------------------------------------------------------------- /regtest/database/RS03f_scan_longer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_scan_longer -------------------------------------------------------------------------------- /regtest/database/RS03f_scan_missing_crc_sectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_scan_missing_crc_sectors -------------------------------------------------------------------------------- /regtest/database/RS03f_scan_missing_data_sectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_scan_missing_data_sectors -------------------------------------------------------------------------------- /regtest/database/RS03f_scan_missing_ecc_header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_scan_missing_ecc_header -------------------------------------------------------------------------------- /regtest/database/RS03f_scan_missing_ecc_sectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_scan_missing_ecc_sectors -------------------------------------------------------------------------------- /regtest/database/RS03f_scan_no_tao_tail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_scan_no_tao_tail -------------------------------------------------------------------------------- /regtest/database/RS03f_scan_shorter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_scan_shorter -------------------------------------------------------------------------------- /regtest/database/RS03f_scan_tao_tail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_scan_tao_tail -------------------------------------------------------------------------------- /regtest/database/RS03f_special_padding: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_special_padding -------------------------------------------------------------------------------- /regtest/database/RS03f_special_padding_plus56: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_special_padding_plus56 -------------------------------------------------------------------------------- /regtest/database/RS03f_uncorrectable_dsm_in_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_uncorrectable_dsm_in_image -------------------------------------------------------------------------------- /regtest/database/RS03f_uncorrectable_dsm_in_image2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03f_uncorrectable_dsm_in_image2 -------------------------------------------------------------------------------- /regtest/database/RS03i_bad_crc_checksum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_bad_crc_checksum -------------------------------------------------------------------------------- /regtest/database/RS03i_bad_crc_cookie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_bad_crc_cookie -------------------------------------------------------------------------------- /regtest/database/RS03i_data_bad_byte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_data_bad_byte -------------------------------------------------------------------------------- /regtest/database/RS03i_ecc_bad_byte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_ecc_bad_byte -------------------------------------------------------------------------------- /regtest/database/RS03i_ecc_create: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_ecc_create -------------------------------------------------------------------------------- /regtest/database/RS03i_ecc_create_after_partial_read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_ecc_create_after_partial_read -------------------------------------------------------------------------------- /regtest/database/RS03i_ecc_create_after_read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_ecc_create_after_read -------------------------------------------------------------------------------- /regtest/database/RS03i_ecc_from_larger_rs03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_ecc_from_larger_rs03 -------------------------------------------------------------------------------- /regtest/database/RS03i_ecc_from_rs02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_ecc_from_rs02 -------------------------------------------------------------------------------- /regtest/database/RS03i_ecc_from_rs02_non_blocksize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_ecc_from_rs02_non_blocksize -------------------------------------------------------------------------------- /regtest/database/RS03i_ecc_from_rs03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_ecc_from_rs03 -------------------------------------------------------------------------------- /regtest/database/RS03i_ecc_from_rs03_non_blocksize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_ecc_from_rs03_non_blocksize -------------------------------------------------------------------------------- /regtest/database/RS03i_ecc_layer_multiple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_ecc_layer_multiple -------------------------------------------------------------------------------- /regtest/database/RS03i_ecc_missing_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_ecc_missing_image -------------------------------------------------------------------------------- /regtest/database/RS03i_ecc_missing_sectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_ecc_missing_sectors -------------------------------------------------------------------------------- /regtest/database/RS03i_ecc_no_padding: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_ecc_no_padding -------------------------------------------------------------------------------- /regtest/database/RS03i_ecc_no_read_perm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_ecc_no_read_perm -------------------------------------------------------------------------------- /regtest/database/RS03i_ecc_no_write_perm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_ecc_no_write_perm -------------------------------------------------------------------------------- /regtest/database/RS03i_ecc_non_blocksize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_ecc_non_blocksize -------------------------------------------------------------------------------- /regtest/database/RS03i_ecc_recreate_after_read_rs01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_ecc_recreate_after_read_rs01 -------------------------------------------------------------------------------- /regtest/database/RS03i_ecc_recreate_after_read_rs02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_ecc_recreate_after_read_rs02 -------------------------------------------------------------------------------- /regtest/database/RS03i_ecc_recreate_after_read_rs03f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_ecc_recreate_after_read_rs03f -------------------------------------------------------------------------------- /regtest/database/RS03i_ecc_recreate_after_read_rs03i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_ecc_recreate_after_read_rs03i -------------------------------------------------------------------------------- /regtest/database/RS03i_fix_border_cases_crc_errors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_fix_border_cases_crc_errors -------------------------------------------------------------------------------- /regtest/database/RS03i_fix_border_cases_erasures: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_fix_border_cases_erasures -------------------------------------------------------------------------------- /regtest/database/RS03i_fix_correctable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_fix_correctable -------------------------------------------------------------------------------- /regtest/database/RS03i_fix_good_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_fix_good_image -------------------------------------------------------------------------------- /regtest/database/RS03i_fix_layer_multiple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_fix_layer_multiple -------------------------------------------------------------------------------- /regtest/database/RS03i_fix_no_padding: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_fix_no_padding -------------------------------------------------------------------------------- /regtest/database/RS03i_fix_no_read_perm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_fix_no_read_perm -------------------------------------------------------------------------------- /regtest/database/RS03i_fix_no_write_perm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_fix_no_write_perm -------------------------------------------------------------------------------- /regtest/database/RS03i_fix_trailing_bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_fix_trailing_bytes -------------------------------------------------------------------------------- /regtest/database/RS03i_fix_trailing_garbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_fix_trailing_garbage -------------------------------------------------------------------------------- /regtest/database/RS03i_fix_trailing_garbage2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_fix_trailing_garbage2 -------------------------------------------------------------------------------- /regtest/database/RS03i_fix_trailing_tao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_fix_trailing_tao -------------------------------------------------------------------------------- /regtest/database/RS03i_fix_truncated_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_fix_truncated_image -------------------------------------------------------------------------------- /regtest/database/RS03i_fix_with_crc_error_in_padding: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_fix_with_crc_error_in_padding -------------------------------------------------------------------------------- /regtest/database/RS03i_fix_with_ecc_file_crc_block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_fix_with_ecc_file_crc_block -------------------------------------------------------------------------------- /regtest/database/RS03i_fix_with_ecc_file_header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_fix_with_ecc_file_header -------------------------------------------------------------------------------- /regtest/database/RS03i_fix_with_missing_header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_fix_with_missing_header -------------------------------------------------------------------------------- /regtest/database/RS03i_fix_with_missing_iso_header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_fix_with_missing_iso_header -------------------------------------------------------------------------------- /regtest/database/RS03i_fix_with_rs01_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_fix_with_rs01_file -------------------------------------------------------------------------------- /regtest/database/RS03i_fix_with_rs03_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_fix_with_rs03_file -------------------------------------------------------------------------------- /regtest/database/RS03i_good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_good -------------------------------------------------------------------------------- /regtest/database/RS03i_good_quick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_good_quick -------------------------------------------------------------------------------- /regtest/database/RS03i_layer_multiple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_layer_multiple -------------------------------------------------------------------------------- /regtest/database/RS03i_missing_crc_sectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_missing_crc_sectors -------------------------------------------------------------------------------- /regtest/database/RS03i_missing_data_sectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_missing_data_sectors -------------------------------------------------------------------------------- /regtest/database/RS03i_missing_ecc_sectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_missing_ecc_sectors -------------------------------------------------------------------------------- /regtest/database/RS03i_missing_header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_missing_header -------------------------------------------------------------------------------- /regtest/database/RS03i_missing_header2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_missing_header2 -------------------------------------------------------------------------------- /regtest/database/RS03i_missing_header3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_missing_header3 -------------------------------------------------------------------------------- /regtest/database/RS03i_missing_header4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_missing_header4 -------------------------------------------------------------------------------- /regtest/database/RS03i_missing_header5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_missing_header5 -------------------------------------------------------------------------------- /regtest/database/RS03i_missing_header6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_missing_header6 -------------------------------------------------------------------------------- /regtest/database/RS03i_missing_header_no_crcsec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_missing_header_no_crcsec -------------------------------------------------------------------------------- /regtest/database/RS03i_missing_header_truncated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_missing_header_truncated -------------------------------------------------------------------------------- /regtest/database/RS03i_missing_iso_header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_missing_iso_header -------------------------------------------------------------------------------- /regtest/database/RS03i_no_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_no_image -------------------------------------------------------------------------------- /regtest/database/RS03i_no_padding: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_no_padding -------------------------------------------------------------------------------- /regtest/database/RS03i_plus1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_plus1 -------------------------------------------------------------------------------- /regtest/database/RS03i_plus17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_plus17 -------------------------------------------------------------------------------- /regtest/database/RS03i_plus_56_bytes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_plus_56_bytes -------------------------------------------------------------------------------- /regtest/database/RS03i_random_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_random_image -------------------------------------------------------------------------------- /regtest/database/RS03i_read_bad_header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_read_bad_header -------------------------------------------------------------------------------- /regtest/database/RS03i_read_bad_header_exhaustive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_read_bad_header_exhaustive -------------------------------------------------------------------------------- /regtest/database/RS03i_read_crc_bad_byte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_read_crc_bad_byte -------------------------------------------------------------------------------- /regtest/database/RS03i_read_data_bad_byte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_read_data_bad_byte -------------------------------------------------------------------------------- /regtest/database/RS03i_read_ecc_bad_byte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_read_ecc_bad_byte -------------------------------------------------------------------------------- /regtest/database/RS03i_read_good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_read_good -------------------------------------------------------------------------------- /regtest/database/RS03i_read_good_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_read_good_file -------------------------------------------------------------------------------- /regtest/database/RS03i_read_good_verbose: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_read_good_verbose -------------------------------------------------------------------------------- /regtest/database/RS03i_read_incompatible_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_read_incompatible_ecc -------------------------------------------------------------------------------- /regtest/database/RS03i_read_longer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_read_longer -------------------------------------------------------------------------------- /regtest/database/RS03i_read_missing_crc_sectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_read_missing_crc_sectors -------------------------------------------------------------------------------- /regtest/database/RS03i_read_missing_data_sectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_read_missing_data_sectors -------------------------------------------------------------------------------- /regtest/database/RS03i_read_missing_ecc_sectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_read_missing_ecc_sectors -------------------------------------------------------------------------------- /regtest/database/RS03i_read_missing_iso_header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_read_missing_iso_header -------------------------------------------------------------------------------- /regtest/database/RS03i_read_no_tao_tail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_read_no_tao_tail -------------------------------------------------------------------------------- /regtest/database/RS03i_read_shorter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_read_shorter -------------------------------------------------------------------------------- /regtest/database/RS03i_read_tao_tail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_read_tao_tail -------------------------------------------------------------------------------- /regtest/database/RS03i_read_with_ecc_file_crc_block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_read_with_ecc_file_crc_block -------------------------------------------------------------------------------- /regtest/database/RS03i_read_with_ecc_file_header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_read_with_ecc_file_header -------------------------------------------------------------------------------- /regtest/database/RS03i_read_with_missing_header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_read_with_missing_header -------------------------------------------------------------------------------- /regtest/database/RS03i_read_with_rs01_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_read_with_rs01_file -------------------------------------------------------------------------------- /regtest/database/RS03i_read_with_rs03_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_read_with_rs03_file -------------------------------------------------------------------------------- /regtest/database/RS03i_read_with_wrong_rs01_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_read_with_wrong_rs01_file -------------------------------------------------------------------------------- /regtest/database/RS03i_read_with_wrong_rs03_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_read_with_wrong_rs03_file -------------------------------------------------------------------------------- /regtest/database/RS03i_rediscover_170_roots: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_rediscover_170_roots -------------------------------------------------------------------------------- /regtest/database/RS03i_rediscover_170_roots-padding: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_rediscover_170_roots-padding -------------------------------------------------------------------------------- /regtest/database/RS03i_rediscover_170_roots-padding2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_rediscover_170_roots-padding2 -------------------------------------------------------------------------------- /regtest/database/RS03i_rediscover_170_roots2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_rediscover_170_roots2 -------------------------------------------------------------------------------- /regtest/database/RS03i_rediscover_8_roots: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_rediscover_8_roots -------------------------------------------------------------------------------- /regtest/database/RS03i_rediscover_8_roots2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_rediscover_8_roots2 -------------------------------------------------------------------------------- /regtest/database/RS03i_scan_bad_header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_scan_bad_header -------------------------------------------------------------------------------- /regtest/database/RS03i_scan_crc_bad_byte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_scan_crc_bad_byte -------------------------------------------------------------------------------- /regtest/database/RS03i_scan_data_bad_byte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_scan_data_bad_byte -------------------------------------------------------------------------------- /regtest/database/RS03i_scan_ecc_bad_byte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_scan_ecc_bad_byte -------------------------------------------------------------------------------- /regtest/database/RS03i_scan_good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_scan_good -------------------------------------------------------------------------------- /regtest/database/RS03i_scan_good_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_scan_good_file -------------------------------------------------------------------------------- /regtest/database/RS03i_scan_good_verbose: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_scan_good_verbose -------------------------------------------------------------------------------- /regtest/database/RS03i_scan_incompatible_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_scan_incompatible_ecc -------------------------------------------------------------------------------- /regtest/database/RS03i_scan_longer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_scan_longer -------------------------------------------------------------------------------- /regtest/database/RS03i_scan_missing_crc_sectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_scan_missing_crc_sectors -------------------------------------------------------------------------------- /regtest/database/RS03i_scan_missing_data_sectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_scan_missing_data_sectors -------------------------------------------------------------------------------- /regtest/database/RS03i_scan_missing_ecc_sectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_scan_missing_ecc_sectors -------------------------------------------------------------------------------- /regtest/database/RS03i_scan_missing_header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_scan_missing_header -------------------------------------------------------------------------------- /regtest/database/RS03i_scan_missing_header2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_scan_missing_header2 -------------------------------------------------------------------------------- /regtest/database/RS03i_scan_missing_header3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_scan_missing_header3 -------------------------------------------------------------------------------- /regtest/database/RS03i_scan_missing_header4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_scan_missing_header4 -------------------------------------------------------------------------------- /regtest/database/RS03i_scan_missing_header_no_crcsec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_scan_missing_header_no_crcsec -------------------------------------------------------------------------------- /regtest/database/RS03i_scan_missing_header_truncated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_scan_missing_header_truncated -------------------------------------------------------------------------------- /regtest/database/RS03i_scan_no_tao_tail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_scan_no_tao_tail -------------------------------------------------------------------------------- /regtest/database/RS03i_scan_random_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_scan_random_image -------------------------------------------------------------------------------- /regtest/database/RS03i_scan_rediscover_170_roots: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_scan_rediscover_170_roots -------------------------------------------------------------------------------- /regtest/database/RS03i_scan_rediscover_170_roots2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_scan_rediscover_170_roots2 -------------------------------------------------------------------------------- /regtest/database/RS03i_scan_rediscover_8_roots: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_scan_rediscover_8_roots -------------------------------------------------------------------------------- /regtest/database/RS03i_scan_rediscover_8_roots2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_scan_rediscover_8_roots2 -------------------------------------------------------------------------------- /regtest/database/RS03i_scan_shorter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_scan_shorter -------------------------------------------------------------------------------- /regtest/database/RS03i_scan_tao_tail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_scan_tao_tail -------------------------------------------------------------------------------- /regtest/database/RS03i_scan_with_rs01_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_scan_with_rs01_file -------------------------------------------------------------------------------- /regtest/database/RS03i_scan_with_rs03_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_scan_with_rs03_file -------------------------------------------------------------------------------- /regtest/database/RS03i_scan_with_wrong_rs01_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_scan_with_wrong_rs01_file -------------------------------------------------------------------------------- /regtest/database/RS03i_scan_with_wrong_rs03_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_scan_with_wrong_rs03_file -------------------------------------------------------------------------------- /regtest/database/RS03i_strip_ecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_strip_ecc -------------------------------------------------------------------------------- /regtest/database/RS03i_strip_ecc_not: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_strip_ecc_not -------------------------------------------------------------------------------- /regtest/database/RS03i_truncated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_truncated -------------------------------------------------------------------------------- /regtest/database/RS03i_uncorrectable_dsm_in_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_uncorrectable_dsm_in_image -------------------------------------------------------------------------------- /regtest/database/RS03i_uncorrectable_dsm_in_image2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_uncorrectable_dsm_in_image2 -------------------------------------------------------------------------------- /regtest/database/RS03i_with_crc_error_in_padding: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_with_crc_error_in_padding -------------------------------------------------------------------------------- /regtest/database/RS03i_with_ecc_file_crc_block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_with_ecc_file_crc_block -------------------------------------------------------------------------------- /regtest/database/RS03i_with_ecc_file_header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_with_ecc_file_header -------------------------------------------------------------------------------- /regtest/database/RS03i_with_rs01_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_with_rs01_file -------------------------------------------------------------------------------- /regtest/database/RS03i_with_rs03_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_with_rs03_file -------------------------------------------------------------------------------- /regtest/database/RS03i_with_wrong_rs01_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_with_wrong_rs01_file -------------------------------------------------------------------------------- /regtest/database/RS03i_with_wrong_rs03_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/database/RS03i_with_wrong_rs03_file -------------------------------------------------------------------------------- /regtest/fixed-random-sequence: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/fixed-random-sequence -------------------------------------------------------------------------------- /regtest/rs01.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/rs01.bash -------------------------------------------------------------------------------- /regtest/rs02.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/rs02.bash -------------------------------------------------------------------------------- /regtest/rs03f.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/rs03f.bash -------------------------------------------------------------------------------- /regtest/rs03i.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/rs03i.bash -------------------------------------------------------------------------------- /regtest/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/regtest/runtests.sh -------------------------------------------------------------------------------- /scripts/bash-based-configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/scripts/bash-based-configure -------------------------------------------------------------------------------- /scripts/distcomp.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/scripts/distcomp.bash -------------------------------------------------------------------------------- /scripts/time-stamper.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/scripts/time-stamper.bash -------------------------------------------------------------------------------- /src/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/bitmap.c -------------------------------------------------------------------------------- /src/build.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/build.c -------------------------------------------------------------------------------- /src/cacheprobe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/cacheprobe.c -------------------------------------------------------------------------------- /src/closure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/closure.c -------------------------------------------------------------------------------- /src/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/crc32.c -------------------------------------------------------------------------------- /src/crcbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/crcbuf.c -------------------------------------------------------------------------------- /src/curve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/curve.c -------------------------------------------------------------------------------- /src/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/debug.c -------------------------------------------------------------------------------- /src/ds-marker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/ds-marker.c -------------------------------------------------------------------------------- /src/dvdisaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/dvdisaster.c -------------------------------------------------------------------------------- /src/dvdisaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/dvdisaster.h -------------------------------------------------------------------------------- /src/ecc-rs01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/ecc-rs01.c -------------------------------------------------------------------------------- /src/ecc-rs02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/ecc-rs02.c -------------------------------------------------------------------------------- /src/ecc-rs03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/ecc-rs03.c -------------------------------------------------------------------------------- /src/endian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/endian.c -------------------------------------------------------------------------------- /src/galois-inlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/galois-inlines.h -------------------------------------------------------------------------------- /src/galois.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/galois.c -------------------------------------------------------------------------------- /src/help-dialogs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/help-dialogs.c -------------------------------------------------------------------------------- /src/heuristic-lec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/heuristic-lec.c -------------------------------------------------------------------------------- /src/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/image.c -------------------------------------------------------------------------------- /src/l-ec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/l-ec.c -------------------------------------------------------------------------------- /src/large-io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/large-io.c -------------------------------------------------------------------------------- /src/logfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/logfile.c -------------------------------------------------------------------------------- /src/main-window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/main-window.c -------------------------------------------------------------------------------- /src/maintenance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/maintenance.c -------------------------------------------------------------------------------- /src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/md5.c -------------------------------------------------------------------------------- /src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/md5.h -------------------------------------------------------------------------------- /src/medium-info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/medium-info.c -------------------------------------------------------------------------------- /src/memtrack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/memtrack.c -------------------------------------------------------------------------------- /src/menubar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/menubar.c -------------------------------------------------------------------------------- /src/method-link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/method-link.c -------------------------------------------------------------------------------- /src/method.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/method.c -------------------------------------------------------------------------------- /src/misc-gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/misc-gui.c -------------------------------------------------------------------------------- /src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/misc.c -------------------------------------------------------------------------------- /src/preferences.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/preferences.c -------------------------------------------------------------------------------- /src/print-sense.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/print-sense.c -------------------------------------------------------------------------------- /src/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/random.c -------------------------------------------------------------------------------- /src/raw-editor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/raw-editor.c -------------------------------------------------------------------------------- /src/raw-sector-cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/raw-sector-cache.c -------------------------------------------------------------------------------- /src/read-adaptive-window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/read-adaptive-window.c -------------------------------------------------------------------------------- /src/read-adaptive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/read-adaptive.c -------------------------------------------------------------------------------- /src/read-linear-window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/read-linear-window.c -------------------------------------------------------------------------------- /src/read-linear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/read-linear.c -------------------------------------------------------------------------------- /src/read-linear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/read-linear.h -------------------------------------------------------------------------------- /src/recover-raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/recover-raw.c -------------------------------------------------------------------------------- /src/rs-decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/rs-decoder.c -------------------------------------------------------------------------------- /src/rs-encoder-altivec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/rs-encoder-altivec.c -------------------------------------------------------------------------------- /src/rs-encoder-sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/rs-encoder-sse2.c -------------------------------------------------------------------------------- /src/rs-encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/rs-encoder.c -------------------------------------------------------------------------------- /src/rs01-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/rs01-common.c -------------------------------------------------------------------------------- /src/rs01-create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/rs01-create.c -------------------------------------------------------------------------------- /src/rs01-fix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/rs01-fix.c -------------------------------------------------------------------------------- /src/rs01-includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/rs01-includes.h -------------------------------------------------------------------------------- /src/rs01-verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/rs01-verify.c -------------------------------------------------------------------------------- /src/rs01-window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/rs01-window.c -------------------------------------------------------------------------------- /src/rs02-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/rs02-common.c -------------------------------------------------------------------------------- /src/rs02-create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/rs02-create.c -------------------------------------------------------------------------------- /src/rs02-fix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/rs02-fix.c -------------------------------------------------------------------------------- /src/rs02-includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/rs02-includes.h -------------------------------------------------------------------------------- /src/rs02-recognize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/rs02-recognize.c -------------------------------------------------------------------------------- /src/rs02-verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/rs02-verify.c -------------------------------------------------------------------------------- /src/rs02-window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/rs02-window.c -------------------------------------------------------------------------------- /src/rs03-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/rs03-common.c -------------------------------------------------------------------------------- /src/rs03-create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/rs03-create.c -------------------------------------------------------------------------------- /src/rs03-fix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/rs03-fix.c -------------------------------------------------------------------------------- /src/rs03-includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/rs03-includes.h -------------------------------------------------------------------------------- /src/rs03-preferences.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/rs03-preferences.c -------------------------------------------------------------------------------- /src/rs03-recognize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/rs03-recognize.c -------------------------------------------------------------------------------- /src/rs03-verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/rs03-verify.c -------------------------------------------------------------------------------- /src/rs03-window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/rs03-window.c -------------------------------------------------------------------------------- /src/scsi-darwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/scsi-darwin.c -------------------------------------------------------------------------------- /src/scsi-freebsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/scsi-freebsd.c -------------------------------------------------------------------------------- /src/scsi-layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/scsi-layer.c -------------------------------------------------------------------------------- /src/scsi-layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/scsi-layer.h -------------------------------------------------------------------------------- /src/scsi-linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/scsi-linux.c -------------------------------------------------------------------------------- /src/scsi-netbsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/scsi-netbsd.c -------------------------------------------------------------------------------- /src/scsi-simulated.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/scsi-simulated.c -------------------------------------------------------------------------------- /src/scsi-unknown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/scsi-unknown.c -------------------------------------------------------------------------------- /src/scsi-win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/scsi-win32.c -------------------------------------------------------------------------------- /src/show-manual.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/show-manual.c -------------------------------------------------------------------------------- /src/smart-lec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/smart-lec.c -------------------------------------------------------------------------------- /src/spiral.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/spiral.c -------------------------------------------------------------------------------- /src/udf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/udf.c -------------------------------------------------------------------------------- /src/udf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/udf.h -------------------------------------------------------------------------------- /src/welcome-window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speed47/dvdisaster/HEAD/src/welcome-window.c -------------------------------------------------------------------------------- /src/winres.rc: -------------------------------------------------------------------------------- 1 | 2 | 1 ICON "icons/win.ico" 3 | --------------------------------------------------------------------------------