Lines Matching refs:MS_S32
132 MS_S32 nCodecType; // 0/1/2/3: MPEG4/H263/H264/JPEG
133 MS_S32 nWidth, nHeight;
136 MS_S32 int_fTargetFrameRate;
137 MS_S32 nBitrate; // Meaningful only when rcMethod!=CONST_QUALITY (bits)
139 MS_S32 nMaxBitrate; // Meaningful only when rcMethod=CONSTRAINED_VARIABLE_BITRATE (Bits)
141 MS_S32 nConstQP; // Meaningful only when rcMethod=CONST_QUALITY
144 MS_S32 nVPSize; // Video packet size in bits.
145 …MS_S32 nVPMbRow; // Video packet size in number of MB rows. If H.263, this must be multiple of "…
148 MS_S32 nPCount; // Number of P-frames between I-frames
149 MS_S32 nBCount; // Number of B-frames between P-frames // Suggest: 0, 1, 2
157 MS_S32 m_nCodecType;
158 MS_S32 m_nWidth, m_nHeight;
159 …MS_S32 m_nTargetFrameRateNum, m_nTargetFrameRateDeNum, m_nTargetFrameRateInt; // The target rate i…
160 MS_S32 m_nBitrate;
161 MS_S32 m_nMaxBitrate; // Only when CONSTRAINED_VARIABLE_BITRATE
162 MS_S32 m_nConstQP; // Only when CONST_QUALITY
163 MS_S32 m_nVPSize, m_nVPMbRow;
165 MS_S32 m_nPCount, m_nBCount;
169 MS_S32 m_nAvgBitsPerFrame;
170 MS_S32 m_nBitsPerFrame[3]; // I, P, B
174 MS_S32 m_nFrameCount; // How many frame coded
175 MS_S32 m_nBufFullness; // Rate control buffer
179 MS_S32 m_nLastFrameBits, m_nLastFrameAvgQStep[2];
180 MS_S32 m_nLastTargetBits;
183 MS_S32 m_nTargetFullness;
184 MS_S32 m_nDeputyCount, m_nMinDeputyCount;
187 MS_S32 m_nLongTermQP64;
191 MS_S32 m_nTargetBits; // target number of bits of current frame
192 MS_S32 m_nTotalMB; // number of macroblocks in a frame
193 MS_S32 m_nMBN; // Accumulated handled MB count (within one frame)
194 MS_S32 m_nFrameQStep;
195 MS_S32 m_nFrameType;
198 MS_S32 m_nMaxOffset;
199 MS_S32* m_BitrateGauge;
200 MS_S32 m_nGaugeCount, m_nGaugeIndex, m_nGaugeBitrate;
201 MS_S32 m_nMaxFrozenFrame;
204 MS_S32 m_nMinQP, m_nMaxQP;
205 MS_S32 m_nMinQStep, m_nMaxQStep;
206 MS_S32 m_nFrameSkipThrQP;
210 MS_S32 m_nTargetMbBits;
211 MS_S32 m_nTargetUsedBits;
212 MS_S32 m_nUsedBits[3]; // For HW pipeline delay
213 MS_S32 m_nSumAct;
214 MS_S32 m_nMbWidth, m_nPrevQP, m_nLeftQP, m_nPrevTopQP[MAX_MB_WIDTH];
215 MS_S32 m_nLastTargetQP; // For sig_dump
217 MS_S32 m_nNewPacket; // New GOB, video packet, slice... Simulating HW er_en
218 MS_S32 m_nLastVPBits;
221 MS_S32* m_pMBBitsArray; // Only for DEBUG usage.
228 MS_S32 cvbr_InitFrame(CVBRRateControl* ct, MS_S32 nFrameType, MS_S8 FieldType); // Return the in…
229 MS_S32 cvbr_UpdateFrame(CVBRRateControl* ct, MS_S32 totalUsedBits, MS_S8 bDummyFrame, MS_S8 FieldTy…
231 MS_S32 cvbr_InitMB(CVBRRateControl* ct, MS_S32 nVar, const MS_S32 nPrevQP, const MS_S32 nBits, MS_S…
233 MS_S32 rcQP2Qstep(CVBRRateControl* ct, MS_S32 QP);
234 MS_S32 rcQstep2QP(CVBRRateControl* ct, MS_S32 QstepX32);