Searched defs:bytesValid (Results 1 - 2 of 2) sorted by relevance

/external/aac/libFDK/include/
H A DFDK_bitstream.h571 * The bytesValid variable returns the number of ramaining valid bytes in extern inputBuffer.
576 * \param bytesValid Input: number of valid bytes in inputBuffer. Output: bytes still left unread in inputBuffer.
579 FDK_INLINE void FDKfeedBuffer (HANDLE_FDK_BITSTREAM hBitStream, const UCHAR inputBuffer [], const UINT bufferSize, UINT *bytesValid) argument
582 FDK_Feed(&hBitStream->hBitBuf, (UCHAR*)inputBuffer, bufferSize, bytesValid ) ;
588 * bytesValid variable returns the number of ramaining valid bytes in source BitBuffer.
592 * \param bytesValid Input: number of valid bytes in inputBuffer. Output: bytes still left unread in inputBuffer.
595 FDK_INLINE void FDKcopyBuffer (HANDLE_FDK_BITSTREAM hBSDst, HANDLE_FDK_BITSTREAM hBSSrc, UINT *bytesValid) argument
598 FDK_Copy (&hBSDst->hBitBuf, &hBSSrc->hBitBuf, bytesValid) ;
/external/aac/libFDK/src/
H A DFDK_bitbuffer.cpp367 UINT *bytesValid)
369 inputBuffer = &inputBuffer [bufferSize - *bytesValid] ;
374 UINT noOfBytes = fMin(bToRead, *bytesValid); //(bToRead < *bytesValid) ? bToRead : *bytesValid ;
394 *bytesValid -= bTotal ;
415 void FDK_Copy (HANDLE_FDK_BITBUF h_BitBufDst, HANDLE_FDK_BITBUF h_BitBufSrc, UINT *bytesValid) argument
421 UINT noOfBytes = fMin(bToRead, *bytesValid); //(*bytesValid < bToRead) ? *bytesValid
364 FDK_Feed(HANDLE_FDK_BITBUF hBitBuf, UCHAR *RESTRICT inputBuffer, const UINT bufferSize, UINT *bytesValid) argument
[all...]

Completed in 720 milliseconds