OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:AVCDecoderConfigurationRecord
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/media/mp4/
box_definitions.cc
313
AVCDecoderConfigurationRecord
::
AVCDecoderConfigurationRecord
()
320
AVCDecoderConfigurationRecord
::~
AVCDecoderConfigurationRecord
() {}
321
FourCC
AVCDecoderConfigurationRecord
::BoxType() const { return FOURCC_AVCC; }
323
bool
AVCDecoderConfigurationRecord
::Parse(BoxReader* reader) {
box_definitions.h
150
struct MEDIA_EXPORT
AVCDecoderConfigurationRecord
: Box {
151
DECLARE_BOX_METHODS(
AVCDecoderConfigurationRecord
);
185
AVCDecoderConfigurationRecord
avcc;
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/h264/
AvcConfigurationBox.java
41
public
AVCDecoderConfigurationRecord
avcDecoderConfigurationRecord
= new
AVCDecoderConfigurationRecord
();
49
return
avcDecoderConfigurationRecord
.configurationVersion;
53
return
avcDecoderConfigurationRecord
.avcProfileIndication;
57
return
avcDecoderConfigurationRecord
.profileCompatibility;
61
return
avcDecoderConfigurationRecord
.avcLevelIndication;
65
return
avcDecoderConfigurationRecord
.lengthSizeMinusOne;
69
return Collections.unmodifiableList(
avcDecoderConfigurationRecord
.sequenceParameterSets);
73
return Collections.unmodifiableList(
avcDecoderConfigurationRecord
.pictureParameterSets)
[
all
...]
Completed in 472 milliseconds