rb_cdio 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (100) hide show
  1. data/ext/CdIo.c +132 -0
  2. data/ext/CdIo.h +108 -0
  3. data/ext/CdIo.o +0 -0
  4. data/ext/CdIo_Cd.c +345 -0
  5. data/ext/CdIo_Cd.o +0 -0
  6. data/ext/CdIo_Common.c +84 -0
  7. data/ext/CdIo_Common.o +0 -0
  8. data/ext/CdIo_Modulo.c +226 -0
  9. data/ext/CdIo_Modulo.o +0 -0
  10. data/ext/CdIo_Track.c +91 -0
  11. data/ext/CdIo_Track.o +0 -0
  12. data/ext/CdIo_TrackIso9660.c +78 -0
  13. data/ext/CdIo_TrackIso9660.o +0 -0
  14. data/ext/Makefile +127 -0
  15. data/ext/extconf.rb +4 -0
  16. data/ext/mkmf.log +26 -0
  17. data/lib/rb_cdio_read.rb +39 -0
  18. data/test/data/Makefile +677 -0
  19. data/test/data/Makefile.am +78 -0
  20. data/test/data/Makefile.in +677 -0
  21. data/test/data/bad-cat1.cue +9 -0
  22. data/test/data/bad-cat1.toc +8 -0
  23. data/test/data/bad-cat2.cue +9 -0
  24. data/test/data/bad-cat2.toc +8 -0
  25. data/test/data/bad-cat3.cue +9 -0
  26. data/test/data/bad-cat3.toc +8 -0
  27. data/test/data/bad-mode1.cue +7 -0
  28. data/test/data/bad-mode1.toc +5 -0
  29. data/test/data/bad-msf-1.cue +7 -0
  30. data/test/data/bad-msf-1.toc +6 -0
  31. data/test/data/bad-msf-2.cue +7 -0
  32. data/test/data/bad-msf-2.toc +6 -0
  33. data/test/data/bad-msf-3.cue +7 -0
  34. data/test/data/bad-msf-3.toc +6 -0
  35. data/test/data/cdda-read.right +148 -0
  36. data/test/data/cdda.bin +0 -0
  37. data/test/data/cdda.cue +6 -0
  38. data/test/data/cdda.right +44 -0
  39. data/test/data/cdda.toc +13 -0
  40. data/test/data/cdtext.toc +48 -0
  41. data/test/data/check_cd_read.sh +53 -0
  42. data/test/data/check_common_fn +186 -0
  43. data/test/data/check_common_fn.in +186 -0
  44. data/test/data/check_cue.sh +102 -0
  45. data/test/data/check_cue.sh.in +102 -0
  46. data/test/data/check_iso.sh +32 -0
  47. data/test/data/check_iso.sh.in +32 -0
  48. data/test/data/check_nrg.sh +68 -0
  49. data/test/data/check_nrg.sh.in +68 -0
  50. data/test/data/check_opts.sh +33 -0
  51. data/test/data/check_opts0.right +40 -0
  52. data/test/data/check_opts1.right +40 -0
  53. data/test/data/check_opts2.right +34 -0
  54. data/test/data/check_opts3.right +34 -0
  55. data/test/data/check_opts4.right +44 -0
  56. data/test/data/check_opts5.right +44 -0
  57. data/test/data/check_opts6.right +44 -0
  58. data/test/data/check_opts7.right +44 -0
  59. data/test/data/check_sizeof +117 -0
  60. data/test/data/check_sizeof.c +77 -0
  61. data/test/data/copying.iso +0 -0
  62. data/test/data/copying.right +10 -0
  63. data/test/data/data1.toc +8 -0
  64. data/test/data/data2.toc +13 -0
  65. data/test/data/data5.toc +13 -0
  66. data/test/data/data6.toc +8 -0
  67. data/test/data/data7.toc +13 -0
  68. data/test/data/isofs-m1-read.right +258 -0
  69. data/test/data/isofs-m1.bin +0 -0
  70. data/test/data/isofs-m1.cue +3 -0
  71. data/test/data/isofs-m1.right +57 -0
  72. data/test/data/isofs-m1.toc +4 -0
  73. data/test/data/t1.toc +5 -0
  74. data/test/data/t2.toc +6 -0
  75. data/test/data/t3.toc +11 -0
  76. data/test/data/t4.toc +8 -0
  77. data/test/data/t5.toc +8 -0
  78. data/test/data/t6.toc +7 -0
  79. data/test/data/t7.toc +12 -0
  80. data/test/data/t8.toc +14 -0
  81. data/test/data/t9.toc +31 -0
  82. data/test/data/testassert +117 -0
  83. data/test/data/testassert.c +36 -0
  84. data/test/data/testbincue +117 -0
  85. data/test/data/testbincue.c +88 -0
  86. data/test/data/testdefault +117 -0
  87. data/test/data/testdefault.c +196 -0
  88. data/test/data/testischar +117 -0
  89. data/test/data/testischar.c +71 -0
  90. data/test/data/testiso9660 +117 -0
  91. data/test/data/testiso9660.c +153 -0
  92. data/test/data/testtoc +117 -0
  93. data/test/data/testtoc.c +101 -0
  94. data/test/data/vcd_demo.right +116 -0
  95. data/test/data/videocd.nrg +0 -0
  96. data/test/data/videocd.right +92 -0
  97. data/test/testall.rb +4 -0
  98. data/test/testbincue.rb +30 -0
  99. data/test/testtoc.rb +45 -0
  100. metadata +141 -0
