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
1c6962dc
Commit
1c6962dc
authored
Nov 04, 2012
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavu: remove disabled FF_API_OLD_EVAL_NAMES code
parent
ef4dc3e5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
70 deletions
+0
-70
eval.c
libavutil/eval.c
+0
-34
eval.h
libavutil/eval.h
+0
-33
version.h
libavutil/version.h
+0
-3
No files found.
libavutil/eval.c
View file @
1c6962dc
...
...
@@ -659,40 +659,6 @@ int av_expr_parse_and_eval(double *d, const char *s,
return
isnan
(
*
d
)
?
AVERROR
(
EINVAL
)
:
0
;
}
#if FF_API_OLD_EVAL_NAMES
// LCOV_EXCL_START
int
av_parse_expr
(
AVExpr
**
expr
,
const
char
*
s
,
const
char
*
const
*
const_names
,
const
char
*
const
*
func1_names
,
double
(
*
const
*
funcs1
)(
void
*
,
double
),
const
char
*
const
*
func2_names
,
double
(
*
const
*
funcs2
)(
void
*
,
double
,
double
),
int
log_offset
,
void
*
log_ctx
)
{
return
av_expr_parse
(
expr
,
s
,
const_names
,
func1_names
,
funcs1
,
func2_names
,
funcs2
,
log_offset
,
log_ctx
);
}
double
av_eval_expr
(
AVExpr
*
e
,
const
double
*
const_values
,
void
*
opaque
)
{
return
av_expr_eval
(
e
,
const_values
,
opaque
);
}
int
av_parse_and_eval_expr
(
double
*
res
,
const
char
*
s
,
const
char
*
const
*
const_names
,
const
double
*
const_values
,
const
char
*
const
*
func1_names
,
double
(
*
const
*
funcs1
)(
void
*
,
double
),
const
char
*
const
*
func2_names
,
double
(
*
const
*
funcs2
)(
void
*
,
double
,
double
),
void
*
opaque
,
int
log_offset
,
void
*
log_ctx
)
{
return
av_expr_parse_and_eval
(
res
,
s
,
const_names
,
const_values
,
func1_names
,
funcs1
,
func2_names
,
funcs2
,
opaque
,
log_offset
,
log_ctx
);
}
void
av_free_expr
(
AVExpr
*
e
)
{
av_expr_free
(
e
);
}
// LCOV_EXCL_STOP
#endif
/* FF_API_OLD_EVAL_NAMES */
#ifdef TEST
// LCOV_EXCL_START
#undef printf
...
...
libavutil/eval.h
View file @
1c6962dc
...
...
@@ -91,39 +91,6 @@ double av_expr_eval(AVExpr *e, const double *const_values, void *opaque);
*/
void
av_expr_free
(
AVExpr
*
e
);
#if FF_API_OLD_EVAL_NAMES
/**
* @deprecated Deprecated in favor of av_expr_parse_and_eval().
*/
attribute_deprecated
int
av_parse_and_eval_expr
(
double
*
res
,
const
char
*
s
,
const
char
*
const
*
const_names
,
const
double
*
const_values
,
const
char
*
const
*
func1_names
,
double
(
*
const
*
funcs1
)(
void
*
,
double
),
const
char
*
const
*
func2_names
,
double
(
*
const
*
funcs2
)(
void
*
,
double
,
double
),
void
*
opaque
,
int
log_offset
,
void
*
log_ctx
);
/**
* @deprecated Deprecated in favor of av_expr_parse().
*/
attribute_deprecated
int
av_parse_expr
(
AVExpr
**
expr
,
const
char
*
s
,
const
char
*
const
*
const_names
,
const
char
*
const
*
func1_names
,
double
(
*
const
*
funcs1
)(
void
*
,
double
),
const
char
*
const
*
func2_names
,
double
(
*
const
*
funcs2
)(
void
*
,
double
,
double
),
int
log_offset
,
void
*
log_ctx
);
/**
* @deprecated Deprecated in favor of av_expr_eval().
*/
attribute_deprecated
double
av_eval_expr
(
AVExpr
*
e
,
const
double
*
const_values
,
void
*
opaque
);
/**
* @deprecated Deprecated in favor of av_expr_free().
*/
attribute_deprecated
void
av_free_expr
(
AVExpr
*
e
);
#endif
/* FF_API_OLD_EVAL_NAMES */
/**
* Parse the string in numstr and return its value as a double. If
* the string is empty, contains only whitespaces, or does not contain
...
...
libavutil/version.h
View file @
1c6962dc
...
...
@@ -99,9 +99,6 @@
* @{
*/
#ifndef FF_API_OLD_EVAL_NAMES
#define FF_API_OLD_EVAL_NAMES (LIBAVUTIL_VERSION_MAJOR < 52)
#endif
#ifndef FF_API_GET_BITS_PER_SAMPLE_FMT
#define FF_API_GET_BITS_PER_SAMPLE_FMT (LIBAVUTIL_VERSION_MAJOR < 53)
#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