Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
c1836540
Commit
c1836540
authored
13 years ago
by
Diego Biurrun
Browse files
Options
Downloads
Patches
Plain Diff
Replace Subversion revisions in comments by Git hashes.
parent
8742a4ff
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
libavcodec/lpc.c
+3
-2
3 additions, 2 deletions
libavcodec/lpc.c
libavutil/aes.c
+1
-1
1 addition, 1 deletion
libavutil/aes.c
with
4 additions
and
3 deletions
libavcodec/lpc.c
+
3
−
2
View file @
c1836540
...
@@ -35,8 +35,9 @@ static void lpc_apply_welch_window_c(const int32_t *data, int len,
...
@@ -35,8 +35,9 @@ static void lpc_apply_welch_window_c(const int32_t *data, int len,
double
w
;
double
w
;
double
c
;
double
c
;
assert
(
!
(
len
&
1
));
//the optimization in r11881 does not support odd len
/* The optimization in commit fa4ed8c does not support odd len.
//if someone wants odd len extend the change in r11881
* If someone wants odd len extend that change. */
assert
(
!
(
len
&
1
));
n2
=
(
len
>>
1
);
n2
=
(
len
>>
1
);
c
=
2
.
0
/
(
len
-
1
.
0
);
c
=
2
.
0
/
(
len
-
1
.
0
);
...
...
This diff is collapsed.
Click to expand it.
libavutil/aes.c
+
1
−
1
View file @
c1836540
...
@@ -33,7 +33,7 @@ typedef union {
...
@@ -33,7 +33,7 @@ typedef union {
typedef
struct
AVAES
{
typedef
struct
AVAES
{
// Note: round_key[16] is accessed in the init code, but this only
// 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
round_key
[
15
];
av_aes_block
state
[
2
];
av_aes_block
state
[
2
];
int
rounds
;
int
rounds
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment