diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2023-08-25 11:35:01 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2023-09-06 01:02:07 +0200 |
commit | bf600db2a0c43979d509fee9c196dbe9bf78601c (patch) | |
tree | 6e0ac671158db0237434d8014d0e9cb83d646fd4 /libavcodec/libx264.c | |
parent | d464a687c9dd03246795d62151809167e8381932 (diff) | |
download | ffmpeg-bf600db2a0c43979d509fee9c196dbe9bf78601c.tar.gz |
lavc/libx264: do not unconditionally set x4->params.analyse.b_fast_pskip
Fix output change regression introduced in 418c954e318.
Diffstat (limited to 'libavcodec/libx264.c')
-rw-r--r-- | libavcodec/libx264.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/libx264.c b/libavcodec/libx264.c index ce849d6c9a..cc5e1ba5b1 100644 --- a/libavcodec/libx264.c +++ b/libavcodec/libx264.c @@ -1190,7 +1190,6 @@ FF_ENABLE_DEPRECATION_WARNINGS } x4->params.analyse.b_mb_info = x4->mb_info; - x4->params.analyse.b_fast_pskip = 1; // update AVCodecContext with x264 parameters avctx->has_b_frames = x4->params.i_bframe ? |