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
0b311293
Commit
0b311293
authored
12 years ago
by
Diego Biurrun
Browse files
Options
Downloads
Patches
Plain Diff
lls: Do not return from void functions
parent
4da950c0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libavutil/lls.c
+3
-3
3 additions, 3 deletions
libavutil/lls.c
with
3 additions
and
3 deletions
libavutil/lls.c
+
3
−
3
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
)
{
{
...
...
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