Lines Matching full:bitdemand
143 int bitDemand = 0;
152 bitDemand += 11 ; /* syncword */
153 bitDemand += 13 ; /* audioMuxLengthBytes */
167 bitDemand+=1;
170 bitDemand += hAss->streamMuxConfigBits;
175 bitDemand += 8*hAss->otherDataLenBytes;
178 if ( bitDemand % 8 ) {
179 hAss->fillBits = 8 - (bitDemand % 8);
180 bitDemand += hAss->fillBits ;
186 return bitDemand ;
192 int bitDemand = 0;
205 streamDataLength -= bitDemand ;
207 bitDemand+=8;
210 bitDemand += 8;
217 bitDemand += 2;
233 bitDemand+=4;
242 bitDemand+=4; /* streamID */
245 streamDataLength -= bitDemand ;
247 bitDemand+=8;
251 bitDemand += 8;
253 /*bitDemand += 1; endFlag
269 bitDemand+=4;
283 return bitDemand ;
645 UINT bitDemand = 0;
652 bitDemand = transportEnc_LatmCountFixBitDemandHeader ( hAss );
654 bitDemand += transportEnc_LatmCountVarBitDemandHeader ( hAss , streamDataLength /*- bitDemand*/);
660 return bitDemand;