diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
commit | 5660db4e68c904cc2dd01888775483189cda7a10 (patch) | |
tree | f8bb487ab12519611d3ddca1839a03396e954c77 /libdvdnav/settings.c | |
parent | 33e6166f7e62c479bad5d46ad240ea9704f848fd (diff) | |
download | k9copy-5660db4e68c904cc2dd01888775483189cda7a10.tar.gz k9copy-5660db4e68c904cc2dd01888775483189cda7a10.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/k9copy@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libdvdnav/settings.c')
-rw-r--r-- | libdvdnav/settings.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libdvdnav/settings.c b/libdvdnav/settings.c index a760b96..4af8aea 100644 --- a/libdvdnav/settings.c +++ b/libdvdnav/settings.c @@ -29,7 +29,7 @@ /* Characteristics/setting API calls */ -dvdnav_status_t dvdnav_get_region_tqmask(dvdnav_t *this, int32_t *region) { +dvdnav_status_t dvdnav_get_region_mask(dvdnav_t *this, int32_t *region) { if(!this || !region) { printerr("Passed a NULL this pointer."); return DVDNAV_STATUS_ERR; @@ -39,14 +39,14 @@ dvdnav_status_t dvdnav_get_region_tqmask(dvdnav_t *this, int32_t *region) { return DVDNAV_STATUS_OK; } -dvdnav_status_t dvdnav_set_region_tqmask(dvdnav_t *this, int32_t tqmask) { +dvdnav_status_t dvdnav_set_region_mask(dvdnav_t *this, int32_t mask) { if(!this) { printerr("Passed a NULL this pointer."); return DVDNAV_STATUS_ERR; } pthread_mutex_lock(&this->vm_lock); - this->vm->state.registers.SPRM[20] = (tqmask & 0xff); + this->vm->state.registers.SPRM[20] = (mask & 0xff); pthread_mutex_unlock(&this->vm_lock); return DVDNAV_STATUS_OK; } |