Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
b1e5c294
Commit
b1e5c294
authored
Jan 14, 2007
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cosmetic
Originally committed as revision 7472 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
ba554c02
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
aes.c
libavutil/aes.c
+2
-3
No files found.
libavutil/aes.c
View file @
b1e5c294
...
@@ -153,10 +153,9 @@ AVAES *av_aes_init(uint8_t *key, int key_bits) {
...
@@ -153,10 +153,9 @@ AVAES *av_aes_init(uint8_t *key, int key_bits) {
for
(
j
=
1
;
j
<
KC
;
j
++
){
for
(
j
=
1
;
j
<
KC
;
j
++
){
if
(
KC
!=
8
||
j
!=
KC
/
2
)
if
(
KC
!=
8
||
j
!=
KC
/
2
)
for
(
i
=
0
;
i
<
4
;
i
++
)
tk
[
j
][
i
]
^=
tk
[
j
-
1
][
i
];
for
(
i
=
0
;
i
<
4
;
i
++
)
tk
[
j
][
i
]
^=
tk
[
j
-
1
][
i
];
else
else
for
(
i
=
0
;
i
<
4
;
i
++
)
for
(
i
=
0
;
i
<
4
;
i
++
)
tk
[
j
][
i
]
^=
sbox
[
tk
[
j
-
1
][
i
]];
tk
[
KC
/
2
][
i
]
^=
sbox
[
tk
[
KC
/
2
-
1
][
i
]];
}
}
}
}
return
a
;
return
a
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment