mirror of https://git.ffmpeg.org/ffmpeg.git
Merge commit 'cf7d2f2d2134c0854edf2db91e7436ac2bc9874f'
* commit 'cf7d2f2d2134c0854edf2db91e7436ac2bc9874f': lavc: Simplify checking quant bias option Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
This commit is contained in:
commit
773570a9dc
|
@ -360,8 +360,7 @@ static av_cold int dnxhd_encode_init(AVCodecContext *avctx)
|
|||
|
||||
#if FF_API_QUANT_BIAS
|
||||
FF_DISABLE_DEPRECATION_WARNINGS
|
||||
if (ctx->intra_quant_bias == FF_DEFAULT_QUANT_BIAS &&
|
||||
avctx->intra_quant_bias != FF_DEFAULT_QUANT_BIAS)
|
||||
if (avctx->intra_quant_bias != FF_DEFAULT_QUANT_BIAS)
|
||||
ctx->intra_quant_bias = avctx->intra_quant_bias;
|
||||
FF_ENABLE_DEPRECATION_WARNINGS
|
||||
#endif
|
||||
|
|
|
@ -710,11 +710,9 @@ FF_ENABLE_DEPRECATION_WARNINGS
|
|||
|
||||
#if FF_API_QUANT_BIAS
|
||||
FF_DISABLE_DEPRECATION_WARNINGS
|
||||
if (s->intra_quant_bias == FF_DEFAULT_QUANT_BIAS &&
|
||||
avctx->intra_quant_bias != FF_DEFAULT_QUANT_BIAS)
|
||||
if (avctx->intra_quant_bias != FF_DEFAULT_QUANT_BIAS)
|
||||
s->intra_quant_bias = avctx->intra_quant_bias;
|
||||
if (s->inter_quant_bias == FF_DEFAULT_QUANT_BIAS &&
|
||||
avctx->inter_quant_bias != FF_DEFAULT_QUANT_BIAS)
|
||||
if (avctx->inter_quant_bias != FF_DEFAULT_QUANT_BIAS)
|
||||
s->inter_quant_bias = avctx->inter_quant_bias;
|
||||
FF_ENABLE_DEPRECATION_WARNINGS
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue