OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:avcc
(Results
1 - 3
of
3
) sorted by null
/frameworks/av/media/libstagefright/
Utils.cpp
261
static size_t reassembleAVCC(const sp<ABuffer> &csd0, const sp<ABuffer> csd1, char *
avcc
) {
263
avcc
[0] = 1; // version
264
avcc
[1] = 0x64; // profile
265
avcc
[2] = 0; // unused (?)
266
avcc
[3] = 0xd; // level
267
avcc
[4] = 0xff; // reserved+size
283
avcc
[avccidx++] = size >> 8;
284
avcc
[avccidx++] = size & 0xff;
285
memcpy(
avcc
+avccidx, csd0->data() + lastparamoffset, size);
297
avcc
[5] = 0xe0 | numparams
443
char
avcc
[1024]; \/\/ that oughta be enough, right?
local
[
all
...]
/external/chromium_org/media/mp4/
box_definitions.h
185
AVCDecoderConfigurationRecord
avcc
;
member in struct:media::mp4::VideoSampleEntry
/frameworks/av/media/libstagefright/matroska/
MatroskaExtractor.cpp
178
const uint8_t *
avcc
;
local
181
kKeyAVCC, &dummy, (const void **)&
avcc
, &avccSize));
185
mNALSizeLen = 1 + (
avcc
[4] & 3);
Completed in 44 milliseconds