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
c1836540
Commit
c1836540
authored
Dec 20, 2011
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replace Subversion revisions in comments by Git hashes.
parent
8742a4ff
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
lpc.c
libavcodec/lpc.c
+3
-2
aes.c
libavutil/aes.c
+1
-1
No files found.
libavcodec/lpc.c
View file @
c1836540
...
...
@@ -35,8 +35,9 @@ static void lpc_apply_welch_window_c(const int32_t *data, int len,
double
w
;
double
c
;
assert
(
!
(
len
&
1
));
//the optimization in r11881 does not support odd len
//if someone wants odd len extend the change in r11881
/* The optimization in commit fa4ed8c does not support odd len.
* If someone wants odd len extend that change. */
assert
(
!
(
len
&
1
));
n2
=
(
len
>>
1
);
c
=
2
.
0
/
(
len
-
1
.
0
);
...
...
libavutil/aes.c
View file @
c1836540
...
...
@@ -33,7 +33,7 @@ typedef union {
typedef
struct
AVAES
{
// Note: round_key[16] is accessed in the init code, but this only
// overwrites state, which does not matter (see also
r7471
).
// overwrites state, which does not matter (see also
commit ba554c0
).
av_aes_block
round_key
[
15
];
av_aes_block
state
[
2
];
int
rounds
;
...
...
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