summaryrefslogtreecommitdiff
path: root/libavcodec/x264.c
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2005-11-09 19:18:20 +0000
committerMåns Rullgård <mans@mansr.com>2005-11-09 19:18:20 +0000
commit68dce79b0077b15bf27eb3017105f226c24b40d8 (patch)
treef076d63af543ea3152562b0dec3042b5762b7410 /libavcodec/x264.c
parentaf8aa846fa5b9f2c7dcde451c872426528b8b561 (diff)
revert incorrect change
Originally committed as revision 4683 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/x264.c')
-rw-r--r--libavcodec/x264.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x264.c b/libavcodec/x264.c
index 0b08b2df80..b2e922f0a7 100644
--- a/libavcodec/x264.c
+++ b/libavcodec/x264.c
@@ -150,7 +150,7 @@ X264_init(AVCodecContext *avctx)
if(avctx->flags & CODEC_FLAG_QSCALE && avctx->global_quality > 0)
x4->params.rc.i_qp_constant =
- 12 + 6 * av_log2((double) avctx->global_quality / FF_QP2LAMBDA);
+ 12 + 6 * log2((double) avctx->global_quality / FF_QP2LAMBDA);
x4->params.i_width = avctx->width;
x4->params.i_height = avctx->height;