This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
des: fix #if conditional around P_shuffle
CONFIG_SMALL is always defined as 0 or 1. Signed-off-by: Mans Rullgard <mans@mansr.com>
tags/n0.9
Mans Rullgard
14 years ago
parent
58d7efdb29
commit
bd39c07688
1 changed files
with
1 additions
and
1 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavutil/des.c
+ 1
- 1
libavutil/des.c
View File
@@ -39,7 +39,7 @@ static const uint8_t IP_shuffle[] = {
};
};
#undef T
#undef T
#if
defined(
CONFIG_SMALL
)
|| defined(GENTABLES)
#if CONFIG_SMALL || defined(GENTABLES)
#define T(a, b, c, d) 32-a,32-b,32-c,32-d
#define T(a, b, c, d) 32-a,32-b,32-c,32-d
static const uint8_t P_shuffle[] = {
static const uint8_t P_shuffle[] = {
T(16, 7, 20, 21),
T(16, 7, 20, 21),
Write
Preview
Loading…
Cancel
Save