OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:psshsize
(Results
1 - 2
of
2
) sorted by null
/frameworks/av/media/libstagefright/
NuMediaExtractor.cpp
276
size_t
psshsize
;
local
277
if (meta->findData(kKeyPssh, &type, &pssh, &
psshsize
)) {
278
sp<ABuffer> buf = new ABuffer(
psshsize
);
279
memcpy(buf->data(), pssh,
psshsize
);
MPEG4Extractor.cpp
557
uint64_t
psshsize
= 0;
local
559
psshsize
+= 20 + mPssh[i].datalen;
561
if (
psshsize
> 0 &&
psshsize
<= UINT32_MAX) {
562
char *buf = (char*)malloc(
psshsize
);
573
mFileMetaData->setData(kKeyPssh, 'pssh', buf,
psshsize
);
[
all
...]
Completed in 46 milliseconds