Searched refs:ObuParser (Results 1 – 6 of 6) sorted by relevance
/external/libgav1/src/ |
D | obu_parser.cc | 140 bool ObuParser::ParseColorConfig(ObuSequenceHeader* sequence_header) { in ParseColorConfig() 247 bool ObuParser::ParseTimingInfo(ObuSequenceHeader* sequence_header) { in ParseTimingInfo() 274 bool ObuParser::ParseDecoderModelInfo(ObuSequenceHeader* sequence_header) { in ParseDecoderModelInfo() 292 bool ObuParser::ParseOperatingParameters(ObuSequenceHeader* sequence_header, in ParseOperatingParameters() 313 bool ObuParser::ParseSequenceHeader(bool seen_frame_header) { in ParseSequenceHeader() 501 void ObuParser::MarkInvalidReferenceFrames() { in MarkInvalidReferenceFrames() 528 bool ObuParser::ParseFrameSizeAndRenderSize() { in ParseFrameSizeAndRenderSize() 564 bool ObuParser::ParseSuperResParametersAndComputeImageSize() { in ParseSuperResParametersAndComputeImageSize() 598 bool ObuParser::ValidateInterFrameSize() const { in ValidateInterFrameSize() 618 bool ObuParser::ParseReferenceOrderHint() { in ParseReferenceOrderHint() [all …]
|
D | obu_parser.h | 224 class ObuParser : public Allocable { 226 ObuParser(const uint8_t* const data, size_t size, int operating_point, in ObuParser() function 235 ObuParser(const ObuParser& rhs) = delete; 236 ObuParser& operator=(const ObuParser& rhs) = delete;
|
D | decoder_impl.h | 53 EncodedFrame(ObuParser* const obu, const DecoderState& state, in EncodedFrame() 208 bool IsNewSequenceHeader(const ObuParser& obu);
|
D | decoder_impl.cc | 645 std::unique_ptr<ObuParser> obu(new (std::nothrow) ObuParser( in InitializeFrameThreadPoolAndTemporalUnitQueue() 832 std::unique_ptr<ObuParser> obu(new (std::nothrow) ObuParser( in ParseAndSchedule() 1019 std::unique_ptr<ObuParser> obu(new (std::nothrow) ObuParser( in DecodeTemporalUnit() 1692 bool DecoderImpl::IsNewSequenceHeader(const ObuParser& obu) { in IsNewSequenceHeader()
|
D | obu_parser_test.cc | 273 obu_.reset(new (std::nothrow) ObuParser(nullptr, 0, 0, buffer_pool_.get(), in Init() 283 obu_.reset(new (std::nothrow) ObuParser( in Init() 854 std::unique_ptr<ObuParser> obu_; 864 ObuParser(nullptr, 0, 0, buffer_pool_.get(), &decoder_state_)); in TEST_F() 866 obu_.reset(new (std::nothrow) ObuParser(nullptr, 10, 0, buffer_pool_.get(), in TEST_F() 870 ObuParser(kDefaultTemporalDelimiter.data(), 0, 0, in TEST_F()
|
/external/libgav1/tests/fuzzer/ |
D | obu_parser_fuzzer.cc | 50 libgav1::ObuParser parser(data, size, 0, &buffer_pool, &decoder_state); in ParseObu()
|