diff options
author | Timo Rothenpieler <timo@rothenpieler.org> | 2017-02-20 22:38:39 +0100 |
---|---|---|
committer | Timo Rothenpieler <timo@rothenpieler.org> | 2017-02-20 22:38:39 +0100 |
commit | f747e1533ab0770cb2b4743998c5bda7b0719f23 (patch) | |
tree | cd7d44b7b2df46fd87428705f17a0b01ec290d6f /libavcodec/nvenc_h264.c | |
parent | 7e538c947547b04267f0b307b0e7d96a84d558e0 (diff) | |
download | ffmpeg-f747e1533ab0770cb2b4743998c5bda7b0719f23.tar.gz |
avcodec/nvenc: allow forcing keyframes by default
Diffstat (limited to 'libavcodec/nvenc_h264.c')
-rw-r--r-- | libavcodec/nvenc_h264.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/nvenc_h264.c b/libavcodec/nvenc_h264.c index 76dc48bfdf..3f71204afb 100644 --- a/libavcodec/nvenc_h264.c +++ b/libavcodec/nvenc_h264.c @@ -92,7 +92,7 @@ static const AVOption options[] = { { "no-scenecut", "When lookahead is enabled, set this to 1 to disable adaptive I-frame insertion at scene cuts", OFFSET(no_scenecut), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, VE }, { "forced-idr", "If forcing keyframes, force them as IDR frames.", - OFFSET(forced_idr), AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, VE }, + OFFSET(forced_idr), AV_OPT_TYPE_BOOL, { .i64 = 0 }, -1, 1, VE }, { "b_adapt", "When lookahead is enabled, set this to 0 to disable adaptive B-frame decision", OFFSET(b_adapt), AV_OPT_TYPE_BOOL, { .i64 = 1 }, 0, 1, VE }, { "spatial-aq", "set to 1 to enable Spatial AQ", OFFSET(aq), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, VE }, |