This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
avutil: move QP2LAMBDA constant to eval
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.4
Michael Niedermayer
11 years ago
parent
2c5c7f1089
commit
88efc013b1
2 changed files
with
1 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
libavutil/eval.c
+0
-2
libavutil/opt.c
+ 1
- 0
libavutil/eval.c
View File
@@ -86,6 +86,7 @@ static const struct {
{ "E", M_E },
{ "PI", M_PI },
{ "PHI", M_PHI },
{ "QP2LAMBDA", FF_QP2LAMBDA },
};
double av_strtod(const char *numstr, char **tail)
+ 0
- 2
libavutil/opt.c
View File
@@ -132,14 +132,12 @@ static int write_number(void *obj, const AVOption *o, void *dst, double num, int
static const double const_values[] = {
M_PI,
M_E,
FF_QP2LAMBDA,
0
};
static const char * const const_names[] = {
"PI",
"E",
"QP2LAMBDA",
0
};
Write
Preview
Loading…
Cancel
Save