Home
last modified time | relevance | path

Searched refs:base_frame (Results 1 – 3 of 3) sorted by relevance

/external/webrtc/modules/video_coding/svc/
Dscalability_structure_unittest.cc232 const auto& base_frame = frame_infos[base_frame_id]; in TEST_P() local
233 EXPECT_GE(frame.spatial_id, base_frame.spatial_id) in TEST_P()
235 EXPECT_GE(frame.temporal_id, base_frame.temporal_id) in TEST_P()
259 const auto& base_frame = frame_infos[base_frame_id]; in TEST_P() local
260 EXPECT_NE(base_frame.decode_target_indications[dt], in TEST_P()
264 EXPECT_NE(base_frame.decode_target_indications[dt], in TEST_P()
/external/libgav1/src/dsp/
Dinverse_transform_test.cc117 cur_frame[y * kMaxBlockSize + x] = base_frame[y * kMaxBlockSize + x] = in Reset()
128 alignas(kMaxAlignment) DstPixel base_frame[kTotalPixels]; member
212 inverse_transform_mem_.base_frame); in SetUp()
350 if (!test_utils::CompareBlocks(inverse_transform_mem_.base_frame, in TestRandomValues()
456 if (!test_utils::CompareBlocks(inverse_transform_mem_.base_frame, in TestDcOnlyRandomValue()
/external/webrtc/logging/rtc_event_log/
Drtc_event_log_parser.cc2966 LoggedFrameDecoded base_frame; in StoreFrameDecodedEvents() local
2967 base_frame.timestamp = Timestamp::Millis(proto.timestamp_ms()); in StoreFrameDecodedEvents()
2968 base_frame.ssrc = proto.ssrc(); in StoreFrameDecodedEvents()
2969 base_frame.render_time_ms = proto.render_time_ms(); in StoreFrameDecodedEvents()
2970 base_frame.width = proto.width(); in StoreFrameDecodedEvents()
2971 base_frame.height = proto.height(); in StoreFrameDecodedEvents()
2972 base_frame.codec = GetRuntimeCodecType(proto.codec()); in StoreFrameDecodedEvents()
2975 base_frame.qp = static_cast<uint8_t>(proto.qp()); in StoreFrameDecodedEvents()
2977 decoded_frames_[base_frame.ssrc].push_back(base_frame); in StoreFrameDecodedEvents()