mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-27 13:10:37 +00:00
Merge commit '52385410b7de012c2562fb5ba8f07a4e1112c4e7'
* commit '52385410b7de012c2562fb5ba8f07a4e1112c4e7': des-test: Move a variable declaration to avoid an ifdef Merged-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
This commit is contained in:
commit
4b23a8137f
@ -389,9 +389,6 @@ static int run_test(int cbc, int decrypt) {
|
||||
int main(void) {
|
||||
AVDES d;
|
||||
int i;
|
||||
#ifdef GENTABLES
|
||||
int j;
|
||||
#endif
|
||||
uint64_t key[3];
|
||||
uint64_t data;
|
||||
uint64_t ct;
|
||||
@ -429,6 +426,7 @@ int main(void) {
|
||||
#ifdef GENTABLES
|
||||
printf("static const uint32_t S_boxes_P_shuffle[8][64] = {\n");
|
||||
for (i = 0; i < 8; i++) {
|
||||
int j;
|
||||
printf(" {");
|
||||
for (j = 0; j < 64; j++) {
|
||||
uint32_t v = S_boxes[i][j >> 1];
|
||||
|
Loading…
Reference in New Issue
Block a user