Home | History | Annotate | Download | only in src

Lines Matching refs:pSrc

683     UChar *pSrc, *pDst, byte;
701 pSrc = bitstream1->bitstreamBuffer;
702 pDst = pSrc + movebyte;
704 M4VENC_MEMCPY(pDst, pSrc, bitstream1->byteCount + 1);
707 M4VENC_MEMCPY(pSrc, bitstream2->bitstreamBuffer, bitstream2->byteCount + 1);
710 pSrc = pDst;
718 *pDst++ = byte | (pSrc[0] >> bitused);
722 *pDst++ = ((pSrc[0] << leftover) | (pSrc[1] >> bitused));
723 pSrc++;
741 pSrc = bitstream1->bitstreamBuffer + bitstream1->byteCount;
743 //*pSrc = (pSrc[0]>>leftover)<<leftover; /* make sure the rest of bits are zeros */
745 bitstream1->word = (UInt)((pSrc[0]) >> leftover);