@@ -0,0 +1,13 @@
1
+ // $Id: data5.toc,v 1.1 2004/05/08 20:36:02 rocky Exp $
2
+ // XA disk
3
+ //
4
+
5
+ CD_ROM_XA
6
+
7
+ TRACK MODE2_FORM2
8
+ FILE "vcd_demo.bin" 00:00:00 00:13:57
9
+
10
+ TRACK MODE2_FORM1
11
+ PREGAP 0:2:0
12
+ FILE "vcd_demo.bin" 00:20:71 00:00:00
13
+
@@ -0,0 +1,8 @@
1
+ // $Id: data6.toc,v 1.1 2004/05/08 20:36:02 rocky Exp $
2
+ // MODE2 track
3
+ //
4
+
5
+ CD_ROM
6
+
7
+ TRACK MODE2
8
+ FILE "vcd_demo.bin" 00:00:00 00:13:57
@@ -0,0 +1,13 @@
1
+ // $Id: data7.toc,v 1.1 2004/05/09 17:05:34 rocky Exp $
2
+ // Video CD
3
+ //
4
+
5
+ CD_ROM_XA
6
+
7
+ TRACK MODE1 // ISO filesystem
8
+ FILE "vcd_demo.bin" 00:00:00 00:13:57
9
+
10
+ TRACK MODE2_FORM_MIX // XA track with form 1 and form 2 sectors
11
+ PREGAP 0:2:0
12
+ FILE "vcd_demo.bin" 00:20:71 00:00:00
13
+
@@ -0,0 +1,258 @@
1
+ 0x0000: 0909 2020 2020 474e 5520 4745 4e45 5241 .. GNU GENERA
2
+ 0x0010: 4c20 5055 424c 4943 204c 4943 454e 5345 L PUBLIC LICENSE
3
+ 0x0020: 0a09 0920 2020 2020 2020 5665 7273 696f ... Versio
4
+ 0x0030: 6e20 322c 204a 756e 6520 3139 3931 0a0a n 2, June 1991..
5
+ 0x0040: 2043 6f70 7972 6967 6874 2028 4329 2031 Copyright (C) 1
6
+ 0x0050: 3938 392c 2031 3939 3120 4672 6565 2053 989, 1991 Free S
7
+ 0x0060: 6f66 7477 6172 6520 466f 756e 6461 7469 oftware Foundati
8
+ 0x0070: 6f6e 2c20 496e 632e 0a20 2020 2020 3539 on, Inc.. 59
9
+ 0x0080: 2054 656d 706c 6520 506c 6163 652c 2053 Temple Place, S
10
+ 0x0090: 7569 7465 2033 3330 2c20 426f 7374 6f6e uite 330, Boston
11
+ 0x00a0: 2c20 4d41 2020 3032 3131 312d 3133 3037 , MA 02111-1307
12
+ 0x00b0: 2020 5553 410a 2045 7665 7279 6f6e 6520 USA. Everyone
13
+ 0x00c0: 6973 2070 6572 6d69 7474 6564 2074 6f20 is permitted to
14
+ 0x00d0: 636f 7079 2061 6e64 2064 6973 7472 6962 copy and distrib
15
+ 0x00e0: 7574 6520 7665 7262 6174 696d 2063 6f70 ute verbatim cop
16
+ 0x00f0: 6965 730a 206f 6620 7468 6973 206c 6963 ies. of this lic
17
+ 0x0100: 656e 7365 2064 6f63 756d 656e 742c 2062 ense document, b
18
+ 0x0110: 7574 2063 6861 6e67 696e 6720 6974 2069 ut changing it i
19
+ 0x0120: 7320 6e6f 7420 616c 6c6f 7765 642e 0a0a s not allowed...
20
+ 0x0130: 0909 0920 2020 2050 7265 616d 626c 650a ... Preamble.
21
+ 0x0140: 0a20 2054 6865 206c 6963 656e 7365 7320 . The licenses
22
+ 0x0150: 666f 7220 6d6f 7374 2073 6f66 7477 6172 for most softwar
23
+ 0x0160: 6520 6172 6520 6465 7369 676e 6564 2074 e are designed t
24
+ 0x0170: 6f20 7461 6b65 2061 7761 7920 796f 7572 o take away your
25
+ 0x0180: 0a66 7265 6564 6f6d 2074 6f20 7368 6172 .freedom to shar
26
+ 0x0190: 6520 616e 6420 6368 616e 6765 2069 742e e and change it.
27
+ 0x01a0: 2020 4279 2063 6f6e 7472 6173 742c 2074 By contrast, t
28
+ 0x01b0: 6865 2047 4e55 2047 656e 6572 616c 2050 he GNU General P
29
+ 0x01c0: 7562 6c69 630a 4c69 6365 6e73 6520 6973 ublic.License is
30
+ 0x01d0: 2069 6e74 656e 6465 6420 746f 2067 7561 intended to gua
31
+ 0x01e0: 7261 6e74 6565 2079 6f75 7220 6672 6565 rantee your free
32
+ 0x01f0: 646f 6d20 746f 2073 6861 7265 2061 6e64 dom to share and
33
+ 0x0200: 2063 6861 6e67 6520 6672 6565 0a73 6f66 change free.sof
34
+ 0x0210: 7477 6172 652d 2d74 6f20 6d61 6b65 2073 tware--to make s
35
+ 0x0220: 7572 6520 7468 6520 736f 6674 7761 7265 ure the software
36
+ 0x0230: 2069 7320 6672 6565 2066 6f72 2061 6c6c is free for all
37
+ 0x0240: 2069 7473 2075 7365 7273 2e20 2054 6869 its users. Thi
38
+ 0x0250: 730a 4765 6e65 7261 6c20 5075 626c 6963 s.General Public
39
+ 0x0260: 204c 6963 656e 7365 2061 7070 6c69 6573 License applies
40
+ 0x0270: 2074 6f20 6d6f 7374 206f 6620 7468 6520 to most of the
41
+ 0x0280: 4672 6565 2053 6f66 7477 6172 650a 466f Free Software.Fo
42
+ 0x0290: 756e 6461 7469 6f6e 2773 2073 6f66 7477 undation's softw
43
+ 0x02a0: 6172 6520 616e 6420 746f 2061 6e79 206f are and to any o
44
+ 0x02b0: 7468 6572 2070 726f 6772 616d 2077 686f ther program who
45
+ 0x02c0: 7365 2061 7574 686f 7273 2063 6f6d 6d69 se authors commi
46
+ 0x02d0: 7420 746f 0a75 7369 6e67 2069 742e 2020 t to.using it.
47
+ 0x02e0: 2853 6f6d 6520 6f74 6865 7220 4672 6565 (Some other Free
48
+ 0x02f0: 2053 6f66 7477 6172 6520 466f 756e 6461 Software Founda
49
+ 0x0300: 7469 6f6e 2073 6f66 7477 6172 6520 6973 tion software is
50
+ 0x0310: 2063 6f76 6572 6564 2062 790a 7468 6520 covered by.the
51
+ 0x0320: 474e 5520 4c69 6272 6172 7920 4765 6e65 GNU Library Gene
52
+ 0x0330: 7261 6c20 5075 626c 6963 204c 6963 656e ral Public Licen
53
+ 0x0340: 7365 2069 6e73 7465 6164 2e29 2020 596f se instead.) Yo
54
+ 0x0350: 7520 6361 6e20 6170 706c 7920 6974 2074 u can apply it t
55
+ 0x0360: 6f0a 796f 7572 2070 726f 6772 616d 732c o.your programs,
56
+ 0x0370: 2074 6f6f 2e0a 0a20 2057 6865 6e20 7765 too... When we
57
+ 0x0380: 2073 7065 616b 206f 6620 6672 6565 2073 speak of free s
58
+ 0x0390: 6f66 7477 6172 652c 2077 6520 6172 6520 oftware, we are
59
+ 0x03a0: 7265 6665 7272 696e 6720 746f 2066 7265 referring to fre
60
+ 0x03b0: 6564 6f6d 2c20 6e6f 740a 7072 6963 652e edom, not.price.
61
+ 0x03c0: 2020 4f75 7220 4765 6e65 7261 6c20 5075 Our General Pu
62
+ 0x03d0: 626c 6963 204c 6963 656e 7365 7320 6172 blic Licenses ar
63
+ 0x03e0: 6520 6465 7369 676e 6564 2074 6f20 6d61 e designed to ma
64
+ 0x03f0: 6b65 2073 7572 6520 7468 6174 2079 6f75 ke sure that you
65
+ 0x0400: 0a68 6176 6520 7468 6520 6672 6565 646f .have the freedo
66
+ 0x0410: 6d20 746f 2064 6973 7472 6962 7574 6520 m to distribute
67
+ 0x0420: 636f 7069 6573 206f 6620 6672 6565 2073 copies of free s
68
+ 0x0430: 6f66 7477 6172 6520 2861 6e64 2063 6861 oftware (and cha
69
+ 0x0440: 7267 6520 666f 720a 7468 6973 2073 6572 rge for.this ser
70
+ 0x0450: 7669 6365 2069 6620 796f 7520 7769 7368 vice if you wish
71
+ 0x0460: 292c 2074 6861 7420 796f 7520 7265 6365 ), that you rece
72
+ 0x0470: 6976 6520 736f 7572 6365 2063 6f64 6520 ive source code
73
+ 0x0480: 6f72 2063 616e 2067 6574 2069 740a 6966 or can get it.if
74
+ 0x0490: 2079 6f75 2077 616e 7420 6974 2c20 7468 you want it, th
75
+ 0x04a0: 6174 2079 6f75 2063 616e 2063 6861 6e67 at you can chang
76
+ 0x04b0: 6520 7468 6520 736f 6674 7761 7265 206f e the software o
77
+ 0x04c0: 7220 7573 6520 7069 6563 6573 206f 6620 r use pieces of
78
+ 0x04d0: 6974 0a69 6e20 6e65 7720 6672 6565 2070 it.in new free p
79
+ 0x04e0: 726f 6772 616d 733b 2061 6e64 2074 6861 rograms; and tha
80
+ 0x04f0: 7420 796f 7520 6b6e 6f77 2079 6f75 2063 t you know you c
81
+ 0x0500: 616e 2064 6f20 7468 6573 6520 7468 696e an do these thin
82
+ 0x0510: 6773 2e0a 0a20 2054 6f20 7072 6f74 6563 gs... To protec
83
+ 0x0520: 7420 796f 7572 2072 6967 6874 732c 2077 t your rights, w
84
+ 0x0530: 6520 6e65 6564 2074 6f20 6d61 6b65 2072 e need to make r
85
+ 0x0540: 6573 7472 6963 7469 6f6e 7320 7468 6174 estrictions that
86
+ 0x0550: 2066 6f72 6269 640a 616e 796f 6e65 2074 forbid.anyone t
87
+ 0x0560: 6f20 6465 6e79 2079 6f75 2074 6865 7365 o deny you these
88
+ 0x0570: 2072 6967 6874 7320 6f72 2074 6f20 6173 rights or to as
89
+ 0x0580: 6b20 796f 7520 746f 2073 7572 7265 6e64 k you to surrend
90
+ 0x0590: 6572 2074 6865 2072 6967 6874 732e 0a54 er the rights..T
91
+ 0x05a0: 6865 7365 2072 6573 7472 6963 7469 6f6e hese restriction
92
+ 0x05b0: 7320 7472 616e 736c 6174 6520 746f 2063 s translate to c
93
+ 0x05c0: 6572 7461 696e 2072 6573 706f 6e73 6962 ertain responsib
94
+ 0x05d0: 696c 6974 6965 7320 666f 7220 796f 7520 ilities for you
95
+ 0x05e0: 6966 2079 6f75 0a64 6973 7472 6962 7574 if you.distribut
96
+ 0x05f0: 6520 636f 7069 6573 206f 6620 7468 6520 e copies of the
97
+ 0x0600: 736f 6674 7761 7265 2c20 6f72 2069 6620 software, or if
98
+ 0x0610: 796f 7520 6d6f 6469 6679 2069 742e 0a0a you modify it...
99
+ 0x0620: 2020 466f 7220 6578 616d 706c 652c 2069 For example, i
100
+ 0x0630: 6620 796f 7520 6469 7374 7269 6275 7465 f you distribute
101
+ 0x0640: 2063 6f70 6965 7320 6f66 2073 7563 6820 copies of such
102
+ 0x0650: 6120 7072 6f67 7261 6d2c 2077 6865 7468 a program, wheth
103
+ 0x0660: 6572 0a67 7261 7469 7320 6f72 2066 6f72 er.gratis or for
104
+ 0x0670: 2061 2066 6565 2c20 796f 7520 6d75 7374 a fee, you must
105
+ 0x0680: 2067 6976 6520 7468 6520 7265 6369 7069 give the recipi
106
+ 0x0690: 656e 7473 2061 6c6c 2074 6865 2072 6967 ents all the rig
107
+ 0x06a0: 6874 7320 7468 6174 0a79 6f75 2068 6176 hts that.you hav
108
+ 0x06b0: 652e 2020 596f 7520 6d75 7374 206d 616b e. You must mak
109
+ 0x06c0: 6520 7375 7265 2074 6861 7420 7468 6579 e sure that they
110
+ 0x06d0: 2c20 746f 6f2c 2072 6563 6569 7665 206f , too, receive o
111
+ 0x06e0: 7220 6361 6e20 6765 7420 7468 650a 736f r can get the.so
112
+ 0x06f0: 7572 6365 2063 6f64 652e 2020 416e 6420 urce code. And
113
+ 0x0700: 796f 7520 6d75 7374 2073 686f 7720 7468 you must show th
114
+ 0x0710: 656d 2074 6865 7365 2074 6572 6d73 2073 em these terms s
115
+ 0x0720: 6f20 7468 6579 206b 6e6f 7720 7468 6569 o they know thei
116
+ 0x0730: 720a 7269 6768 7473 2e0a 0a20 2057 6520 r.rights... We
117
+ 0x0740: 7072 6f74 6563 7420 796f 7572 2072 6967 protect your rig
118
+ 0x0750: 6874 7320 7769 7468 2074 776f 2073 7465 hts with two ste
119
+ 0x0760: 7073 3a20 2831 2920 636f 7079 7269 6768 ps: (1) copyrigh
120
+ 0x0770: 7420 7468 6520 736f 6674 7761 7265 2c20 t the software,
121
+ 0x0780: 616e 640a 2832 2920 6f66 6665 7220 796f and.(2) offer yo
122
+ 0x0790: 7520 7468 6973 206c 6963 656e 7365 2077 u this license w
123
+ 0x07a0: 6869 6368 2067 6976 6573 2079 6f75 206c hich gives you l
124
+ 0x07b0: 6567 616c 2070 6572 6d69 7373 696f 6e20 egal permission
125
+ 0x07c0: 746f 2063 6f70 792c 0a64 6973 7472 6962 to copy,.distrib
126
+ 0x07d0: 7574 6520 616e 642f 6f72 206d 6f64 6966 ute and/or modif
127
+ 0x07e0: 7920 7468 6520 736f 6674 7761 7265 2e0a y the software..
128
+ 0x07f0: 0a20 2041 6c73 6f2c 2066 6f72 2065 6163 . Also, for eac
129
+
130
+ 0x0000: 6820 6175 7468 6f72 2773 2070 726f 7465 h author's prote
131
+ 0x0010: 6374 696f 6e20 616e 6420 6f75 7273 2c20 ction and ours,
132
+ 0x0020: 7765 2077 616e 7420 746f 206d 616b 6520 we want to make
133
+ 0x0030: 6365 7274 6169 6e0a 7468 6174 2065 7665 certain.that eve
134
+ 0x0040: 7279 6f6e 6520 756e 6465 7273 7461 6e64 ryone understand
135
+ 0x0050: 7320 7468 6174 2074 6865 7265 2069 7320 s that there is
136
+ 0x0060: 6e6f 2077 6172 7261 6e74 7920 666f 7220 no warranty for
137
+ 0x0070: 7468 6973 2066 7265 650a 736f 6674 7761 this free.softwa
138
+ 0x0080: 7265 2e20 2049 6620 7468 6520 736f 6674 re. If the soft
139
+ 0x0090: 7761 7265 2069 7320 6d6f 6469 6669 6564 ware is modified
140
+ 0x00a0: 2062 7920 736f 6d65 6f6e 6520 656c 7365 by someone else
141
+ 0x00b0: 2061 6e64 2070 6173 7365 6420 6f6e 2c20 and passed on,
142
+ 0x00c0: 7765 0a77 616e 7420 6974 7320 7265 6369 we.want its reci
143
+ 0x00d0: 7069 656e 7473 2074 6f20 6b6e 6f77 2074 pients to know t
144
+ 0x00e0: 6861 7420 7768 6174 2074 6865 7920 6861 hat what they ha
145
+ 0x00f0: 7665 2069 7320 6e6f 7420 7468 6520 6f72 ve is not the or
146
+ 0x0100: 6967 696e 616c 2c20 736f 0a74 6861 7420 iginal, so.that
147
+ 0x0110: 616e 7920 7072 6f62 6c65 6d73 2069 6e74 any problems int
148
+ 0x0120: 726f 6475 6365 6420 6279 206f 7468 6572 roduced by other
149
+ 0x0130: 7320 7769 6c6c 206e 6f74 2072 6566 6c65 s will not refle
150
+ 0x0140: 6374 206f 6e20 7468 6520 6f72 6967 696e ct on the origin
151
+ 0x0150: 616c 0a61 7574 686f 7273 2720 7265 7075 al.authors' repu
152
+ 0x0160: 7461 7469 6f6e 732e 0a0a 2020 4669 6e61 tations... Fina
153
+ 0x0170: 6c6c 792c 2061 6e79 2066 7265 6520 7072 lly, any free pr
154
+ 0x0180: 6f67 7261 6d20 6973 2074 6872 6561 7465 ogram is threate
155
+ 0x0190: 6e65 6420 636f 6e73 7461 6e74 6c79 2062 ned constantly b
156
+ 0x01a0: 7920 736f 6674 7761 7265 0a70 6174 656e y software.paten
157
+ 0x01b0: 7473 2e20 2057 6520 7769 7368 2074 6f20 ts. We wish to
158
+ 0x01c0: 6176 6f69 6420 7468 6520 6461 6e67 6572 avoid the danger
159
+ 0x01d0: 2074 6861 7420 7265 6469 7374 7269 6275 that redistribu
160
+ 0x01e0: 746f 7273 206f 6620 6120 6672 6565 0a70 tors of a free.p
161
+ 0x01f0: 726f 6772 616d 2077 696c 6c20 696e 6469 rogram will indi
162
+ 0x0200: 7669 6475 616c 6c79 206f 6274 6169 6e20 vidually obtain
163
+ 0x0210: 7061 7465 6e74 206c 6963 656e 7365 732c patent licenses,
164
+ 0x0220: 2069 6e20 6566 6665 6374 206d 616b 696e in effect makin
165
+ 0x0230: 6720 7468 650a 7072 6f67 7261 6d20 7072 g the.program pr
166
+ 0x0240: 6f70 7269 6574 6172 792e 2020 546f 2070 oprietary. To p
167
+ 0x0250: 7265 7665 6e74 2074 6869 732c 2077 6520 revent this, we
168
+ 0x0260: 6861 7665 206d 6164 6520 6974 2063 6c65 have made it cle
169
+ 0x0270: 6172 2074 6861 7420 616e 790a 7061 7465 ar that any.pate
170
+ 0x0280: 6e74 206d 7573 7420 6265 206c 6963 656e nt must be licen
171
+ 0x0290: 7365 6420 666f 7220 6576 6572 796f 6e65 sed for everyone
172
+ 0x02a0: 2773 2066 7265 6520 7573 6520 6f72 206e 's free use or n
173
+ 0x02b0: 6f74 206c 6963 656e 7365 6420 6174 2061 ot licensed at a
174
+ 0x02c0: 6c6c 2e0a 0a20 2054 6865 2070 7265 6369 ll... The preci
175
+ 0x02d0: 7365 2074 6572 6d73 2061 6e64 2063 6f6e se terms and con
176
+ 0x02e0: 6469 7469 6f6e 7320 666f 7220 636f 7079 ditions for copy
177
+ 0x02f0: 696e 672c 2064 6973 7472 6962 7574 696f ing, distributio
178
+ 0x0300: 6e20 616e 640a 6d6f 6469 6669 6361 7469 n and.modificati
179
+ 0x0310: 6f6e 2066 6f6c 6c6f 772e 0a0c 0a09 0920 on follow......
180
+ 0x0320: 2020 2047 4e55 2047 454e 4552 414c 2050 GNU GENERAL P
181
+ 0x0330: 5542 4c49 4320 4c49 4345 4e53 450a 2020 UBLIC LICENSE.
182
+ 0x0340: 2054 4552 4d53 2041 4e44 2043 4f4e 4449 TERMS AND CONDI
183
+ 0x0350: 5449 4f4e 5320 464f 5220 434f 5059 494e TIONS FOR COPYIN
184
+ 0x0360: 472c 2044 4953 5452 4942 5554 494f 4e20 G, DISTRIBUTION
185
+ 0x0370: 414e 4420 4d4f 4449 4649 4341 5449 4f4e AND MODIFICATION
186
+ 0x0380: 0a0a 2020 302e 2054 6869 7320 4c69 6365 .. 0. This Lice
187
+ 0x0390: 6e73 6520 6170 706c 6965 7320 746f 2061 nse applies to a
188
+ 0x03a0: 6e79 2070 726f 6772 616d 206f 7220 6f74 ny program or ot
189
+ 0x03b0: 6865 7220 776f 726b 2077 6869 6368 2063 her work which c
190
+ 0x03c0: 6f6e 7461 696e 730a 6120 6e6f 7469 6365 ontains.a notice
191
+ 0x03d0: 2070 6c61 6365 6420 6279 2074 6865 2063 placed by the c
192
+ 0x03e0: 6f70 7972 6967 6874 2068 6f6c 6465 7220 opyright holder
193
+ 0x03f0: 7361 7969 6e67 2069 7420 6d61 7920 6265 saying it may be
194
+ 0x0400: 2064 6973 7472 6962 7574 6564 0a75 6e64 distributed.und
195
+ 0x0410: 6572 2074 6865 2074 6572 6d73 206f 6620 er the terms of
196
+ 0x0420: 7468 6973 2047 656e 6572 616c 2050 7562 this General Pub
197
+ 0x0430: 6c69 6320 4c69 6365 6e73 652e 2020 5468 lic License. Th
198
+ 0x0440: 6520 2250 726f 6772 616d 222c 2062 656c e "Program", bel
199
+ 0x0450: 6f77 2c0a 7265 6665 7273 2074 6f20 616e ow,.refers to an
200
+ 0x0460: 7920 7375 6368 2070 726f 6772 616d 206f y such program o
201
+ 0x0470: 7220 776f 726b 2c20 616e 6420 6120 2277 r work, and a "w
202
+ 0x0480: 6f72 6b20 6261 7365 6420 6f6e 2074 6865 ork based on the
203
+ 0x0490: 2050 726f 6772 616d 220a 6d65 616e 7320 Program".means
204
+ 0x04a0: 6569 7468 6572 2074 6865 2050 726f 6772 either the Progr
205
+ 0x04b0: 616d 206f 7220 616e 7920 6465 7269 7661 am or any deriva
206
+ 0x04c0: 7469 7665 2077 6f72 6b20 756e 6465 7220 tive work under
207
+ 0x04d0: 636f 7079 7269 6768 7420 6c61 773a 0a74 copyright law:.t
208
+ 0x04e0: 6861 7420 6973 2074 6f20 7361 792c 2061 hat is to say, a
209
+ 0x04f0: 2077 6f72 6b20 636f 6e74 6169 6e69 6e67 work containing
210
+ 0x0500: 2074 6865 2050 726f 6772 616d 206f 7220 the Program or
211
+ 0x0510: 6120 706f 7274 696f 6e20 6f66 2069 742c a portion of it,
212
+ 0x0520: 0a65 6974 6865 7220 7665 7262 6174 696d .either verbatim
213
+ 0x0530: 206f 7220 7769 7468 206d 6f64 6966 6963 or with modific
214
+ 0x0540: 6174 696f 6e73 2061 6e64 2f6f 7220 7472 ations and/or tr
215
+ 0x0550: 616e 736c 6174 6564 2069 6e74 6f20 616e anslated into an
216
+ 0x0560: 6f74 6865 720a 6c61 6e67 7561 6765 2e20 other.language.
217
+ 0x0570: 2028 4865 7265 696e 6166 7465 722c 2074 (Hereinafter, t
218
+ 0x0580: 7261 6e73 6c61 7469 6f6e 2069 7320 696e ranslation is in
219
+ 0x0590: 636c 7564 6564 2077 6974 686f 7574 206c cluded without l
220
+ 0x05a0: 696d 6974 6174 696f 6e20 696e 0a74 6865 imitation in.the
221
+ 0x05b0: 2074 6572 6d20 226d 6f64 6966 6963 6174 term "modificat
222
+ 0x05c0: 696f 6e22 2e29 2020 4561 6368 206c 6963 ion".) Each lic
223
+ 0x05d0: 656e 7365 6520 6973 2061 6464 7265 7373 ensee is address
224
+ 0x05e0: 6564 2061 7320 2279 6f75 222e 0a0a 4163 ed as "you"...Ac
225
+ 0x05f0: 7469 7669 7469 6573 206f 7468 6572 2074 tivities other t
226
+ 0x0600: 6861 6e20 636f 7079 696e 672c 2064 6973 han copying, dis
227
+ 0x0610: 7472 6962 7574 696f 6e20 616e 6420 6d6f tribution and mo
228
+ 0x0620: 6469 6669 6361 7469 6f6e 2061 7265 206e dification are n
229
+ 0x0630: 6f74 0a63 6f76 6572 6564 2062 7920 7468 ot.covered by th
230
+ 0x0640: 6973 204c 6963 656e 7365 3b20 7468 6579 is License; they
231
+ 0x0650: 2061 7265 206f 7574 7369 6465 2069 7473 are outside its
232
+ 0x0660: 2073 636f 7065 2e20 2054 6865 2061 6374 scope. The act
233
+ 0x0670: 206f 660a 7275 6e6e 696e 6720 7468 6520 of.running the
234
+ 0x0680: 5072 6f67 7261 6d20 6973 206e 6f74 2072 Program is not r
235
+ 0x0690: 6573 7472 6963 7465 642c 2061 6e64 2074 estricted, and t
236
+ 0x06a0: 6865 206f 7574 7075 7420 6672 6f6d 2074 he output from t
237
+ 0x06b0: 6865 2050 726f 6772 616d 0a69 7320 636f he Program.is co
238
+ 0x06c0: 7665 7265 6420 6f6e 6c79 2069 6620 6974 vered only if it
239
+ 0x06d0: 7320 636f 6e74 656e 7473 2063 6f6e 7374 s contents const
240
+ 0x06e0: 6974 7574 6520 6120 776f 726b 2062 6173 itute a work bas
241
+ 0x06f0: 6564 206f 6e20 7468 650a 5072 6f67 7261 ed on the.Progra
242
+ 0x0700: 6d20 2869 6e64 6570 656e 6465 6e74 206f m (independent o
243
+ 0x0710: 6620 6861 7669 6e67 2062 6565 6e20 6d61 f having been ma
244
+ 0x0720: 6465 2062 7920 7275 6e6e 696e 6720 7468 de by running th
245
+ 0x0730: 6520 5072 6f67 7261 6d29 2e0a 5768 6574 e Program)..Whet
246
+ 0x0740: 6865 7220 7468 6174 2069 7320 7472 7565 her that is true
247
+ 0x0750: 2064 6570 656e 6473 206f 6e20 7768 6174 depends on what
248
+ 0x0760: 2074 6865 2050 726f 6772 616d 2064 6f65 the Program doe
249
+ 0x0770: 732e 0a0a 2020 312e 2059 6f75 206d 6179 s... 1. You may
250
+ 0x0780: 2063 6f70 7920 616e 6420 6469 7374 7269 copy and distri
251
+ 0x0790: 6275 7465 2076 6572 6261 7469 6d20 636f bute verbatim co
252
+ 0x07a0: 7069 6573 206f 6620 7468 6520 5072 6f67 pies of the Prog
253
+ 0x07b0: 7261 6d27 730a 736f 7572 6365 2063 6f64 ram's.source cod
254
+ 0x07c0: 6520 6173 2079 6f75 2072 6563 6569 7665 e as you receive
255
+ 0x07d0: 2069 742c 2069 6e20 616e 7920 6d65 6469 it, in any medi
256
+ 0x07e0: 756d 2c20 7072 6f76 6964 6564 2074 6861 um, provided tha
257
+ 0x07f0: 7420 796f 750a 636f 6e73 7069 6375 6f75 t you.conspicuou
258
+
Binary file
@@ -0,0 +1,3 @@
1
+ FILE "ISOFS-M1.BIN" BINARY
2
+ TRACK 01 MODE1/2352
3
+ INDEX 01 00:00:00
@@ -0,0 +1,57 @@
1
+ This is free software; see the source for copying conditions.
2
+ There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
3
+ PARTICULAR PURPOSE.
4
+ Hardware : Disk Image
5
+ Can eject : No
6
+ Can close tray : No
7
+ Can disable manual eject : No
8
+ Can select juke-box disc : No
9
+
10
+ Can set drive speed : No
11
+ Can detect if CD changed : No
12
+ Can read multiple sessions : No
13
+ Can hard reset device : No
14
+
15
+ Reading....
16
+ Can play audio : Yes
17
+ Can read CD-R : Yes
18
+ Can read CD-RW : Yes
19
+ Can read DVD-ROM : No
20
+
21
+ Writing....
22
+ Can write CD-RW : No
23
+ Can write DVD-R : No
24
+ Can write DVD-RAM : No
25
+ Can write DVD-RW : No
26
+ Can write DVD+RW : No
27
+ __________________________________
28
+
29
+ CD-ROM Track List (1 - 1)
30
+ #: MSF LSN Type Green?
31
+ 1: 00:02:00 000000 data false
32
+ 170: 00:06:02 000302 leadout
33
+ Media Catalog Number (MCN): not available
34
+ __________________________________
35
+ CD Analysis Report
36
+ CD-ROM with ISO 9660 filesystem
37
+ ISO 9660: 64 blocks, label `CDROM '
38
+ Application: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING
39
+ Preparer :
40
+ Publisher :
41
+ System : LINUX
42
+ Volume : CDROM
43
+ Volume Set :
44
+ ISO9660 filesystem
45
+ root dir in PVD set to lsn 23
46
+
47
+ /:
48
+ Apr 20 2003 07:26 .
49
+ Apr 20 2003 07:26 ..
50
+ Jul 29 2002 08:39 copying
51
+ Apr 20 2003 12:18 doc
52
+
53
+ /DOC/:
54
+ Apr 20 2003 12:18 .
55
+ Apr 20 2003 07:26 ..
56
+ Apr 20 2003 12:18 readme.txt
57
+
@@ -0,0 +1,4 @@
1
+ CD_ROM
2
+
3
+ TRACK MODE1_RAW
4
+ FILE "isofs-m1.bin" 00:00:00 00:00:00
@@ -0,0 +1,5 @@
1
+ // simplest cue sheet
2
+
3
+ TRACK AUDIO
4
+ NO COPY // so that all CTL flags are 0
5
+ SILENCE 0:0:74 // frames are just under 75
@@ -0,0 +1,6 @@
1
+ // additional pre-gap for track 1
2
+
3
+ TRACK AUDIO
4
+ NO COPY // so that all CTL flags are 0
5
+ FILE "cdda.bin" 0:59:0 // Seconds are just under 60
6
+ START 0:10:0 // 10 second pre-gap
@@ -0,0 +1,11 @@
1
+ // simplest cue sheet for two tracks
2
+
3
+ TRACK AUDIO
4
+ NO COPY // so that all CTL flags are 0
5
+ FILE "cdda.bin" 180:0:0 // 180 for number of minutes is okay, although
6
+ // it is not for a second or a frame value.
7
+
8
+ TRACK AUDIO
9
+ NO COPY // so that all CTL flags are 0
10
+ FILE "cdda.bin" 1:0:0
11
+
@@ -0,0 +1,8 @@
1
+ // non default CTL flag of track 1
2
+
3
+ TRACK AUDIO
4
+ COPY
5
+ PRE_EMPHASIS
6
+ FOUR_CHANNEL_AUDIO
7
+ FILE "cdda.bin" 1:0:0
8
+
@@ -0,0 +1,8 @@
1
+ // test catalog number
2
+
3
+ CATALOG "1234567890123"
4
+
5
+ TRACK AUDIO
6
+ NO COPY
7
+ FILE "cdda.bin" 1:0:0
8
+
@@ -0,0 +1,7 @@
1
+ // test ISRC code
2
+
3
+
4
+ TRACK AUDIO
5
+ NO COPY
6
+ ISRC "DEMUA9800001"
7
+ FILE "cdda.bin" 1:0:0
@@ -0,0 +1,12 @@
1
+ // check two tracks with pre-gap and ISRC
2
+
3
+
4
+ TRACK AUDIO
5
+ NO COPY
6
+ FILE "cdda.bin" 1:0:0
7
+
8
+ TRACK AUDIO
9
+ NO COPY
10
+ ISRC "DEMUA9800001"
11
+ FILE "cdda.bin" 1:0:0
12
+ START 0:5:0 // pre-gap
@@ -0,0 +1,14 @@
1
+ // check index increments
2
+
3
+
4
+ TRACK AUDIO
5
+ NO COPY
6
+ FILE "cdda.bin" 0:10:0
7
+ INDEX 1:0:0
8
+ INDEX 2:0:0
9
+
10
+
11
+ TRACK AUDIO
12
+ NO COPY
13
+ FILE "cdda.bin" 0:10:0
14
+ START 0:5:0 // pre-gap