Lines Matching refs:other

180     CirParams &operator=(const CirParams &other) {
181 if (this == &other) return *this;
183 this->cir_num_mbs = other.cir_num_mbs;
193 AirParams &operator=(const AirParams &other) {
194 if (this == &other) return *this;
196 this->airMBs= other.airMBs;
197 this->airThreshold= other.airThreshold;
198 this->airAuto = other.airAuto;
207 VideoFrameRate &operator=(const VideoFrameRate &other) {
208 if (this == &other) return *this;
210 this->frameRateNum = other.frameRateNum;
211 this->frameRateDenom = other.frameRateDenom;
220 VideoResolution &operator=(const VideoResolution &other) {
221 if (this == &other) return *this;
223 this->width = other.width;
224 this->height = other.height;
244 VideoRateControlParams &operator=(const VideoRateControlParams &other) {
245 if (this == &other) return *this;
247 this->bitRate = other.bitRate;
248 this->initQP = other.initQP;
249 this->minQP = other.minQP;
250 this->maxQP = other.maxQP;
251 this->I_minQP = other.I_minQP;
252 this->I_maxQP = other.I_maxQP;
253 this->windowSize = other.windowSize;
254 this->targetPercentage = other.targetPercentage;
255 this->disableFrameSkip = other.disableFrameSkip;
256 this->disableBitsStuffing = other.disableBitsStuffing;
257 this->enableIntraFrameQPControl = other.enableIntraFrameQPControl;
258 this->temporalFrameRate = other.temporalFrameRate;
259 this->temporalID = other.temporalID;
269 SliceNum &operator=(const SliceNum &other) {
270 if (this == &other) return *this;
272 this->iSliceNum = other.iSliceNum;
273 this->pSliceNum= other.pSliceNum;
292 Cropping &operator=(const Cropping &other) {
293 if (this == &other) return *this;
295 this->LeftOffset = other.LeftOffset;
296 this->RightOffset = other.RightOffset;
297 this->TopOffset = other.TopOffset;
298 this->BottomOffset = other.BottomOffset;
307 SamplingAspectRatio &operator=(const SamplingAspectRatio &other) {
308 if (this == &other) return *this;
310 this->SarWidth = other.SarWidth;
311 this->SarHeight = other.SarHeight;
354 VideoParamConfigSet &operator=(const VideoParamConfigSet &other) {
355 if (this == &other) return *this;
356 this->type = other.type;
357 this->size = other.size;
389 VideoParamsCommon &operator=(const VideoParamsCommon &other) {
390 if (this == &other) return *this;
392 VideoParamConfigSet::operator=(other);
393 this->profile = other.profile;
394 this->level = other.level;
395 this->rawFormat = other.rawFormat;
396 this->resolution = other.resolution;
397 this->frameRate = other.frameRate;
398 this->intraPeriod = other.intraPeriod;
399 this->rcMode = other.rcMode;
400 this->rcParams = other.rcParams;
401 this->refreshType = other.refreshType;
402 this->cyclicFrameInterval = other.cyclicFrameInterval;
403 this->airParams = other.airParams;
404 this->disableDeblocking = other.disableDeblocking;
405 this->syncEncMode = other.syncEncMode;
406 this->codedBufNum = other.codedBufNum;
407 this->numberOfLayer = other.numberOfLayer;
440 VideoParamsAVC &operator=(const VideoParamsAVC &other) {
441 if (this == &other) return *this;
443 VideoParamConfigSet::operator=(other);
444 this->basicUnitSize = other.basicUnitSize;
445 this->VUIFlag = other.VUIFlag;
446 this->maxSliceSize = other.maxSliceSize;
447 this->idrInterval = other.idrInterval;
448 this->ipPeriod = other.ipPeriod;
449 this->refFrames = other.refFrames;
450 this->sliceNum = other.sliceNum;
451 this->delimiterType = other.delimiterType;
452 this->crop.LeftOffset = other.crop.LeftOffset;
453 this->crop.RightOffset = other.crop.RightOffset;
454 this->crop.TopOffset = other.crop.TopOffset;
455 this->crop.BottomOffset = other.crop.BottomOffset;
456 this->SAR.SarWidth = other.SAR.SarWidth;
457 this->SAR.SarHeight = other.SAR.SarHeight;
459 this->refIdx10ActiveMinus1 = other.refIdx10ActiveMinus1;
460 this->refIdx11ActiveMinus1 = other.refIdx11ActiveMinus1;
461 this->bFrameMBsOnly = other.bFrameMBsOnly;
462 this->bMBAFF = other.bMBAFF;
463 this->bEntropyCodingCABAC = other.bEntropyCodingCABAC;
464 this->bWeightedPPrediction = other.bWeightedPPrediction;
465 this->weightedBipredicitonMode = other.weightedBipredicitonMode;
466 this->bConstIpred = other.bConstIpred;
467 this->bDirect8x8Inference = other.bDirect8x8Inference;
468 this->bDirectSpatialTemporal = other.bDirectSpatialTemporal;
469 this->cabacInitIdc = other.cabacInitIdc;