diff options
Diffstat (limited to 'libk9copy/k9dvdbackup.cpp')
-rwxr-xr-x | libk9copy/k9dvdbackup.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libk9copy/k9dvdbackup.cpp b/libk9copy/k9dvdbackup.cpp index 48a1463..e261038 100755 --- a/libk9copy/k9dvdbackup.cpp +++ b/libk9copy/k9dvdbackup.cpp @@ -850,22 +850,22 @@ k9Vobu * k9DVDBackup::remapVobu(uint32_t *value) { k9Vobu * k9DVDBackup::remapOffset(uint32_t _sector,uint32_t *_offset,int _dir) { k9Vobu *vobu1=NULL, *vobu2=NULL; uint32_t offset,sector; - uint32_t tqmaskOffset1=0,tqmaskOffset2=0,tqmaskSector=0; + uint32_t maskOffset1=0,maskOffset2=0,maskSector=0; if ((*_offset!= 0xbfffffff) && (*_offset!=0x3fffffff) && (*_offset!=0x7fffffff)) { if ( (*_offset & 0x80000000) == 0x80000000) - tqmaskOffset1= 0x80000000; + maskOffset1= 0x80000000; if ( (*_offset & 0x40000000) == 0x40000000) - tqmaskOffset2= 0x40000000; + maskOffset2= 0x40000000; offset = *_offset & 0x3FFFFFFF; if ( (_sector & 0x80000000) == 0x80000000) { sector = _sector & 0x7FFFFFFF; - tqmaskSector=0x80000000; + maskSector=0x80000000; } else { sector =_sector; - tqmaskSector=0; + maskSector=0; } k9CellList *lstCell; @@ -883,8 +883,8 @@ k9Vobu * k9DVDBackup::remapOffset(uint32_t _sector,uint32_t *_offset,int _dir) { if ((vobu1 !=NULL) && (vobu2!=NULL)) { - *_offset = abs(vobu1->newSector - vobu2->newSector) | tqmaskOffset1 ; - *_offset |= tqmaskOffset2; + *_offset = abs(vobu1->newSector - vobu2->newSector) | maskOffset1 ; + *_offset |= maskOffset2; return vobu2; } |