Searched refs:Length (Results 1 - 18 of 18) sorted by relevance

/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dbitstream_io.h32 PV_STATUS BitstreamPutBits(BitstreamEncVideo *stream, Int Length, UInt Value);
33 PV_STATUS BitstreamPutGT16Bits(BitstreamEncVideo *stream, Int Length, ULong Value);
H A Dbitstream_io.cpp108 /* Function : BitstreamPutBits(BitstreamEncVideo *stream, Int Length,
111 /* Purpose : put Length (1-16) number of bits to the stream */
115 /* Length bits length (should belong to 1 to 16) */
120 PV_STATUS BitstreamPutBits(BitstreamEncVideo *stream, Int Length, UInt Value) argument
124 if (stream->bitLeft > Length)
126 stream->word <<= Length;
127 stream->word |= Value; /* assuming Value is not larger than Length */
128 stream->bitLeft -= Length;
135 Length -= stream->bitLeft;
136 stream->word |= ((UInt)Value >> Length);
168 BitstreamPutGT16Bits(BitstreamEncVideo *stream, Int Length, ULong Value) argument
[all...]
/frameworks/base/media/mca/filterfw/native/core/
H A Dgeometry.cpp26 float Point::Length() const { function in class:android::filterfw::Point
31 float length = Length();
42 return diff.Length();
H A Dgeometry.h36 float Length() const;
/frameworks/av/media/libstagefright/codecs/aacenc/SampleCode/
H A DAAC_E_SAMPLES.c227 inData.Length = bytesLeft;
229 outData.Length = 1024*8;
237 outData.Length = 1024*8;
249 fwrite(outData.Buffer, 1, outData.Length, outfile);
/frameworks/av/media/libstagefright/codecs/common/include/
H A DvoType.h167 VO_U32 Length; /*!< Buffer size in byte */ member in struct:__anon468
/frameworks/base/media/mca/filterpacks/native/base/
H A Dgeometry.cpp25 float Point::Length() const { function in class:android::filterfw::Point
30 float length = Length();
41 return diff.Length();
H A Dgeometry.h36 float Length() const;
H A Dvec_types.h40 T Length() { function in class:android::filterfw::VecBase
/frameworks/av/media/libstagefright/codecs/aacenc/
H A DAACEncoder.cpp298 inputData.Length = nSamples * sizeof(int16_t);
310 outputData.Length = buffer->size() - nOutputBytes;
313 outPtr += outputData.Length;
314 nOutputBytes += outputData.Length;
H A DSoftAACEncoder.cpp527 inputData.Length = numBytesPerInputFrame;
543 outputData.Length = outAvailable - nOutputBytes;
547 outPtr += outputData.Length;
548 nOutputBytes += outputData.Length;
/frameworks/av/media/libstagefright/codecs/amrwbenc/SampleCode/
H A DAMRWB_E_SAMPLE.c201 inData.Length = Relens;
217 fwrite(OutputBuf, 1, outData.Length + size1, fdst);
222 fwrite(outData.Buffer, 1, outData.Length, fdst);
/frameworks/av/media/libstagefright/codecs/aacenc/src/
H A Daacenc.c182 hAacEnc->inlen = pInput->Length / sizeof(short);
242 pOutput->Length = 0;
249 if(NULL == pOutput || NULL == pOutput->Buffer || pOutput->Length < (6144/8)*hAacEnc->config.nChannelsOut/(sizeof(Word32)))
258 &pOutput->Length);
/frameworks/av/media/libstagefright/codecs/amrwbenc/
H A DSoftAMRWBEncoder.cpp436 inputData.Length = mInputSize;
447 outputData.Length = outAvailable;
452 outHeader->nFilledLen = outputData.Length;
/frameworks/rs/api/
H A Drs_vector_math.spec179 summary: Length of a vector
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/
H A DvoAMRWBEnc.c1719 stream->set_len = pInput->Length;
1767 pOutput->Length = gData->outputSize; /* get the output buffer length */
/frameworks/av/media/libstagefright/matroska/
H A DMatroskaExtractor.cpp64 virtual int Length(long long* total, long long* available) { function in struct:android::DataSourceReader
/frameworks/base/
H A Dcompiled-classes-phone8227 sun.security.util.Length

Completed in 868 milliseconds