Commit 88efc013 authored by Michael Niedermayer's avatar Michael Niedermayer

avutil: move QP2LAMBDA constant to eval

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 2c5c7f10
......@@ -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)
......
......@@ -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
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment