Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
0b311293
Commit
0b311293
authored
Feb 28, 2013
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lls: Do not return from void functions
parent
4da950c0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
lls.c
libavutil/lls.c
+3
-3
No files found.
libavutil/lls.c
View file @
0b311293
...
@@ -120,15 +120,15 @@ double avpriv_evaluate_lls(LLSModel *m, double *param, int order)
...
@@ -120,15 +120,15 @@ double avpriv_evaluate_lls(LLSModel *m, double *param, int order)
#if FF_API_LLS_PRIVATE
#if FF_API_LLS_PRIVATE
void
av_init_lls
(
LLSModel
*
m
,
int
indep_count
)
void
av_init_lls
(
LLSModel
*
m
,
int
indep_count
)
{
{
return
avpriv_init_lls
(
m
,
indep_count
);
avpriv_init_lls
(
m
,
indep_count
);
}
}
void
av_update_lls
(
LLSModel
*
m
,
double
*
param
,
double
decay
)
void
av_update_lls
(
LLSModel
*
m
,
double
*
param
,
double
decay
)
{
{
return
avpriv_update_lls
(
m
,
param
,
decay
);
avpriv_update_lls
(
m
,
param
,
decay
);
}
}
void
av_solve_lls
(
LLSModel
*
m
,
double
threshold
,
int
min_order
)
void
av_solve_lls
(
LLSModel
*
m
,
double
threshold
,
int
min_order
)
{
{
return
avpriv_solve_lls
(
m
,
threshold
,
min_order
);
avpriv_solve_lls
(
m
,
threshold
,
min_order
);
}
}
double
av_evaluate_lls
(
LLSModel
*
m
,
double
*
param
,
int
order
)
double
av_evaluate_lls
(
LLSModel
*
m
,
double
*
param
,
int
order
)
{
{
...
...
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