HomeSort by relevance Sort by last modified time
    Searched refs:bytesValid (Results 1 - 6 of 6) sorted by null

  /external/aac/libMpegTPDec/include/
mpegFileRead.h 155 * \param bytesValid Number of bytes that were read.
161 UINT *bytesValid
  /external/aac/libFDK/include/
FDK_bitbuffer.h 154 const UINT bufferSize, UINT *bytesValid) ;
156 void FDK_Copy (HANDLE_FDK_BITBUF hBitBufDst, HANDLE_FDK_BITBUF hBitBufSrc, UINT *bytesValid) ;
FDK_bitstream.h 571 * 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)
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)
598 FDK_Copy (&hBSDst->hBitBuf, &hBSSrc->hBitBuf, bytesValid) ;
  /external/aac/libFDK/src/
FDK_bitbuffer.cpp 367 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)
421 UINT noOfBytes = fMin(bToRead, *bytesValid); //(*bytesValid < bToRead) ? *bytesValid : bToRead
    [all...]
  /external/aac/libAACdec/include/
aacdecoder_lib.h 191 external input buffer have not yet been copied into the internal input buffer (variable bytesValid).
193 In case you want to re-fill it when there are still unprocessed bytes (bytesValid is unequal 0), you
195 and therefore we recommend to re-fill the buffer only when bytesValid is 0.
    [all...]
  /frameworks/av/media/libstagefright/codecs/aacdec/
SoftAAC2.cpp 503 UINT bytesValid[FILEREAD_MAX_LAYERS] = {0};
638 bytesValid[0] = inBufferLength[0];
646 bytesValid);
652 UINT inBufferUsedLength = inBufferLength[0] - bytesValid[0];
683 if (bytesValid[0] != 0) {
684 ALOGE("bytesValid[0] != 0 should never happen");
    [all...]

Completed in 171 milliseconds