atoi              614 source/common/param.cpp                 p->fpsNum = atoi(value);
atoi              619 source/common/param.cpp     OPT("frame-threads") p->frameNumThreads = atoi(value);
atoi              629 source/common/param.cpp         else if (atoi(value) < 100)
atoi              630 source/common/param.cpp             p->levelIdc = atoi(value);
atoi              638 source/common/param.cpp         p->logLevel = atoi(value);
atoi              646 source/common/param.cpp     OPT("total-frames") p->totalFrames = atoi(value);
atoi              650 source/common/param.cpp     OPT("ctu") p->maxCUSize = (uint32_t)atoi(value);
atoi              651 source/common/param.cpp     OPT("min-cu-size") p->minCUSize = (uint32_t)atoi(value);
atoi              652 source/common/param.cpp     OPT("tu-intra-depth") p->tuQTMaxIntraDepth = (uint32_t)atoi(value);
atoi              653 source/common/param.cpp     OPT("tu-inter-depth") p->tuQTMaxInterDepth = (uint32_t)atoi(value);
atoi              654 source/common/param.cpp     OPT("max-tu-size") p->maxTUSize = (uint32_t)atoi(value);
atoi              655 source/common/param.cpp     OPT("subme") p->subpelRefine = atoi(value);
atoi              656 source/common/param.cpp     OPT("merange") p->searchRange = atoi(value);
atoi              659 source/common/param.cpp     OPT("max-merge") p->maxNumMergeCand = (uint32_t)atoi(value);
atoi              663 source/common/param.cpp     OPT("rdpenalty") p->rdPenalty = atoi(value);
atoi              674 source/common/param.cpp     OPT("lookahead-slices") p->lookaheadSlices = atoi(value);
atoi              681 source/common/param.cpp             p->scenecutThreshold = atoi(value);
atoi              685 source/common/param.cpp     OPT("keyint") p->keyframeMax = atoi(value);
atoi              686 source/common/param.cpp     OPT("min-keyint") p->keyframeMin = atoi(value);
atoi              687 source/common/param.cpp     OPT("rc-lookahead") p->lookaheadDepth = atoi(value);
atoi              688 source/common/param.cpp     OPT("bframes") p->bframes = atoi(value);
atoi              689 source/common/param.cpp     OPT("bframe-bias") p->bFrameBias = atoi(value);
atoi              696 source/common/param.cpp             p->bFrameAdaptive = atoi(value);
atoi              708 source/common/param.cpp     OPT("ref") p->maxNumReferences = atoi(value);
atoi              709 source/common/param.cpp     OPT("limit-refs") p->limitReferences = atoi(value);
atoi              713 source/common/param.cpp     OPT("cbqpoffs") p->cbQpOffset = atoi(value);
atoi              714 source/common/param.cpp     OPT("crqpoffs") p->crQpOffset = atoi(value);
atoi              715 source/common/param.cpp     OPT("rd") p->rdLevel = atoi(value);
atoi              722 source/common/param.cpp             p->rdoqLevel = atoi(value);
atoi              772 source/common/param.cpp     OPT("hash") p->decodedPictureHashSEI = atoi(value);
atoi              780 source/common/param.cpp     OPT("qpstep") p->rc.qpStep = atoi(value);
atoi              783 source/common/param.cpp     OPT("aq-mode") p->rc.aqMode = atoi(value);
atoi              785 source/common/param.cpp     OPT("vbv-maxrate") p->rc.vbvMaxBitrate = atoi(value);
atoi              786 source/common/param.cpp     OPT("vbv-bufsize") p->rc.vbvBufferSize = atoi(value);
atoi              790 source/common/param.cpp     OPT("qpmax")       p->rc.qpMax = atoi(value);
atoi              798 source/common/param.cpp         p->rc.bitrate = atoi(value);
atoi              803 source/common/param.cpp         p->rc.qp = atoi(value);
atoi              897 source/common/param.cpp         p->vui.chromaSampleLocTypeTopField = atoi(value);
atoi              909 source/common/param.cpp     OPT("nr-intra") p->noiseReductionIntra = atoi(value);
atoi              910 source/common/param.cpp     OPT("nr-inter") p->noiseReductionInter = atoi(value);
atoi              913 source/common/param.cpp         int pass = x265_clip3(0, 3, atoi(value));
atoi              922 source/common/param.cpp     OPT("qg-size") p->rc.qgSize = atoi(value);
atoi              925 source/common/param.cpp     OPT("min-luma") p->minLuma = (uint16_t)atoi(value);
atoi              926 source/common/param.cpp     OPT("max-luma") p->maxLuma = (uint16_t)atoi(value);
atoi              936 source/common/param.cpp         OPT("csv-log-level") p->csvLogLevel = atoi(value);
atoi              937 source/common/param.cpp         OPT("qpmin") p->rc.qpMin = atoi(value);
atoi              939 source/common/param.cpp         OPT("log2-max-poc-lsb") p->log2MaxPocLsb = atoi(value);
atoi              942 source/common/param.cpp         OPT("slices") p->maxSlices = atoi(value);
atoi              943 source/common/param.cpp         OPT("limit-tu") p->limitTU = atoi(value);
atoi              948 source/common/param.cpp         OPT("lookahead-threads") p->lookaheadThreads = atoi(value);
atoi              954 source/common/param.cpp         OPT("analysis-reuse-level") p->analysisReuseLevel = atoi(value);
atoi              971 source/common/param.cpp         OPT("ctu-info") p->bCTUInfo = atoi(value);
atoi              972 source/common/param.cpp         OPT("scale-factor") p->scaleFactor = atoi(value);
atoi              973 source/common/param.cpp         OPT("refine-intra")p->intraRefine = atoi(value);
atoi              348 source/common/threadpool.cpp                 int count = atoi(nodeStr);
atoi              592 source/dynamicHDR10/json11/json11.cpp             return std::atoi(str.c_str() + start_pos);
atoi             2920 source/encoder/ratecontrol.cpp             rce->rpsData.deltaPOC[idx] = atoi(tmpStr);
atoi             2943 source/encoder/ratecontrol.cpp             rce->rpsData.bUsed[idx] = atoi(tmpStr) > 0;
atoi              189 source/x265.cpp             outputBitDepth = atoi(optarg);