Home
last modified time | relevance | path

Searched refs:framesize (Results 1 – 11 of 11) sorted by relevance

/external/opencore/protocols/rtp_payload_parser/util/src/
Dlatmpayloadparser.cpp52 framesize(0), in OSCL_DLL_ENTRY_POINT_DEFAULT()
176 framesize = 0; in compose()
220 framesize = 0; in compose()
295 framesize = 0; in compose()
339 framesize = 0; in compose()
407 framesize += tmp; in composeSingleFrame()
421 if ((m_bit && framesize != bytesRead && !sMC->otherDataPresent) || in composeSingleFrame()
422 (!m_bit && framesize < bytesRead && !sMC->otherDataPresent)) in composeSingleFrame()
445 …if ((m_bit && framesize != pktsize + (bytesRead - 1) && !sMC->otherDataPresent) /* last block */ || in composeSingleFrame()
446 …(!m_bit && framesize < pktsize + (bytesRead - 1) && !sMC->otherDataPresent) /* intermediate block… in composeSingleFrame()
[all …]
/external/opencore/codecs_v2/video/avc_h264/common/src/
Ddpb.cpp25 int level, framesize, num_fs; in InitDPB() local
38 framesize = (int)(((FrameHeightInMbs * PicWidthInMbs) << 7) * 3); in InitDPB()
41 … video->padded_size = (int)((((FrameHeightInMbs + 2) * (PicWidthInMbs + 2)) << 7) * 3) - framesize; in InitDPB()
68 dpb->dpb_size = dpb->num_fs * (framesize + video->padded_size); in InitDPB()
101 dpb->used_size += (framesize + video->padded_size); in InitDPB()
112 int framesize, ii; /* size of one frame */ in AVCConfigureSequence() local
152 framesize = (FrameHeightInMbs * PicWidthInMbs); in AVCConfigureSequence()
158 …AVCMacroblock*) avcHandle->CBAVC_Malloc(userData, sizeof(AVCMacroblock) * framesize, DEFAULT_ATTR); in AVCConfigureSequence()
163 for (ii = 0; ii < framesize; ii++) in AVCConfigureSequence()
/external/opencore/codecs_v2/video/avc_h264/enc/src/
Davcenc_api.cpp65 int framesize; in PVAVCEncInitialize() local
180 framesize = video->FrameHeightInMbs * video->PicWidthInMbs; in PVAVCEncInitialize()
182 …AVCMacroblock*) avcHandle->CBAVC_Malloc(userData, sizeof(AVCMacroblock) * framesize, DEFAULT_ATTR); in PVAVCEncInitialize()
194 …encvid->mot16x16 = (AVCMV*) avcHandle->CBAVC_Malloc(userData, sizeof(AVCMV) * framesize, DEFAULT_A… in PVAVCEncInitialize()
199 oscl_memset(encvid->mot16x16, 0, sizeof(AVCMV)*framesize); in PVAVCEncInitialize()
201 …encvid->intraSearch = (uint8*) avcHandle->CBAVC_Malloc(userData, sizeof(uint8) * framesize, DEFAUL… in PVAVCEncInitialize()
207 …encvid->min_cost = (int*) avcHandle->CBAVC_Malloc(userData, sizeof(int) * framesize, DEFAULT_ATTR); in PVAVCEncInitialize()
/external/opencore/fileformats/id3parcom/src/
Dpv_id3_parcom.cpp3010 uint32 framesize = aFramesize; in ReadLyricsCommFrame() local
3020 framesize = aFramesize - ID3V2_LANGUAGE_SIZE ; in ReadLyricsCommFrame()
3021 if ((framesize == 0) || (framesize > aFramesize)) in ReadLyricsCommFrame()
3036 uint32 total_size = (wchar_size * framesize) + sizeof(PvmfLyricsCommStruct) + (2 * wchar_size) ; in ReadLyricsCommFrame()
3048 iInputFile->Seek(framesize, Oscl_File::SEEKCUR); in ReadLyricsCommFrame()
3087 framesize = framesize - desc_sz - 1 ; //subtract 1 for null character in ReadLyricsCommFrame()
3089 if ((framesize > aFramesize) || (framesize == 0)) in ReadLyricsCommFrame()
3114 uint32 datasz = framesize + 1; in ReadLyricsCommFrame()
3120 iInputFile->Seek(framesize, Oscl_File::SEEKCUR); in ReadLyricsCommFrame()
3127 if ((readByteData(iInputFile, framesize, data) == false)) in ReadLyricsCommFrame()
[all …]
/external/opencore/protocols/sdp/parser/src/
Dsdpparser.cpp443 StrPtrLen framesize("a=framesize:"); in parseSDP() local
444 if (!oscl_strncmp(line_start_ptr, framesize.c_str(), framesize.length())) in parseSDP()
447 const char *sptr = line_start_ptr + framesize.length(); in parseSDP()
/external/opencore/engines/player/test/data/
Dpv_amr_mpeg4.sdp24 …el-id=8;config=000001b008000001b5090000010000000120008440fa282c2090a31f;framesize=176-144;decode_b…
/external/opencore/protocols/rtp_payload_parser/util/include/
Dlatmpayloadparser.h141 int32 framesize; // current composing frame size variable
/external/opencore/fileformats/mp3/parser/include/
Dimp3ff.h228 …OSCL_IMPORT_REF MP3ErrorType GetNextMediaSample(uint8 *buf, uint32 size, uint32& framesize, uint32…
Dmp3parser.h257 …MP3ErrorType GetNextMediaSample(uint8 *buf, uint32 bufsize, uint32& framesize, uint32& timestamp);
/external/opencore/fileformats/mp3/parser/src/
Dmp3parser.cpp1571 MP3ErrorType MP3Parser::GetNextMediaSample(uint8 *buffer, uint32 size, uint32& framesize, uint32& t… in GetNextMediaSample() argument
1583 framesize = 0; in GetNextMediaSample()
1725 framesize = 0; in GetNextMediaSample()
1749 framesize = mp3FrameSizeInBytes; in GetNextMediaSample()
1754 framesize = mp3FrameSizeInBytes; in GetNextMediaSample()
Dimp3ff.cpp316 …rorType IMpeg3File::GetNextMediaSample(uint8 *buf, uint32 size, uint32& framesize, uint32& timesta… in GetNextMediaSample() argument
320 return (pMP3Parser->GetNextMediaSample(buf, size, framesize, timestamp)); in GetNextMediaSample()