Searched defs:nextStartCode (Results 1 - 2 of 2) sorted by relevance

/frameworks/av/libvideoeditor/vss/stagefrightshells/src/
H A DVideoEditorUtils.cpp232 const uint8_t *nextStartCode = &data[length - bytesLeft]; local
233 *paramSetLen = nextStartCode - data;
261 return nextStartCode;
308 const uint8_t *nextStartCode = data; local
322 nextStartCode = parseParamSet(&ctx, tmp + 4, bytesLeft - 4, type,
332 nextStartCode = parseParamSet(&ctx, tmp + 4, bytesLeft - 4, type,
339 if (nextStartCode == NULL) {
344 bytesLeft -= nextStartCode - tmp;
345 tmp = nextStartCode;
/frameworks/av/media/libstagefright/
H A DMPEG4Writer.cpp1734 const uint8_t *nextStartCode = findNextStartCode(data, length); local
1735 *paramSetLen = nextStartCode - data;
1763 return nextStartCode;
1794 const uint8_t *nextStartCode = data; local
1808 nextStartCode = parseParamSet(tmp + 4, bytesLeft - 4, type, &paramSetLen);
1817 nextStartCode = parseParamSet(tmp + 4, bytesLeft - 4, type, &paramSetLen);
1823 if (nextStartCode == NULL) {
1828 bytesLeft -= nextStartCode - tmp;
1829 tmp = nextStartCode;

Completed in 109 milliseconds