Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEtienne Buira <etienne.buira.lists@free.fr>2011-05-26 23:00:37 +0400
committerMichael Niedermayer <michaelni@gmx.at>2011-05-27 06:37:01 +0400
commit28768579aafd31acc74b6534dbc3ed91548afe83 (patch)
treef1a8a1b1cf0b82f65f5e68baa7f0894fdf7600c1 /libavcodec
parent152d3519445e59567fea53e18332768072fd6348 (diff)
Fix typo
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/libx264.c2
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;
}
}