summaryrefslogtreecommitdiffstats
path: root/libdvdnav/decoder.c
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
commit5660db4e68c904cc2dd01888775483189cda7a10 (patch)
treef8bb487ab12519611d3ddca1839a03396e954c77 /libdvdnav/decoder.c
parent33e6166f7e62c479bad5d46ad240ea9704f848fd (diff)
downloadk9copy-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/decoder.c')
-rw-r--r--libdvdnav/decoder.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libdvdnav/decoder.c b/libdvdnav/decoder.c
index 007fe35..1c21f60 100644
--- a/libdvdnav/decoder.c
+++ b/libdvdnav/decoder.c
@@ -35,7 +35,7 @@
uint32_t vm_getbits(command_t *command, int32_t start, int32_t count) {
uint64_t result = 0;
- uint64_t bit_tqmask = 0;
+ uint64_t bit_mask = 0;
uint64_t examining = 0;
int32_t bits;
@@ -50,12 +50,12 @@ uint32_t vm_getbits(command_t *command, int32_t start, int32_t count) {
abort();
}
/* all ones, please */
- bit_tqmask = ~bit_tqmask;
- bit_tqmask >>= 63 - start;
+ bit_mask = ~bit_mask;
+ bit_mask >>= 63 - start;
bits = start + 1 - count;
- examining = ((bit_tqmask >> bits) << bits );
+ examining = ((bit_mask >> bits) << bits );
command->examined |= examining;
- result = (command->instruction & bit_tqmask) >> bits;
+ result = (command->instruction & bit_mask) >> bits;
return (uint32_t) result;
}