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
1b105243
Commit
1b105243
authored
Jan 14, 2007
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix 2 warnings
Originally committed as revision 7498 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
034f5fba
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
aes.c
libavutil/aes.c
+2
-2
No files found.
libavutil/aes.c
View file @
1b105243
...
...
@@ -99,7 +99,7 @@ void av_aes_encrypt(AVAES *a){
crypt
(
a
,
2
,
sbox
,
enc_multbl
);
}
static
init_multbl2
(
uint8_t
tbl
[
1024
],
int
c
[
4
],
uint8_t
*
log8
,
uint8_t
*
alog8
,
uint8_t
*
sbox
){
static
void
init_multbl2
(
uint8_t
tbl
[
1024
],
int
c
[
4
],
uint8_t
*
log8
,
uint8_t
*
alog8
,
uint8_t
*
sbox
){
int
i
;
for
(
i
=
0
;
i
<
1024
;
i
++
){
int
x
=
sbox
[
i
/
4
];
...
...
@@ -192,7 +192,7 @@ AVAES *av_aes_init(uint8_t *key, int key_bits, int decrypt) {
#ifdef TEST
int
main
(){
int
i
,
j
,
k
;
int
i
,
j
;
AVAES
*
ae
=
av_aes_init
(
"PI=3.141592654.."
,
128
,
0
);
AVAES
*
ad
=
av_aes_init
(
"PI=3.141592654.."
,
128
,
1
);
uint8_t
zero
[
16
]
=
{
0
};
...
...
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