diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-21 14:04:07 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-21 14:04:07 -0600 |
commit | 516c39eb4872b2e0dee0baefe675abdf171e847c (patch) | |
tree | 8c41ba125c677e1503831236d9bf12b727bf94f6 /dvdread | |
parent | 1e42ec29323d1016df59b8b571d16fefe3d4e6f1 (diff) | |
download | k9copy-516c39eb4872b2e0dee0baefe675abdf171e847c.tar.gz k9copy-516c39eb4872b2e0dee0baefe675abdf171e847c.zip |
Rename obsolete tq methods to standard names
Diffstat (limited to 'dvdread')
-rw-r--r-- | dvdread/dvd_reader.h | 2 | ||||
-rw-r--r-- | dvdread/dvd_udf.c | 4 | ||||
-rw-r--r-- | dvdread/nav_read.c | 2 | ||||
-rw-r--r-- | dvdread/nav_types.h | 4 |
4 files changed, 6 insertions, 6 deletions
diff --git a/dvdread/dvd_reader.h b/dvdread/dvd_reader.h index c090b32..d666e8a 100644 --- a/dvdread/dvd_reader.h +++ b/dvdread/dvd_reader.h @@ -285,7 +285,7 @@ int DVDDiscID( dvd_reader_t *, unsigned char * ); * * @param dvd A read handle to get the disc ID from * @param volid The buffer to put the VolumeIdentifier into. - * The VolumeIdentifier is latin-1 encoded (8bit tqunicode) + * The VolumeIdentifier is latin-1 encoded (8bit unicode) * null terminated and max 32 bytes (including '\0') * @param volid_size No more than volid_size bytes will be copied to volid. * If the VolumeIdentifier is truncated because of this diff --git a/dvdread/dvd_udf.c b/dvdread/dvd_udf.c index 20b55e4..9af6ad0 100644 --- a/dvdread/dvd_udf.c +++ b/dvdread/dvd_udf.c @@ -498,7 +498,7 @@ static int Unicodedecode( uint8_t *data, int len, char *target ) int p = 1, i = 0; if( ( data[ 0 ] == 8 ) || ( data[ 0 ] == 16 ) ) do { - if( data[ 0 ] == 16 ) p++; /* Ignore MSB of tqunicode16 */ + if( data[ 0 ] == 16 ) p++; /* Ignore MSB of unicode16 */ if( p < len ) { target[ i++ ] = data[ p++ ]; } @@ -1157,7 +1157,7 @@ static int UDFGetPVD(dvd_reader_t *device, struct pvd_t *pvd) } /** - * Gets the Volume Identifier string, in 8bit tqunicode (latin-1) + * Gets the Volume Identifier string, in 8bit unicode (latin-1) * volid, place to put the string * volid_size, size of the buffer volid points to * returns the size of buffer needed for all data diff --git a/dvdread/nav_read.c b/dvdread/nav_read.c index 8d664f2..54d9a11 100644 --- a/dvdread/nav_read.c +++ b/dvdread/nav_read.c @@ -63,7 +63,7 @@ void navRead_PCI(pci_t *pci, unsigned char *buffer) { for(j = 0; j < 2; j++) B2N_32(pci->hli.btn_colit.btn_coli[i][j]); - /* NOTE: I've had to change the structure from the disk tqlayout to get + /* NOTE: I've had to change the structure from the disk layout to get * the packing to work with Sun's Forte C compiler. */ /* pci hli btni */ diff --git a/dvdread/nav_types.h b/dvdread/nav_types.h index cfb81f3..12e19f8 100644 --- a/dvdread/nav_types.h +++ b/dvdread/nav_types.h @@ -5,7 +5,7 @@ /* * Copyright (C) 2000, 2001, 2002 H�kan Hjort <d95hjort@dtek.chalmers.se> * - * The data structures in this file should represent the tqlayout of the + * The data structures in this file should represent the layout of the * pci and dsi packets as they are stored in the stream. Information * found by reading the source to VOBDUMP is the base for the structure * and names of these data types. @@ -145,7 +145,7 @@ typedef struct { /** * Button Information * - * NOTE: I've had to change the structure from the disk tqlayout to get + * NOTE: I've had to change the structure from the disk layout to get * the packing to work with Sun's Forte C compiler. * The 4 and 7 bytes are 'rotated' was: ABC DEF GHIJ is: ABCG DEFH IJ */ |