diff --git a/libavcodec/libvpxenc.c b/libavcodec/libvpxenc.c
index c073ebf98ba900fafd14dacbcd53539acbdd6c3c..2c04866d5c7559453af86d4e42d43fa577ccf127 100644
--- a/libavcodec/libvpxenc.c
+++ b/libavcodec/libvpxenc.c
@@ -240,6 +240,7 @@ static av_cold int vp8_init(AVCodecContext *avctx)
     //convert [1,51] -> [0,63]
     enccfg.rc_min_quantizer = ((avctx->qmin * 5 + 1) >> 2) - 1;
     enccfg.rc_max_quantizer = ((avctx->qmax * 5 + 1) >> 2) - 1;
+    enccfg.rc_dropframe_thresh = avctx->frame_skip_threshold;
 
     //_enc_init() will balk if kf_min_dist differs from max w/VPX_KF_AUTO
     if (avctx->keyint_min == avctx->gop_size)