Home
last modified time | relevance | path

Searched refs:temporal_id (Results 1 – 25 of 49) sorted by relevance

12

/external/webrtc/modules/video_coding/codecs/av1/
Dscalability_structure_unittest.cc119 EXPECT_EQ(first_templates.temporal_id, 0); in TEST_P()
124 next_template.temporal_id == prev_template.temporal_id) { in TEST_P()
127 next_template.temporal_id == prev_template.temporal_id + 1) { in TEST_P()
130 next_template.temporal_id == 0) { in TEST_P()
136 << next_template.temporal_id in TEST_P()
139 << prev_template.temporal_id << ")."; in TEST_P()
162 EXPECT_GE(frame.temporal_id, 0) << " for frame " << frame_id; in TEST_P()
192 EXPECT_GE(frame.temporal_id, base_frame.temporal_id) in TEST_P()
Dlibaom_av1_unittest.cc158 return std::tie(lhs.spatial_id, lhs.temporal_id) == in operator ==()
159 std::tie(rhs.spatial_id, rhs.temporal_id); in operator ==()
162 return std::tie(lhs.spatial_id, lhs.temporal_id) < in operator <()
163 std::tie(rhs.spatial_id, rhs.temporal_id); in operator <()
166 return s << "S" << layer.spatial_id << "T" << layer.temporal_id; in operator <<()
170 int temporal_id = 0; member
250 allocation.SetBitrate(kv.first.spatial_id, kv.first.temporal_id, in TEST_P()
278 LayerId layer_id = {layer.spatial_id, layer.temporal_id}; in TEST_P()
Dscalability_structure_s2t1.cc83 frame_info->temporal_id = config.TemporalId(); in OnEncodeDone()
Dscalability_structure_l2t1.cc94 frame_info->temporal_id = config.TemporalId(); in OnEncodeDone()
Dscalability_structure_l2t1_key.cc94 frame_info->temporal_id = config.TemporalId(); in OnEncodeDone()
Dscalability_structure_l1t2.cc102 frame_info->temporal_id = config.TemporalId(); in OnEncodeDone()
Dscalability_structure_l1t3.cc100 frame_info->temporal_id = config.TemporalId(); in OnEncodeDone()
/external/webrtc/modules/rtp_rtcp/source/
Drtp_sender_video.cc325 descriptor.frame_dependencies.temporal_id = in AddRtpHeaderExtensions()
492 const uint8_t temporal_id = GetTemporalId(video_header); in SendVideo() local
539 ? AllowRetransmission(temporal_id, retransmission_settings, in SendVideo()
587 (temporal_id == 0 || temporal_id == kNoTemporalIdx)) { in SendVideo()
696 uint8_t temporal_id, in AllowRetransmission() argument
705 UpdateConditionalRetransmit(temporal_id, in AllowRetransmission()
710 if (temporal_id == kNoTemporalIdx) in AllowRetransmission()
713 if ((retransmission_settings & kRetransmitBaseLayer) && temporal_id == 0) in AllowRetransmission()
716 if ((retransmission_settings & kRetransmitHigherLayers) && temporal_id > 0) in AllowRetransmission()
738 uint8_t temporal_id, in UpdateConditionalRetransmit() argument
[all …]
Drtp_dependency_descriptor_writer.cc38 RTC_DCHECK_LT(next.temporal_id, DependencyDescriptor::kMaxTemporalIds); in GetNextLayerIdc()
41 next.temporal_id == previous.temporal_id) { in GetNextLayerIdc()
44 next.temporal_id == previous.temporal_id + 1) { in GetNextLayerIdc()
47 next.temporal_id == 0) { in GetNextLayerIdc()
171 descriptor_.frame_dependencies.temporal_id == in FindBestTemplate()
172 frame_template.temporal_id; in FindBestTemplate()
245 RTC_DCHECK_EQ(templates[0].temporal_id, 0); in WriteTemplateLayers()
Drtp_dependency_descriptor_reader.cc87 int temporal_id = 0; in ReadTemplateLayers() local
97 last_template.temporal_id = temporal_id; in ReadTemplateLayers()
102 temporal_id++; in ReadTemplateLayers()
103 if (temporal_id >= DependencyDescriptor::kMaxTemporalIds) { in ReadTemplateLayers()
108 temporal_id = 0; in ReadTemplateLayers()
Drtp_format_vp8_test_helper.cc150 int temporal_id = (buffer[*offset] & 0xC0) >> 6; in CheckTIDAndKeyIdx() local
155 EXPECT_EQ(temporal_id, hdr_info_->temporalIdx); in CheckTIDAndKeyIdx()
159 EXPECT_EQ(temporal_id, 0); in CheckTIDAndKeyIdx()
Drtp_sender_video.h143 bool AllowRetransmission(uint8_t temporal_id,
175 bool UpdateConditionalRetransmit(uint8_t temporal_id,
/external/webrtc/common_video/generic_frame_descriptor/
Dgeneric_frame_info.cc29 GenericFrameInfo::Builder& GenericFrameInfo::Builder::T(int temporal_id) { in T() argument
30 info_.temporal_id = temporal_id; in T()
Dgeneric_frame_info.h53 Builder& T(int temporal_id);
/external/webrtc/api/transport/rtp/
Ddependency_descriptor.h67 lhs.temporal_id == rhs.temporal_id &&
74 int temporal_id = 0; member
126 this->temporal_id = temporal_layer; in T()
/external/libaom/libaom/test/
Ddecode_scalability_test.cc24 int temporal_id; member
57 EXPECT_EQ(img.temporal_id, header.temporal_id); in DecompressedFrameHook()
/external/webrtc/test/
Dfake_encoder.h69 SpatialLayer(int size, int temporal_id) in SpatialLayer()
70 : size(size), temporal_id(temporal_id) {} in SpatialLayer()
74 int temporal_id = 0; member
Dfake_encoder.cc188 int temporal_id = last_frame_info_.layers.size() > i in NextFrame() local
189 ? ++last_frame_info_.layers[i].temporal_id % in NextFrame()
192 frame_info.layers.emplace_back(0, temporal_id); in NextFrame()
204 layer_info.temporal_id = 0; in NextFrame()
217 (target_bitrate.GetBitrate(i, layer_info.temporal_id) + 7) * in NextFrame()
/external/webrtc/modules/video_coding/utility/
Dsimulcast_rate_allocator.cc49 int temporal_id, in GetTemporalRateAllocation() argument
53 RTC_CHECK_GE(temporal_id, 0); in GetTemporalRateAllocation()
54 RTC_CHECK_LT(temporal_id, num_layers); in GetTemporalRateAllocation()
56 return kBaseHeavy3TlRateAllocation[temporal_id]; in GetTemporalRateAllocation()
58 return kLayerRateAllocation[num_layers - 1][temporal_id]; in GetTemporalRateAllocation()
Dsimulcast_rate_allocator.h38 int temporal_id,
/external/webrtc/modules/video_coding/
Ddecoding_state.cc260 bool VCMDecodingState::ContinuousLayer(int temporal_id, int tl0_pic_id) const { in ContinuousLayer() argument
262 if (temporal_id == kNoTemporalIdx || tl0_pic_id == kNoTl0PicIdx) in ContinuousLayer()
267 temporal_id == 0) in ContinuousLayer()
271 if (temporal_id != 0) in ContinuousLayer()
Ddecoding_state.h62 bool ContinuousLayer(int temporal_id, int tl0_pic_id) const;
/external/libvpx/libvpx/vp9/encoder/
Dvp9_svc_layercontext.c510 int spatial_id, temporal_id; in set_flags_and_fb_idx_for_temporal_mode3() local
518 temporal_id = cpi->svc.temporal_layer_id = in set_flags_and_fb_idx_for_temporal_mode3()
524 if (!temporal_id) { in set_flags_and_fb_idx_for_temporal_mode3()
529 } else if (cpi->svc.layer_context[temporal_id].is_key_frame) { in set_flags_and_fb_idx_for_temporal_mode3()
537 } else if (temporal_id == 1) { in set_flags_and_fb_idx_for_temporal_mode3()
582 if (temporal_id == 0) { in set_flags_and_fb_idx_for_temporal_mode3()
585 if (cpi->svc.layer_context[temporal_id].is_key_frame) { in set_flags_and_fb_idx_for_temporal_mode3()
595 } else if (temporal_id == 1) { in set_flags_and_fb_idx_for_temporal_mode3()
618 int spatial_id, temporal_id; in set_flags_and_fb_idx_for_temporal_mode2() local
620 temporal_id = cpi->svc.temporal_layer_id = in set_flags_and_fb_idx_for_temporal_mode2()
[all …]
/external/libhevc/encoder/
Dihevce_frame_process_utils.h74 WORD32 temporal_id,
Dihevce_frame_process_utils.c157 WORD32 temporal_id, in ihevce_get_cur_frame_qp() argument
183 i4_curr_qp = static_params_frame_qp + temporal_id + 1; in ihevce_get_cur_frame_qp()

12