diff options
author | Darrell Anderson <[email protected]> | 2012-04-13 02:09:49 -0500 |
---|---|---|
committer | Darrell Anderson <[email protected]> | 2012-04-13 02:09:49 -0500 |
commit | 7ed1aeef0249551624f9cc1977402f154acd7352 (patch) | |
tree | f13df285804a1c6aad394b9d1a8d66e16143b5ec /k9decmpeg/vlc.h | |
parent | 01a7e739162d6b0d90d3912b5926d8a6b17decdc (diff) | |
download | k9copy-7ed1aeef0249551624f9cc1977402f154acd7352.tar.gz k9copy-7ed1aeef0249551624f9cc1977402f154acd7352.zip |
Fix inadvertent "TQ" changes.
Diffstat (limited to 'k9decmpeg/vlc.h')
-rwxr-xr-x | k9decmpeg/vlc.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/k9decmpeg/vlc.h b/k9decmpeg/vlc.h index 61b2a50..f82e595 100755 --- a/k9decmpeg/vlc.h +++ b/k9decmpeg/vlc.h @@ -96,17 +96,17 @@ typedef struct { #define INTRA MACROBLOCK_INTRA -#define TQUANT MACROBLOCK_TQUANT +#define QUANT MACROBLOCK_QUANT static const MBtab MB_I [] = { - {INTRA|TQUANT, 2}, {INTRA, 1} + {INTRA|QUANT, 2}, {INTRA, 1} }; #define MC MACROBLOCK_MOTION_FORWARD #define CODED MACROBLOCK_PATTERN static const MBtab MB_P [] = { - {INTRA|TQUANT, 6}, {CODED|TQUANT, 5}, {MC|CODED|TQUANT, 5}, {INTRA, 5}, + {INTRA|QUANT, 6}, {CODED|QUANT, 5}, {MC|CODED|QUANT, 5}, {INTRA, 5}, {MC, 3}, {MC, 3}, {MC, 3}, {MC, 3}, {CODED, 2}, {CODED, 2}, {CODED, 2}, {CODED, 2}, {CODED, 2}, {CODED, 2}, {CODED, 2}, {CODED, 2}, @@ -121,9 +121,9 @@ static const MBtab MB_P [] = { #define INTER MACROBLOCK_MOTION_FORWARD|MACROBLOCK_MOTION_BACKWARD static const MBtab MB_B [] = { - {0, 0}, {INTRA|TQUANT, 6}, - {BWD|CODED|TQUANT, 6}, {FWD|CODED|TQUANT, 6}, - {INTER|CODED|TQUANT, 5}, {INTER|CODED|TQUANT, 5}, + {0, 0}, {INTRA|QUANT, 6}, + {BWD|CODED|QUANT, 6}, {FWD|CODED|QUANT, 6}, + {INTER|CODED|QUANT, 5}, {INTER|CODED|QUANT, 5}, {INTRA, 5}, {INTRA, 5}, {FWD, 4}, {FWD, 4}, {FWD, 4}, {FWD, 4}, {FWD|CODED, 4}, {FWD|CODED, 4}, {FWD|CODED, 4}, {FWD|CODED, 4}, @@ -142,7 +142,7 @@ static const MBtab MB_B [] = { }; #undef INTRA -#undef TQUANT +#undef QUANT #undef MC #undef CODED #undef FWD |