diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-27 23:37:00 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-27 23:37:00 +0000 |
commit | b0e912c8b3d02a518fedda28c3180eb4794a7520 (patch) | |
tree | 07d344862562fab58cbe2df39d13d16f2e4d2bea /k9vamps/getvlc.h | |
parent | 4d695ec81fe4d4335ee82c7a9346ad9c9e144ecc (diff) | |
download | k9copy-b0e912c8b3d02a518fedda28c3180eb4794a7520.tar.gz k9copy-b0e912c8b3d02a518fedda28c3180eb4794a7520.zip |
TQt4 convert k9copy
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/k9copy@1233843 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'k9vamps/getvlc.h')
-rw-r--r-- | k9vamps/getvlc.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/k9vamps/getvlc.h b/k9vamps/getvlc.h index bcf82c0..b35a5a3 100644 --- a/k9vamps/getvlc.h +++ b/k9vamps/getvlc.h @@ -4,7 +4,7 @@ #define MACROBLOCK_PATTERN 2 #define MACROBLOCK_MOTION_BACKWARD 4 #define MACROBLOCK_MOTION_FORWARD 8 -#define MACROBLOCK_QUANT 16 +#define MACROBLOCK_TQUANT 16 #define DCT_TYPE_INTERLACED 32 /* motion_type */ @@ -68,17 +68,17 @@ typedef struct { #define INTRA MACROBLOCK_INTRA -#define QUANT MACROBLOCK_QUANT +#define TQUANT MACROBLOCK_TQUANT static const MBtab MB_I [] = { - {INTRA|QUANT, 2}, {INTRA, 1} + {INTRA|TQUANT, 2}, {INTRA, 1} }; #define MC MACROBLOCK_MOTION_FORWARD #define CODED MACROBLOCK_PATTERN static const MBtab MB_P [] = { - {INTRA|QUANT, 6}, {CODED|QUANT, 5}, {MC|CODED|QUANT, 5}, {INTRA, 5}, + {INTRA|TQUANT, 6}, {CODED|TQUANT, 5}, {MC|CODED|TQUANT, 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}, @@ -93,9 +93,9 @@ static const MBtab MB_P [] = { #define INTER MACROBLOCK_MOTION_FORWARD|MACROBLOCK_MOTION_BACKWARD static const MBtab MB_B [] = { - {0, 0}, {INTRA|QUANT, 6}, - {BWD|CODED|QUANT, 6}, {FWD|CODED|QUANT, 6}, - {INTER|CODED|QUANT, 5}, {INTER|CODED|QUANT, 5}, + {0, 0}, {INTRA|TQUANT, 6}, + {BWD|CODED|TQUANT, 6}, {FWD|CODED|TQUANT, 6}, + {INTER|CODED|TQUANT, 5}, {INTER|CODED|TQUANT, 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}, @@ -114,7 +114,7 @@ static const MBtab MB_B [] = { }; #undef INTRA -#undef QUANT +#undef TQUANT #undef MC #undef CODED #undef FWD |