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
3d89373f
Commit
3d89373f
authored
Jul 28, 2015
by
Vittorio Giovara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavu: Drop deprecated private lls functions
Deprecated in 02/2013.
parent
2f9b652e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
29 deletions
+0
-29
lls.c
libavutil/lls.c
+0
-19
lls.h
libavutil/lls.h
+0
-7
version.h
libavutil/version.h
+0
-3
No files found.
libavutil/lls.c
View file @
3d89373f
...
...
@@ -121,25 +121,6 @@ av_cold void avpriv_init_lls(LLSModel *m, int indep_count)
ff_init_lls_x86
(
m
);
}
#if FF_API_LLS_PRIVATE
av_cold
void
av_init_lls
(
LLSModel
*
m
,
int
indep_count
)
{
avpriv_init_lls
(
m
,
indep_count
);
}
void
av_update_lls
(
LLSModel
*
m
,
double
*
param
,
double
decay
)
{
m
->
update_lls
(
m
,
param
);
}
void
av_solve_lls
(
LLSModel
*
m
,
double
threshold
,
int
min_order
)
{
avpriv_solve_lls
(
m
,
threshold
,
min_order
);
}
double
av_evaluate_lls
(
LLSModel
*
m
,
double
*
param
,
int
order
)
{
return
m
->
evaluate_lls
(
m
,
param
,
order
);
}
#endif
/* FF_API_LLS_PRIVATE */
#ifdef TEST
#include <stdio.h>
...
...
libavutil/lls.h
View file @
3d89373f
...
...
@@ -61,11 +61,4 @@ void avpriv_init_lls(LLSModel *m, int indep_count);
void
ff_init_lls_x86
(
LLSModel
*
m
);
void
avpriv_solve_lls
(
LLSModel
*
m
,
double
threshold
,
unsigned
short
min_order
);
#if FF_API_LLS_PRIVATE
void
av_init_lls
(
LLSModel
*
m
,
int
indep_count
);
void
av_update_lls
(
LLSModel
*
m
,
double
*
param
,
double
decay
);
void
av_solve_lls
(
LLSModel
*
m
,
double
threshold
,
int
min_order
);
double
av_evaluate_lls
(
LLSModel
*
m
,
double
*
param
,
int
order
);
#endif
/* FF_API_LLS_PRIVATE */
#endif
/* AVUTIL_LLS_H */
libavutil/version.h
View file @
3d89373f
...
...
@@ -78,9 +78,6 @@
* @{
*/
#ifndef FF_API_LLS_PRIVATE
#define FF_API_LLS_PRIVATE (LIBAVUTIL_VERSION_MAJOR < 55)
#endif
#ifndef FF_API_VDPAU
#define FF_API_VDPAU (LIBAVUTIL_VERSION_MAJOR < 55)
#endif
...
...
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