Home
last modified time | relevance | path

Searched refs:temporal_layer (Results 1 – 18 of 18) sorted by relevance

/external/webrtc/modules/rtp_rtcp/source/rtcp_packet/
Dtarget_bitrate.cc24 : spatial_layer(0), temporal_layer(0), target_bitrate_kbps(0) {} in BitrateItem()
27 uint8_t temporal_layer, in BitrateItem() argument
30 temporal_layer(temporal_layer), in BitrateItem()
91 uint8_t temporal_layer, in AddTargetBitrate() argument
94 RTC_DCHECK_LE(temporal_layer, 0x0F); in AddTargetBitrate()
97 BitrateItem(spatial_layer, temporal_layer, target_bitrate_kbps)); in AddTargetBitrate()
119 buffer[index] = (item.spatial_layer << 4) | item.temporal_layer; in Create()
Dtarget_bitrate.h32 uint8_t temporal_layer,
36 uint8_t temporal_layer; member
46 uint8_t temporal_layer,
Dtarget_bitrate_unittest.cc41 EXPECT_EQ(expected.temporal_layer, actual.temporal_layer); in ExpectBirateItemEquals()
/external/webrtc/modules/video_coding/codecs/vp8/
Dtemporal_layers_checker.cc45 uint8_t temporal_layer, in CheckAndUpdateBufferState() argument
50 if (state->temporal_layer > 0 && !state->is_keyframe) { in CheckAndUpdateBufferState()
58 state->temporal_layer > temporal_layer) { in CheckAndUpdateBufferState()
64 state->temporal_layer = temporal_layer; in CheckAndUpdateBufferState()
Ddefault_temporal_layers_unittest.cc692 int temporal_layer) { in ValidateReference() argument
694 if (temporal_layer > 0 && buffer_state.timestamp > 0) { in ValidateReference()
699 EXPECT_LE(buffer_state.temporal_idx, temporal_layer); in ValidateReference()
/external/webrtc/modules/rtp_rtcp/source/
Drtp_generic_frame_descriptor.cc33 void RtpGenericFrameDescriptor::SetTemporalLayer(int temporal_layer) { in SetTemporalLayer() argument
34 RTC_DCHECK_GE(temporal_layer, 0); in SetTemporalLayer()
35 RTC_DCHECK_LT(temporal_layer, kMaxTemporalLayers); in SetTemporalLayer()
36 temporal_layer_ = temporal_layer; in SetTemporalLayer()
Drtp_generic_frame_descriptor.h44 void SetTemporalLayer(int temporal_layer);
Drtcp_transceiver_impl.cc545 item.temporal_layer >= kMaxTemporalStreams) { in HandleTargetBitrate()
549 << item.spatial_layer << ", temporal layer " << item.temporal_layer; in HandleTargetBitrate()
552 bitrate_allocation.SetBitrate(item.spatial_layer, item.temporal_layer, in HandleTargetBitrate()
Drtcp_receiver.cc948 item.temporal_layer >= kMaxTemporalStreams) { in HandleXrTargetBitrate()
951 << item.spatial_layer << ", temporal index " << item.temporal_layer in HandleXrTargetBitrate()
954 bitrate_allocation.SetBitrate(item.spatial_layer, item.temporal_layer, in HandleXrTargetBitrate()
Drtcp_sender_unittest.cc736 EXPECT_EQ(tl, item.temporal_layer); in TEST_F()
/external/webrtc/modules/video_coding/codecs/vp8/include/
Dtemporal_layers_checker.h40 BufferState() : is_keyframe(true), temporal_layer(0), sequence_number(0) {} in BufferState()
42 uint8_t temporal_layer; member
48 uint8_t temporal_layer,
/external/webrtc/rtc_tools/rtc_event_log_visualizer/
Danalyzer_common.h69 LayerDescription(uint32_t ssrc, uint8_t spatial_layer, uint8_t temporal_layer) in LayerDescription()
72 temporal_layer(temporal_layer) {} in LayerDescription()
78 return temporal_layer < other.temporal_layer;
82 uint8_t temporal_layer; member
Danalyzer_common.cc79 << layer.temporal_layer; in GetLayerName()
Danalyzer.cc1141 bitrate_item.temporal_layer); in CreateBitrateAllocationGraph()
/external/webrtc/api/transport/rtp/
Ddependency_descriptor.h40 FrameDependencyTemplate& T(int temporal_layer);
106 inline FrameDependencyTemplate& FrameDependencyTemplate::T(int temporal_layer) { in T() argument
107 this->temporal_id = temporal_layer; in T()
/external/webrtc/modules/video_coding/utility/
Dsimulcast_test_fixture_impl.cc106 void GetLastEncodedFrameInfo(int* temporal_layer, in GetLastEncodedFrameInfo() argument
109 *temporal_layer = temporal_layer_[stream]; in GetLastEncodedFrameInfo()
383 int temporal_layer = -1; in VerifyTemporalIdxAndSyncForAllSpatialLayers() local
386 encoder_callback->GetLastEncodedFrameInfo(&temporal_layer, &layer_sync, i); in VerifyTemporalIdxAndSyncForAllSpatialLayers()
387 EXPECT_EQ(expected_temporal_idx[i], temporal_layer); in VerifyTemporalIdxAndSyncForAllSpatialLayers()
/external/mesa3d/src/gallium/frontends/va/
Dpicture_av1_enc.c752 uint16_t temporal_layer = (op_pt_idc >> av1->temporal_id) & 1; in av1_frame_header() local
754 if (op_pt_idc == 0 || (temporal_layer && spatial_layer)) in av1_frame_header()
/external/webrtc/logging/rtc_event_log/
Drtc_event_log_unittest_helper.cc1197 EXPECT_EQ(original_bitrates[i].temporal_layer, in VerifyLoggedExtendedReports()
1198 logged_bitrates[i].temporal_layer); in VerifyLoggedExtendedReports()