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
7ac6d242
Commit
7ac6d242
authored
Feb 25, 2013
by
Luca Barbato
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lls: K&R formatting cosmetics
parent
df0229a7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
lls.h
libavutil/lls.h
+3
-3
No files found.
libavutil/lls.h
View file @
7ac6d242
...
...
@@ -30,12 +30,12 @@
/**
* Linear least squares model.
*/
typedef
struct
LLSModel
{
double
covariance
[
MAX_VARS
+
1
][
MAX_VARS
+
1
];
typedef
struct
LLSModel
{
double
covariance
[
MAX_VARS
+
1
][
MAX_VARS
+
1
];
double
coeff
[
MAX_VARS
][
MAX_VARS
];
double
variance
[
MAX_VARS
];
int
indep_count
;
}
LLSModel
;
}
LLSModel
;
void
av_init_lls
(
LLSModel
*
m
,
int
indep_count
);
void
av_update_lls
(
LLSModel
*
m
,
double
*
param
,
double
decay
);
...
...
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