#include <sys/types.h>
Include dependency graph for libburn.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Data Structures | |
struct | burn_toc_entry |
Information about a track on a disc - this is from the q sub channel of the lead-in area of a disc. More... | |
struct | burn_source |
Data source for tracks. More... | |
struct | burn_drive_info |
Information on a drive in the system. More... | |
struct | burn_message |
Messages from the library. More... | |
union | burn_message::detail |
The actual message. More... | |
struct | burn_progress |
Operation progress report. More... | |
Defines | |
#define | BURN_CDROM 0 |
Session format for normal audio or data discs. | |
#define | BURN_CDI 0x10 |
Session format for obsolete CD-I discs. | |
#define | BURN_CDXA 0x20 |
Session format for CDROM-XA discs. | |
#define | BURN_POS_END 100 |
#define | BURN_MODE_BITS 127 |
Mask for mode bits. | |
#define | BURN_MODE0 (1 << 0) |
Track mode - mode 0 data 0 bytes of user data. | |
#define | BURN_MODE_RAW (1 << 1) |
Track mode - mode "raw" - all 2352 bytes supplied by app FOR DATA TRACKS ONLY! | |
#define | BURN_MODE1 (1 << 2) |
Track mode - mode 1 data 2048 bytes user data, and all the LEC money can buy. | |
#define | BURN_MODE2 (1 << 3) |
Track mode - mode 2 data defaults to formless, 2336 bytes of user data, unprotected | with a data form if required. | |
#define | BURN_FORM1 (1 << 4) |
Track mode modifier - Form 1, | with MODE2 for reasonable results 2048 bytes of user data, 4 bytes of subheader. | |
#define | BURN_FORM2 (1 << 5) |
Track mode modifier - Form 2, | with MODE2 for reasonable results lots of user data. | |
#define | BURN_AUDIO (1 << 6) |
Track mode - audio 2352 bytes per sector. | |
#define | BURN_4CH (1 << 7) |
Track mode modifier - 4 channel audio. | |
#define | BURN_COPY (1 << 8) |
Track mode modifier - Digital copy permitted, can be set on any track. | |
#define | BURN_PREEMPHASIS (1 << 9) |
Track mode modifier - 50/15uS pre-emphasis. | |
#define | BURN_SUBCODE_P16 (1 << 10) |
Input mode modifier - subcodes present packed 16. | |
#define | BURN_SUBCODE_P96 (1 << 11) |
Input mode modifier - subcodes present packed 96. | |
#define | BURN_SUBCODE_R96 (1 << 12) |
Input mode modifier - subcodes present raw 96. | |
#define | BURN_DRIVE_WHITELIST_LEN 255 |
Maximum number of particularly permissible drive addresses. | |
#define | BURN_DRIVE_ADR_LEN 1024 |
Maximum length+1 to expect with a persistent drive address string. | |
Enumerations | |
enum | burn_write_types { BURN_WRITE_PACKET, BURN_WRITE_TAO, BURN_WRITE_SAO, BURN_WRITE_RAW } |
Possible disc writing style/modes. More... | |
enum | burn_block_types { BURN_BLOCK_RAW0 = 1, BURN_BLOCK_RAW16 = 2, BURN_BLOCK_RAW96P = 4, BURN_BLOCK_RAW96R = 8, BURN_BLOCK_MODE1 = 256, BURN_BLOCK_MODE2R = 512, BURN_BLOCK_MODE2_PATHETIC = 1024, BURN_BLOCK_MODE2_LAME = 2048, BURN_BLOCK_MODE2_OBSCURE = 4096, BURN_BLOCK_MODE2_OK = 8192, BURN_BLOCK_SAO = 16384 } |
Data format to send to the drive. More... | |
enum | burn_disc_status { BURN_DISC_UNREADY, BURN_DISC_BLANK, BURN_DISC_EMPTY, BURN_DISC_APPENDABLE, BURN_DISC_FULL } |
Possible status' of the drive in regard to the disc in it. More... | |
enum | burn_message_type { BURN_MESSAGE_INFO, BURN_MESSAGE_WARNING, BURN_MESSAGE_ERROR } |
Possible types of messages form the library. More... | |
enum | burn_message_info { BURN_INFO_FOO } |
Possible information messages. More... | |
enum | burn_message_warning { BURN_WARNING_FOO } |
Possible warning messages. More... | |
enum | burn_message_error { BURN_ERROR_CANCELLED } |
Possible error messages. More... | |
enum | burn_source_status { BURN_SOURCE_OK, BURN_SOURCE_EOF, BURN_SOURCE_FAILED } |
Possible data source return values. More... | |
enum | burn_drive_status { BURN_DRIVE_IDLE, BURN_DRIVE_SPAWNING, BURN_DRIVE_READING, BURN_DRIVE_WRITING, BURN_DRIVE_WRITING_LEADIN, BURN_DRIVE_WRITING_LEADOUT, BURN_DRIVE_ERASING, BURN_DRIVE_GRABBING } |
Possible busy states for a drive. More... | |
Functions | |
int | burn_initialize (void) |
Initialize the library. | |
void | burn_finish (void) |
Shutdown the library. | |
void | burn_set_verbosity (int level) |
Set the verbosity level of the library. | |
void | burn_preset_device_open (int exclusive, int blocking, int abort_on_busy) |
Set parameters for behavior on opening device files. | |
burn_message * | burn_get_message (void) |
Returns a newly allocated burn_message structure. | |
void | burn_message_free (struct burn_message *msg) |
Frees a burn_message structure. | |
int | burn_drive_scan_and_grab (struct burn_drive_info *drive_infos[], char *adr, int load) |
Aquire a drive with known persistent address.This is the sysadmin friendly way to open one drive and to leave all others untouched. | |
int | burn_drive_add_whitelist (char *device_address) |
Add a device to the list of permissible drives. | |
void | burn_drive_clear_whitelist (void) |
Remove all drives from whitelist. | |
int | burn_drive_scan (struct burn_drive_info *drive_infos[], unsigned int *n_drives) |
Scan for drives. | |
int | burn_drive_info_forget (struct burn_drive_info *drive_info, int force) |
Release memory about a single drive and any exclusive lock on it. | |
void | burn_drive_info_free (struct burn_drive_info drive_infos[]) |
Free a burn_drive_info array returned by burn_drive_scan. | |
int | burn_drive_get_adr (struct burn_drive_info *drive_info, char adr[]) |
Inquire the persistent address of the given drive. | |
int | burn_drive_grab (struct burn_drive *drive, int load) |
Grab a drive. | |
void | burn_drive_release (struct burn_drive *drive, int eject) |
Release a drive. | |
enum burn_disc_status | burn_disc_get_status (struct burn_drive *drive) |
Returns what kind of disc a drive is holding. | |
int | burn_disc_erasable (struct burn_drive *d) |
Tells whether a disc can be erased or not. | |
enum burn_drive_status | burn_drive_get_status (struct burn_drive *drive, struct burn_progress *p) |
Returns the progress and status of a drive. | |
burn_write_opts * | burn_write_opts_new (struct burn_drive *drive) |
Creates a write_opts struct for burning to the specified drive must be freed with burn_write_opts_free. | |
void | burn_write_opts_free (struct burn_write_opts *opts) |
Frees a write_opts struct created with burn_write_opts_new. | |
burn_read_opts * | burn_read_opts_new (struct burn_drive *drive) |
Creates a write_opts struct for reading from the specified drive must be freed with burn_write_opts_free. | |
void | burn_read_opts_free (struct burn_read_opts *opts) |
Frees a read_opts struct created with burn_read_opts_new. | |
void | burn_disc_erase (struct burn_drive *drive, int fast) |
Erase a disc in the drive. | |
void | burn_disc_read (struct burn_drive *drive, const struct burn_read_opts *o) |
Read a disc from the drive and write it to an fd pair. | |
void | burn_disc_write (struct burn_write_opts *o, struct burn_disc *disc) |
Write a disc in the drive. | |
void | burn_drive_cancel (struct burn_drive *drive) |
Cancel an operation on a drive. | |
int | burn_msf_to_sectors (int m, int s, int f) |
Convert a minute-second-frame (MSF) value to sector count. | |
void | burn_sectors_to_msf (int sectors, int *m, int *s, int *f) |
Convert a sector count to minute-second-frame (MSF). | |
int | burn_msf_to_lba (int m, int s, int f) |
Convert a minute-second-frame (MSF) value to an lba. | |
void | burn_lba_to_msf (int lba, int *m, int *s, int *f) |
Convert an lba to minute-second-frame (MSF). | |
burn_disc * | burn_disc_create (void) |
Create a new disc (for DAO recording). | |
void | burn_disc_free (struct burn_disc *d) |
Delete disc and decrease the reference count on all its sessions. | |
burn_session * | burn_session_create (void) |
Create a new session (For SAO at once recording, or to be added to a disc for DAO). | |
void | burn_session_free (struct burn_session *s) |
Free a session (and decrease reference count on all tracks inside). | |
int | burn_disc_add_session (struct burn_disc *d, struct burn_session *s, unsigned int pos) |
Add a session to a disc at a specific position, increasing the sessions's reference count. | |
int | burn_disc_remove_session (struct burn_disc *d, struct burn_session *s) |
Remove a session from a disc. | |
burn_track * | burn_track_create (void) |
Create a track (for TAO recording, or to put in a session). | |
void | burn_track_free (struct burn_track *t) |
Free a track. | |
int | burn_session_add_track (struct burn_session *s, struct burn_track *t, unsigned int pos) |
Add a track to a session at specified position. | |
int | burn_session_remove_track (struct burn_session *s, struct burn_track *t) |
Remove a track from a session. | |
void | burn_track_define_data (struct burn_track *t, int offset, int tail, int pad, int mode) |
Define the data in a track. | |
void | burn_track_set_isrc (struct burn_track *t, char *country, char *owner, unsigned char year, unsigned int serial) |
Set the ISRC details for a track. | |
void | burn_track_clear_isrc (struct burn_track *t) |
Disable ISRC parameters for a track. | |
void | burn_session_hide_first_track (struct burn_session *s, int onoff) |
Hide the first track in the "pre gap" of the disc. | |
burn_disc * | burn_drive_get_disc (struct burn_drive *d) |
Get the drive's disc struct - free when done. | |
enum burn_source_status | burn_track_set_source (struct burn_track *t, struct burn_source *s) |
Set the track's data source. | |
void | burn_source_free (struct burn_source *s) |
Free a burn_source (decrease its refcount and maybe free it). | |
burn_source * | burn_file_source_new (const char *path, const char *subpath) |
Creates a data source for an image file (and maybe subcode file). | |
burn_source * | burn_fd_source_new (int datafd, int subfd, off_t size) |
Creates a data source for an image file (a track) from an open readable filedescriptor, an eventually open readable subcodes file descriptor and eventually a fixed size in bytes. | |
int | burn_track_get_sectors (struct burn_track *) |
Tells how long a track will be on disc. | |
void | burn_drive_set_speed (struct burn_drive *d, int read, int write) |
Sets drive read and write speed. | |
void | burn_structure_print_disc (struct burn_disc *d) |
void | burn_structure_print_session (struct burn_session *s) |
void | burn_structure_print_track (struct burn_track *t) |
int | burn_write_opts_set_write_type (struct burn_write_opts *opts, enum burn_write_types write_type, int block_type) |
Sets the write type for the write_opts struct. | |
void | burn_write_opts_set_toc_entries (struct burn_write_opts *opts, int count, struct burn_toc_entry *toc_entries) |
Supplies toc entries for writing - not normally required for cd mastering. | |
void | burn_write_opts_set_format (struct burn_write_opts *opts, int format) |
Sets the session format for a disc. | |
int | burn_write_opts_set_simulate (struct burn_write_opts *opts, int sim) |
Sets the simulate value for the write_opts struct. | |
int | burn_write_opts_set_underrun_proof (struct burn_write_opts *opts, int underrun_proof) |
Controls buffer underrun prevention. | |
void | burn_write_opts_set_perform_opc (struct burn_write_opts *opts, int opc) |
Sets whether to use opc or not with the write_opts struct. | |
void | burn_write_opts_set_has_mediacatalog (struct burn_write_opts *opts, int has_mediacatalog) |
void | burn_write_opts_set_mediacatalog (struct burn_write_opts *opts, unsigned char mediacatalog[13]) |
void | burn_read_opts_set_raw (struct burn_read_opts *opts, int raw_mode) |
Sets whether to read in raw mode or not. | |
void | burn_read_opts_set_c2errors (struct burn_read_opts *opts, int c2errors) |
Sets whether to report c2 errors or not. | |
void | burn_read_opts_read_subcodes_audio (struct burn_read_opts *opts, int subcodes_audio) |
Sets whether to read subcodes from audio tracks or not. | |
void | burn_read_opts_read_subcodes_data (struct burn_read_opts *opts, int subcodes_data) |
Sets whether to read subcodes from data tracks or not. | |
void | burn_read_opts_set_hardware_error_recovery (struct burn_read_opts *opts, int hardware_error_recovery) |
Sets whether to recover errors if possible. | |
void | burn_read_opts_report_recovered_errors (struct burn_read_opts *opts, int report_recovered_errors) |
Sets whether to report recovered errors or not. | |
void | burn_read_opts_transfer_damaged_blocks (struct burn_read_opts *opts, int transfer_damaged_blocks) |
Sets whether blocks with unrecoverable errors should be read or not. | |
void | burn_read_opts_set_hardware_error_retries (struct burn_read_opts *opts, unsigned char hardware_error_retries) |
Sets the number of retries to attempt when trying to correct an error. | |
int | burn_drive_get_write_speed (struct burn_drive *d) |
Gets the maximum write speed for a drive. | |
int | burn_drive_get_read_speed (struct burn_drive *d) |
Gets the maximum read speed for a drive. | |
void | burn_track_get_entry (struct burn_track *t, struct burn_toc_entry *entry) |
Gets a copy of the toc_entry structure associated with a track. | |
void | burn_session_get_leadout_entry (struct burn_session *s, struct burn_toc_entry *entry) |
Gets a copy of the toc_entry structure associated with a session's lead out. | |
burn_session ** | burn_disc_get_sessions (struct burn_disc *d, int *num) |
Gets an array of all the sessions for the disc THIS IS NO LONGER VALID AFTER YOU ADD OR REMOVE A SESSION. | |
int | burn_disc_get_sectors (struct burn_disc *d) |
burn_track ** | burn_session_get_tracks (struct burn_session *s, int *num) |
Gets an array of all the tracks for a session THIS IS NO LONGER VALID AFTER YOU ADD OR REMOVE A TRACK. | |
int | burn_session_get_sectors (struct burn_session *s) |
int | burn_track_get_mode (struct burn_track *track) |
Gets the mode of a track. | |
int | burn_session_get_hidefirst (struct burn_session *session) |
Returns whether the first track of a session is hidden in the pregap. | |
void | burn_version (int *major, int *minor, int *micro) |
Returns the library's version in its parts. |
|
Track mode modifier - 4 channel audio.
|
|
Track mode - audio 2352 bytes per sector. may be | with 4ch or preemphasis. NOT TO BE CONFUSED WITH BURN_MODE_RAW Audio data must be 44100Hz 16bit stereo with no riff or other header at beginning. Extra header data will cause pops or clicks. Audio data should also be in little-endian byte order. Big-endian audio data causes static. |
|
Session format for obsolete CD-I discs.
|
|
Session format for normal audio or data discs.
|
|
Session format for CDROM-XA discs.
|
|
Track mode modifier - Digital copy permitted, can be set on any track.
|
|
Maximum length+1 to expect with a persistent drive address string.
Definition at line 573 of file libburn.h. Referenced by libburner_aquire_by_driveno(), and main(). |
|
Maximum number of particularly permissible drive addresses.
|
|
Track mode modifier - Form 1, | with MODE2 for reasonable results 2048 bytes of user data, 4 bytes of subheader.
|
|
Track mode modifier - Form 2, | with MODE2 for reasonable results lots of user data. not much LEC. |
|
Track mode - mode 0 data 0 bytes of user data. it's all 0s. mode 0. get it? HAH |
|
Track mode - mode 1 data 2048 bytes user data, and all the LEC money can buy.
Definition at line 66 of file libburn.h. Referenced by libburner_payload(). |
|
Track mode - mode 2 data defaults to formless, 2336 bytes of user data, unprotected | with a data form if required.
|
|
Mask for mode bits.
|
|
Track mode - mode "raw" - all 2352 bytes supplied by app FOR DATA TRACKS ONLY!
|
|
Definition at line 50 of file libburn.h. Referenced by libburner_payload(). |
|
Track mode modifier - 50/15uS pre-emphasis.
|
|
Input mode modifier - subcodes present packed 16.
|
|
Input mode modifier - subcodes present packed 96.
|
|
Input mode modifier - subcodes present raw 96.
|
|
Data format to send to the drive.
Definition at line 124 of file libburn.h. 00125 { 00126 /** sync, headers, edc/ecc provided by lib/user */ 00127 BURN_BLOCK_RAW0 = 1, 00128 /** sync, headers, edc/ecc and p/q subs provided by lib/user */ 00129 BURN_BLOCK_RAW16 = 2, 00130 /** sync, headers, edc/ecc and packed p-w subs provided by lib/user */ 00131 BURN_BLOCK_RAW96P = 4, 00132 /** sync, headers, edc/ecc and raw p-w subs provided by lib/user */ 00133 BURN_BLOCK_RAW96R = 8, 00134 /** only 2048 bytes of user data provided by lib/user */ 00135 BURN_BLOCK_MODE1 = 256, 00136 /** 2336 bytes of user data provided by lib/user */ 00137 BURN_BLOCK_MODE2R = 512, 00138 /** 2048 bytes of user data provided by lib/user 00139 subheader provided in write parameters 00140 are we ever going to support this shit? I vote no. 00141 (supposed to be supported on all drives...) 00142 */ 00143 BURN_BLOCK_MODE2_PATHETIC = 1024, 00144 /** 2048 bytes of data + 8 byte subheader provided by lib/user 00145 hey, this is also dumb 00146 */ 00147 BURN_BLOCK_MODE2_LAME = 2048, 00148 /** 2324 bytes of data provided by lib/user 00149 subheader provided in write parameters 00150 no sir, I don't like it. 00151 */ 00152 BURN_BLOCK_MODE2_OBSCURE = 4096, 00153 /** 2332 bytes of data supplied by lib/user 00154 8 bytes sub header provided in write parameters 00155 this is the second least suck mode2, and is mandatory for 00156 all drives to support. 00157 */ 00158 BURN_BLOCK_MODE2_OK = 8192, 00159 /** SAO block sizes are based on cue sheet, so use this. */ 00160 BURN_BLOCK_SAO = 16384 00161 };
|
|
Possible status' of the drive in regard to the disc in it.
Definition at line 164 of file libburn.h. 00165 { 00166 /** The current status is not yet known */ 00167 BURN_DISC_UNREADY, 00168 /** The drive holds a blank disc */ 00169 BURN_DISC_BLANK, 00170 /** There is no disc at all in the drive */ 00171 BURN_DISC_EMPTY, 00172 /** There is an incomplete disc in the drive */ 00173 BURN_DISC_APPENDABLE, 00174 /** There is a disc with data on it in the drive */ 00175 BURN_DISC_FULL 00176 };
|
|
Possible busy states for a drive.
Definition at line 222 of file libburn.h. 00223 { 00224 /** The drive is not in an operation */ 00225 BURN_DRIVE_IDLE, 00226 /** The library is spawning the processes to handle a pending 00227 operation (A read/write/etc is about to start but hasn't quite 00228 yet) */ 00229 BURN_DRIVE_SPAWNING, 00230 /** The drive is reading data from a disc */ 00231 BURN_DRIVE_READING, 00232 /** The drive is writing data to a disc */ 00233 BURN_DRIVE_WRITING, 00234 /** The drive is writing Lead-In */ 00235 BURN_DRIVE_WRITING_LEADIN, 00236 /** The drive is writing Lead-Out */ 00237 BURN_DRIVE_WRITING_LEADOUT, 00238 /** The drive is erasing a disc */ 00239 BURN_DRIVE_ERASING, 00240 /** The drive is being grabbed */ 00241 BURN_DRIVE_GRABBING 00242 };
|
|
Possible error messages.
Definition at line 204 of file libburn.h. 00205 { 00206 BURN_ERROR_CANCELLED 00207 };
|
|
Possible information messages.
Definition at line 192 of file libburn.h. 00193 { 00194 BURN_INFO_FOO 00195 };
|
|
Possible types of messages form the library.
Definition at line 179 of file libburn.h. 00180 { 00181 /** Diagnostic/Process information. For the curious user. */ 00182 BURN_MESSAGE_INFO, 00183 /** A warning regarding a possible problem. The user should probably 00184 be notified, but its not fatal. */ 00185 BURN_MESSAGE_WARNING, 00186 /** An error message. This usually means the current process will be 00187 aborted, and the user should definately see these. */ 00188 BURN_MESSAGE_ERROR 00189 };
|
|
Possible warning messages.
Definition at line 198 of file libburn.h. 00199 { 00200 BURN_WARNING_FOO 00201 };
|
|
Possible data source return values.
Definition at line 210 of file libburn.h. 00211 { 00212 /** The source is ok */ 00213 BURN_SOURCE_OK, 00214 /** The source is at end of file */ 00215 BURN_SOURCE_EOF, 00216 /** The source is unusable */ 00217 BURN_SOURCE_FAILED 00218 };
|
|
Possible disc writing style/modes.
Definition at line 102 of file libburn.h. 00103 { 00104 /** Packet writing. 00105 currently unsupported 00106 */ 00107 BURN_WRITE_PACKET, 00108 /** Track At Once recording. 00109 2s gaps between tracks, no fonky lead-ins 00110 */ 00111 BURN_WRITE_TAO, 00112 /** Session At Once. 00113 block type MUST be BURN_BLOCK_SAO 00114 */ 00115 BURN_WRITE_SAO, 00116 /** Raw disc at once recording. 00117 all subcodes must be provided by lib or user 00118 only raw block types are supported 00119 */ 00120 BURN_WRITE_RAW 00121 };
|
|
Add a session to a disc at a specific position, increasing the sessions's reference count.
Referenced by libburner_payload(). |
|
Create a new disc (for DAO recording).
Referenced by libburner_payload(). |
|
Tells whether a disc can be erased or not.
Referenced by libburner_blank_disc(), and libburner_payload(). |
|
Erase a disc in the drive. The drive must be grabbed successfully BEFORE calling this functions. Always ensure that the drive reports a status of BURN_DISC_FULL before calling this function. An erase operation is not cancellable, as control of the operation is passed wholly to the drive and there is no way to interrupt it safely.
Referenced by libburner_blank_disc(). |
|
Delete disc and decrease the reference count on all its sessions.
Referenced by libburner_payload(). |
|
|
|
Gets an array of all the sessions for the disc THIS IS NO LONGER VALID AFTER YOU ADD OR REMOVE A SESSION.
|
|
Returns what kind of disc a drive is holding. This function may need to be called more than once to get a proper status from it. See burn_status for details.
Referenced by libburner_blank_disc(), and libburner_payload(). |
|
Read a disc from the drive and write it to an fd pair. The drive must be grabbed successfully BEFORE calling this function. Always ensure that the drive reports a status of BURN_DISC_FULL before calling this function.
|
|
Remove a session from a disc.
|
|
Write a disc in the drive. The drive must be grabbed successfully BEFORE calling this function. Always ensure that the drive reports a status of BURN_DISC_BLANK or BURN_STATUS_FULL (to append a new session to the disc) before calling this function.
Referenced by libburner_payload(). |
|
Add a device to the list of permissible drives. As soon as some entry is in the whitelist all non-listed drives are banned from scanning.
|
|
Cancel an operation on a drive. This will only work when the drive's busy state is BURN_DRIVE_READING or BURN_DRIVE_WRITING.
|
|
Remove all drives from whitelist. This enables all possible drives. |
|
Inquire the persistent address of the given drive.
Referenced by libburner_aquire_by_driveno(). |
|
Get the drive's disc struct - free when done.
|
|
Gets the maximum read speed for a drive.
|
|
Returns the progress and status of a drive.
Referenced by libburner_blank_disc(), and libburner_payload(). |
|
Gets the maximum write speed for a drive.
|
|
Grab a drive. This must be done before the drive can be used (for reading, writing, etc).
Referenced by libburner_regrab(). |
|
Release memory about a single drive and any exclusive lock on it. Become unable to inquire or grab it. Expect FATAL consequences if you try.
|
|
Free a burn_drive_info array returned by burn_drive_scan.
|
|
Release a drive. This should not be done until the drive is no longer busy (see burn_drive_get_status). The drive is (O_EXCL) unlocked afterwards.
Referenced by libburner_regrab(), and main(). |
|
Scan for drives. This function MUST be called until it returns nonzero. No drives can be in use when this is called or it will assert. All drive pointers are invalidated by using this function. Do NOT store drive pointers across calls to this function or death AND pain will ensue. After this call all drives depicted by the returned array are subject to eventual (O_EXCL) locking. See burn_preset_device_open(). This state ends either with burn_drive_info_forget() or with burn_drive_release(). It is unfriendly to other processes on the system to hold drives locked which one does not definitely plan to use soon.
Referenced by libburner_aquire_by_driveno(). |
|
Aquire a drive with known persistent address.This is the sysadmin friendly way to open one drive and to leave all others untouched. It bundles the following API calls to form a non-obtrusive way to use libburn: burn_drive_add_whitelist() , burn_drive_scan() , burn_drive_grab() You are *strongly urged* to use this call whenever you know the drive address in advance. If not, then you have to use directly above calls. In that case, you are strongly urged* to drop any unintended drive which will be exclusively occupied and not closed by burn_drive_scan(). This can be done by shutting down the library including a call to burn_finish(). You may later start a new libburn session and should then use the function described here with an address obtained after burn_drive_scan() via burn_drive_get_adr(&(drive_infos[driveno]), adr) . Another way is to drop the unwanted drives by burn_drive_info_forget().
Referenced by libburner_aquire_by_adr(). |
|
Sets drive read and write speed.
Referenced by libburner_payload(). |
|
Creates a data source for an image file (a track) from an open readable filedescriptor, an eventually open readable subcodes file descriptor and eventually a fixed size in bytes.
Referenced by libburner_payload(). |
|
Creates a data source for an image file (and maybe subcode file).
Referenced by libburner_payload(). |
|
Shutdown the library. This should be called before exiting your application. Make sure that all drives you have grabbed are released before calling this. Referenced by main(). |
|
Returns a newly allocated burn_message structure. This message should be freed with burn_message_free() when you are finished with it.
|
|
Initialize the library. This must be called before using any other functions in the library. It may be called more than once with no effect. It is possible to 'restart' the library by shutting it down and re-initializing it. This is necessary if you follow the older and more general way of accessing a drive via burn_drive_scan() and burn_drive_grab(). See burn_drive_scan_and_grab() with its strong urges and its explanations.
Referenced by main(). |
|
Convert an lba to minute-second-frame (MSF).
|
|
Frees a burn_message structure.
|
|
Convert a minute-second-frame (MSF) value to an lba.
|
|
Convert a minute-second-frame (MSF) value to sector count.
|
|
Set parameters for behavior on opening device files. To be called early after burn_initialize() and before any bus scan. But not mandatory at all. Parameter value 1 enables a feature, 0 disables. Default is (1,0,0). Have a good reason before you change it.
|
|
Frees a read_opts struct created with burn_read_opts_new.
|
|
Creates a write_opts struct for reading from the specified drive must be freed with burn_write_opts_free.
|
|
Sets whether to read subcodes from audio tracks or not.
|
|
Sets whether to read subcodes from data tracks or not.
|
|
Sets whether to report recovered errors or not.
|
|
Sets whether to report c2 errors or not.
|
|
Sets whether to recover errors if possible.
|
|
Sets the number of retries to attempt when trying to correct an error.
|
|
Sets whether to read in raw mode or not.
|
|
Sets whether blocks with unrecoverable errors should be read or not.
|
|
Convert a sector count to minute-second-frame (MSF).
|
|
Add a track to a session at specified position.
Referenced by libburner_payload(). |
|
Create a new session (For SAO at once recording, or to be added to a disc for DAO).
Referenced by libburner_payload(). |
|
Free a session (and decrease reference count on all tracks inside).
Referenced by libburner_payload(). |
|
Returns whether the first track of a session is hidden in the pregap.
|
|
Gets a copy of the toc_entry structure associated with a session's lead out.
|
|
|
|
Gets an array of all the tracks for a session THIS IS NO LONGER VALID AFTER YOU ADD OR REMOVE A TRACK.
|
|
Hide the first track in the "pre gap" of the disc.
|
|
Remove a track from a session.
|
|
Set the verbosity level of the library. The default value is 0, which means that nothing is output on stderr. The more you increase this, the more debug output should be displayed on stderr for you.
|
|
Free a burn_source (decrease its refcount and maybe free it).
Referenced by libburner_payload(). |
|
Referenced by libburner_payload(). |
|
|
|
|
|
Disable ISRC parameters for a track.
|
|
Create a track (for TAO recording, or to put in a session).
Referenced by libburner_payload(). |
|
Define the data in a track.
Referenced by libburner_payload(). |
|
Free a track.
Referenced by libburner_payload(). |
|
Gets a copy of the toc_entry structure associated with a track.
|
|
Gets the mode of a track.
|
|
Tells how long a track will be on disc.
|
|
Set the ISRC details for a track.
|
|
Set the track's data source.
Referenced by libburner_payload(). |
|
Returns the library's version in its parts.
|
|
Frees a write_opts struct created with burn_write_opts_new.
Referenced by libburner_payload(). |
|
Creates a write_opts struct for burning to the specified drive must be freed with burn_write_opts_free.
Referenced by libburner_payload(). |
|
Sets the session format for a disc.
|
|
|
|
|
|
Sets whether to use opc or not with the write_opts struct.
Referenced by libburner_payload(). |
|
Sets the simulate value for the write_opts struct.
Referenced by libburner_payload(). |
|
Supplies toc entries for writing - not normally required for cd mastering.
|
|
Controls buffer underrun prevention.
Referenced by libburner_payload(). |
|
Sets the write type for the write_opts struct.
Referenced by libburner_payload(). |