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

  /external/opencore/protocols/rtp_payload_parser/util/src/
latmpayloadparser.cpp 52 framesize(0),
176 framesize = 0;
220 framesize = 0;
295 framesize = 0;
339 framesize = 0;
407 framesize += tmp;
419 // framesize must be equal to the bytesRead if mbit is 1
421 if ((m_bit && framesize != bytesRead && !sMC->otherDataPresent) ||
422 (!m_bit && framesize < bytesRead && !sMC->otherDataPresent))
445 if ((m_bit && framesize != pktsize + (bytesRead - 1) && !sMC->otherDataPresent) /* last block */ |
    [all...]
  /external/opencore/codecs_v2/video/avc_h264/common/src/
dpb.cpp 25 int level, framesize, num_fs; local
38 framesize = (int)(((FrameHeightInMbs * PicWidthInMbs) << 7) * 3);
41 video->padded_size = (int)((((FrameHeightInMbs + 2) * (PicWidthInMbs + 2)) << 7) * 3) - framesize;
68 dpb->dpb_size = dpb->num_fs * (framesize + video->padded_size);
69 // dpb->dpb_size = (uint32)MaxDPBX2[mapLev2Idx[level]]*512 + framesize;
101 dpb->used_size += (framesize + video->padded_size);
112 int framesize, ii; /* size of one frame */ local
152 framesize = (FrameHeightInMbs * PicWidthInMbs);
158 video->mblock = (AVCMacroblock*) avcHandle->CBAVC_Malloc(userData, sizeof(AVCMacroblock) * framesize, DEFAULT_ATTR);
163 for (ii = 0; ii < framesize; ii++
    [all...]
  /frameworks/base/media/libstagefright/codecs/avc/common/src/
dpb.cpp 25 int level, framesize, num_fs; local
38 framesize = (int)(((FrameHeightInMbs * PicWidthInMbs) << 7) * 3);
41 video->padded_size = (int)((((FrameHeightInMbs + 2) * (PicWidthInMbs + 2)) << 7) * 3) - framesize;
68 dpb->dpb_size = dpb->num_fs * (framesize + video->padded_size);
69 // dpb->dpb_size = (uint32)MaxDPBX2[mapLev2Idx[level]]*512 + framesize;
101 dpb->used_size += (framesize + video->padded_size);
112 int framesize, ii; /* size of one frame */ local
152 framesize = (FrameHeightInMbs * PicWidthInMbs);
158 video->mblock = (AVCMacroblock*) avcHandle->CBAVC_Malloc(userData, sizeof(AVCMacroblock) * framesize, DEFAULT_ATTR);
163 for (ii = 0; ii < framesize; ii++
    [all...]
  /external/opencore/codecs_v2/video/avc_h264/enc/src/
avcenc_api.cpp 65 int framesize; local
180 framesize = video->FrameHeightInMbs * video->PicWidthInMbs;
182 video->mblock = (AVCMacroblock*) avcHandle->CBAVC_Malloc(userData, sizeof(AVCMacroblock) * framesize, DEFAULT_ATTR);
194 encvid->mot16x16 = (AVCMV*) avcHandle->CBAVC_Malloc(userData, sizeof(AVCMV) * framesize, DEFAULT_ATTR);
199 oscl_memset(encvid->mot16x16, 0, sizeof(AVCMV)*framesize);
201 encvid->intraSearch = (uint8*) avcHandle->CBAVC_Malloc(userData, sizeof(uint8) * framesize, DEFAULT_ATTR);
207 encvid->min_cost = (int*) avcHandle->CBAVC_Malloc(userData, sizeof(int) * framesize, DEFAULT_ATTR);
  /external/opencore/protocols/rtp_payload_parser/util/include/
latmpayloadparser.h 141 int32 framesize; // current composing frame size member in class:PV_LATM_Parser
  /external/opencore/fileformats/id3parcom/src/
pv_id3_parcom.cpp 3010 uint32 framesize = aFramesize; local
    [all...]
  /external/opencore/fileformats/mp3/parser/include/
imp3ff.h 97 uint32 FrameSize;
224 * @param framesize Size of the frame data read
228 OSCL_IMPORT_REF MP3ErrorType GetNextMediaSample(uint8 *buf, uint32 size, uint32& framesize, uint32& timestamp);
mp3parser.h 124 int32 frameSize;
253 * @param framesize Size of the frame data if the read is successful
257 MP3ErrorType GetNextMediaSample(uint8 *buf, uint32 bufsize, uint32& framesize, uint32& timestamp);
  /external/opencore/protocols/sdp/parser/src/
sdpparser.cpp 412 // fmtp and framesize payload check is provided below
443 StrPtrLen framesize("a=framesize:");
444 if (!oscl_strncmp(line_start_ptr, framesize.c_str(), framesize.length()))
447 const char *sptr = line_start_ptr + framesize.length();
452 PVMF_SDP_PARSER_LOGERROR((0, "SDP_Parser::parseSDP - Parsing a=framesize: Failed"));
467 PVMF_SDP_PARSER_LOGERROR((0, "SDP_Parser::parseSDP - Payload Mismatch in a=framesize: line"));
    [all...]
  /external/opencore/fileformats/mp3/parser/src/
mp3parser.cpp     [all...]
imp3ff.cpp 304 mp3Config.FrameSize = mp3ConfigHdr.FrameLengthInBytes;
316 OSCL_EXPORT_REF MP3ErrorType IMpeg3File::GetNextMediaSample(uint8 *buf, uint32 size, uint32& framesize, uint32& timestamp)
320 return (pMP3Parser->GetNextMediaSample(buf, size, framesize, timestamp));
    [all...]

Completed in 319 milliseconds