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
88efc013
Commit
88efc013
authored
Jul 21, 2014
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avutil: move QP2LAMBDA constant to eval
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
2c5c7f10
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
2 deletions
+1
-2
eval.c
libavutil/eval.c
+1
-0
opt.c
libavutil/opt.c
+0
-2
No files found.
libavutil/eval.c
View file @
88efc013
...
@@ -86,6 +86,7 @@ static const struct {
...
@@ -86,6 +86,7 @@ static const struct {
{
"E"
,
M_E
},
{
"E"
,
M_E
},
{
"PI"
,
M_PI
},
{
"PI"
,
M_PI
},
{
"PHI"
,
M_PHI
},
{
"PHI"
,
M_PHI
},
{
"QP2LAMBDA"
,
FF_QP2LAMBDA
},
};
};
double
av_strtod
(
const
char
*
numstr
,
char
**
tail
)
double
av_strtod
(
const
char
*
numstr
,
char
**
tail
)
...
...
libavutil/opt.c
View file @
88efc013
...
@@ -132,14 +132,12 @@ static int write_number(void *obj, const AVOption *o, void *dst, double num, int
...
@@ -132,14 +132,12 @@ static int write_number(void *obj, const AVOption *o, void *dst, double num, int
static
const
double
const_values
[]
=
{
static
const
double
const_values
[]
=
{
M_PI
,
M_PI
,
M_E
,
M_E
,
FF_QP2LAMBDA
,
0
0
};
};
static
const
char
*
const
const_names
[]
=
{
static
const
char
*
const
const_names
[]
=
{
"PI"
,
"PI"
,
"E"
,
"E"
,
"QP2LAMBDA"
,
0
0
};
};
...
...
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