diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-07-21 15:30:45 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-07-21 15:30:45 +0200 |
commit | 88efc013b10cbbb5c6b4281c88c4ad1f66d45af8 (patch) | |
tree | b39f8f984a08f60d911602bf890ab0069a78ecf7 /libavutil/opt.c | |
parent | 2c5c7f108926f935890843fc54b1ef03c14847bf (diff) | |
download | ffmpeg-88efc013b10cbbb5c6b4281c88c4ad1f66d45af8.tar.gz |
avutil: move QP2LAMBDA constant to eval
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil/opt.c')
-rw-r--r-- | libavutil/opt.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavutil/opt.c b/libavutil/opt.c index 56ed4ebb90..9ea4aa50ed 100644 --- a/libavutil/opt.c +++ b/libavutil/opt.c @@ -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 }; |