[x265] [PATCH] ratecontrol: initialize frameThreads

Rafaël Carré funman at videolan.org
Mon Oct 21 14:46:46 CEST 2013


Fix a floating point exceptio
---
 source/encoder/ratecontrol.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/source/encoder/ratecontrol.cpp b/source/encoder/ratecontrol.cpp
index b588bde..9085ec3 100644
--- a/source/encoder/ratecontrol.cpp
+++ b/source/encoder/ratecontrol.cpp
@@ -129,6 +129,7 @@ void RateControl::calcAdaptiveQuantFrame(TComPic *pic)
 RateControl::RateControl(TEncCfg * _cfg)
 {
     this->cfg = _cfg;
+    frameThreads = cfg->param.frameNumThreads;
     bitrate = cfg->param.rc.bitrate * 1000;
     frameDuration = 1.0 / cfg->param.frameRate;
     ncu = (int)((cfg->param.sourceHeight * cfg->param.sourceWidth) / pow((int)cfg->param.maxCUSize, 2.0));
-- 
1.8.3.2



More information about the x265-devel mailing list