Home
last modified time | relevance | path

Searched defs:Parser (Results 1 – 8 of 8) sorted by relevance

/system/cros-codecs/src/codec/vp8/
Dparser.rs348 pub struct Parser { struct
350 segmentation: Segmentation,
352 mb_lf_adjust: MbLfAdjustments,
354 coeff_prob: [[[[u8; 11]; 3]; 8]; 4],
356 mv_prob: [[u8; 19]; 2],
358 mode_probs: ModeProbs,
410 impl Parser { implementation
731 impl Default for Parser { implementation
/system/cros-codecs/src/codec/vp9/
Dparser.rs597 pub struct Parser { struct
615 impl Parser { argument
/system/cros-codecs/src/codec/av1/
Dparser.rs1424 pub struct Parser { struct
1425 stream_format: StreamFormat,
1426 operating_point: u32,
1428 seen_frame_header: bool,
1429 operating_point_idc: u16,
1430 should_probe_for_annexb: bool,
1454 impl Parser { argument
3994 impl Default for Parser { implementation
4021 impl Clone for Parser { implementation
/system/core/init/
Dparser.cpp35 Parser::Parser() {} in Parser() function in android::init::Parser
/system/extras/boottime_tools/bootanalyze/
Dbugreport_anayze.py136 class Parser: class
/system/tools/aidl/
Dparser.cpp334 Parser::Parser(const std::string& filename, std::string& raw_buffer, bool is_preprocessed) in Parser() function in Parser
/system/cros-codecs/src/codec/h264/
Dparser.rs1666 pub struct Parser { struct
1671 impl Parser { argument
/system/cros-codecs/src/codec/h265/
Dparser.rs2200 pub struct Parser { struct
2206 impl Parser { argument
4154 fn dispatch_parse_call(parser: &mut Parser, nalu: Nalu<NaluHeader>) -> Result<(), String> { in dispatch_parse_call()