HomeSort by relevance Sort by last modified time
    Searched full:bytesvalid (Results 1 - 7 of 7) sorted by null

  /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...]
  /frameworks/av/media/libstagefright/codecs/aacdec/
SoftAAC2.cpp 310 UINT bytesValid[FILEREAD_MAX_LAYERS] = {0};
468 bytesValid[0] = inBufferLength[0];
474 while (bytesValid[0] > 0 && decoderErr == AAC_DEC_NOT_ENOUGH_BITS) {
478 bytesValid);
487 ALOGW("Not enough bits, bytesValid %d", bytesValid[0]);
495 UINT inBufferUsedLength = inBufferLength[0] - bytesValid[0];
  /external/aac/libFDK/include/
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) ;
FDK_bitbuffer.h 154 const UINT bufferSize, UINT *bytesValid) ;
156 void FDK_Copy (HANDLE_FDK_BITBUF hBitBufDst, HANDLE_FDK_BITBUF hBitBufSrc, UINT *bytesValid) ;
  /external/aac/libMpegTPDec/include/
mpegFileRead.h 155 * \param bytesValid Number of bytes that were read.
161 UINT *bytesValid
tpdec_lib.h 339 * So it grabs whatever it can from pBuffer and returns information (bytesValid) so that at a
349 * again, once it contains no available valid bytes anymore (meaning bytesValid equal 0).
350 * \param bytesValid Number of bitstream bytes in the external bitstream buffer that have not yet been
  /external/aac/libAACdec/include/
aacdecoder_lib.h 192 external input buffer have not yet been copied into the internal input buffer (variable bytesValid).
194 In case you want to re-fill it when there are still unprocessed bytes (bytesValid is unequal 0), you
196 and therefore we recommend to re-fill the buffer only when bytesValid is 0.
    [all...]

Completed in 94 milliseconds