diff options
author | Etienne Buira <etienne.buira.lists@free.fr> | 2011-05-26 21:00:37 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-05-27 04:37:01 +0200 |
commit | 28768579aafd31acc74b6534dbc3ed91548afe83 (patch) | |
tree | f1a8a1b1cf0b82f65f5e68baa7f0894fdf7600c1 | |
parent | 152d3519445e59567fea53e18332768072fd6348 (diff) | |
download | ffmpeg-28768579aafd31acc74b6534dbc3ed91548afe83.tar.gz |
Fix typo
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/libx264.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/libx264.c b/libavcodec/libx264.c index 7a58f2b6e0..a45789db62 100644 --- a/libavcodec/libx264.c +++ b/libavcodec/libx264.c @@ -200,7 +200,7 @@ static void check_default_settings(AVCodecContext *avctx) if (score >= 5) { av_log(avctx, AV_LOG_ERROR, "Default settings detected, using medium profile\n"); x4->preset = av_strdup("medium"); - if (avctx->bit_rate == 200*100) + if (avctx->bit_rate == 200*1000) avctx->crf = 23; } } |