Home
last modified time | relevance | path

Searched refs:temporal_up_switch (Results 1 – 14 of 14) sorted by relevance

/external/webrtc/webrtc/modules/include/
Dmodule_common_types.h85 temporal_up_switch[0] = false; in SetGofInfoVP9()
92 temporal_up_switch[0] = false; in SetGofInfoVP9()
97 temporal_up_switch[1] = true; in SetGofInfoVP9()
104 temporal_up_switch[0] = false; in SetGofInfoVP9()
109 temporal_up_switch[1] = true; in SetGofInfoVP9()
114 temporal_up_switch[2] = true; in SetGofInfoVP9()
119 temporal_up_switch[3] = false; in SetGofInfoVP9()
133 temporal_up_switch[i] = src.temporal_up_switch[i]; in CopyGofInfoVP9()
143 bool temporal_up_switch[kMaxVp9FramesInGof]; member
160 temporal_up_switch = false; in InitRTPVideoHeaderVP9()
[all …]
/external/webrtc/webrtc/modules/rtp_rtcp/source/
Drtp_format_vp9_unittest.cc35 EXPECT_EQ(expected.temporal_up_switch, actual.temporal_up_switch); in VerifyHeader()
54 EXPECT_EQ(expected.gof.temporal_up_switch[i], in VerifyHeader()
55 actual.gof.temporal_up_switch[i]); in VerifyHeader()
259 expected_.temporal_up_switch = true; // U in TEST_F()
283 expected_.temporal_up_switch = true; // U in TEST_F()
351 expected_.gof.temporal_up_switch[0] = true; in TEST_F()
401 expected_.gof.temporal_up_switch[0] = true; in TEST_F()
402 expected_.gof.temporal_up_switch[1] = true; in TEST_F()
403 expected_.gof.temporal_up_switch[2] = false; in TEST_F()
522 expected_.temporal_up_switch = kUbit ? true : false; in TEST_F()
[all …]
Drtp_format_vp9.cc198 RETURN_FALSE_ON_ERROR(writer->WriteBits(vp9.temporal_up_switch ? 1 : 0, 1)); in WriteLayerInfoCommon()
294 writer->WriteBits(vp9.gof.temporal_up_switch[i] ? 1 : 0, 1)); in WriteSsData()
340 vp9->temporal_up_switch = u_bit ? true : false; in ParseLayerInfoCommon()
453 vp9->gof.temporal_up_switch[i] = u_bit ? true : false; in ParseSsData()
/external/webrtc/webrtc/modules/video_coding/
Djitter_buffer_unittest.cc45 packet_.codecSpecificHeader.codecHeader.VP9.temporal_up_switch = false; in SetUp()
160 EXPECT_FALSE(packet_.codecSpecificHeader.codecHeader.VP9.temporal_up_switch); in TEST_F()
167 EXPECT_TRUE(packet_.codecSpecificHeader.codecHeader.VP9.temporal_up_switch); in TEST_F()
174 EXPECT_TRUE(packet_.codecSpecificHeader.codecHeader.VP9.temporal_up_switch); in TEST_F()
181 EXPECT_FALSE(packet_.codecSpecificHeader.codecHeader.VP9.temporal_up_switch); in TEST_F()
884 packet_->codecSpecificHeader.codecHeader.VP9.temporal_up_switch = false; in TEST_F()
944 packet_->codecSpecificHeader.codecHeader.VP9.temporal_up_switch = true; in TEST_F()
952 packet_->codecSpecificHeader.codecHeader.VP9.temporal_up_switch = true; in TEST_F()
963 packet_->codecSpecificHeader.codecHeader.VP9.temporal_up_switch = false; in TEST_F()
974 frame_out->CodecSpecific()->codecSpecific.VP9.temporal_up_switch); in TEST_F()
[all …]
Dframe_buffer.cc74 _codecSpecificInfo.codecSpecific.VP9.temporal_up_switch = in SetGofInfo()
75 gof_info.temporal_up_switch[idx]; in SetGofInfo()
Dencoded_frame.cc162 _codecSpecificInfo.codecSpecific.VP9.temporal_up_switch = in CopyCodecSpecific()
163 header->codecHeader.VP9.temporal_up_switch; in CopyCodecSpecific()
Dgeneric_encoder.cc55 rtp->codecHeader.VP9.temporal_up_switch = in CopyCodecSpecific()
56 info->codecSpecific.VP9.temporal_up_switch; in CopyCodecSpecific()
Dsession_info.cc91 .codecSpecificHeader.codecHeader.VP9.temporal_up_switch; in LayerSync()
124 packets_.front().codecSpecificHeader.codecHeader.VP9.temporal_up_switch = in SetGofInfo()
125 gof_info.temporal_up_switch[idx]; in SetGofInfo()
Djitter_buffer.cc190 vp9->temporal_up_switch = it->second.temporal_up_switch[gof_idx]; in UpdatePacket()
/external/webrtc/webrtc/modules/video_coding/include/
Dvideo_codec_interface.h59 bool temporal_up_switch; member
/external/webrtc/webrtc/modules/video_coding/codecs/interface/
Dvideo_codec_interface.h61 bool temporal_up_switch; member
/external/webrtc/webrtc/video/
Dvideo_send_stream_tests.cc1966 EXPECT_FALSE(vp9.temporal_up_switch); in VerifyTemporalLayerStructure0()
1972 EXPECT_FALSE(vp9.temporal_up_switch); in VerifyTemporalLayerStructure1()
1979 EXPECT_EQ(vp9.temporal_idx > 0, vp9.temporal_up_switch); in VerifyTemporalLayerStructure2()
1996 EXPECT_FALSE(vp9.temporal_up_switch); in VerifyTemporalLayerStructure3()
2000 EXPECT_TRUE(vp9.temporal_up_switch); in VerifyTemporalLayerStructure3()
2003 EXPECT_EQ(last_vp9_.temporal_idx == 0, vp9.temporal_up_switch); in VerifyTemporalLayerStructure3()
2054 EXPECT_FALSE(vp9.temporal_up_switch); in VerifyCommonHeader()
/external/webrtc/webrtc/modules/video_coding/codecs/vp9/
Dvp9_impl.cc587 vp9_info->temporal_up_switch = false; in PopulateCodecSpecific()
634 vp9_info->temporal_up_switch = gof_.temporal_up_switch[vp9_info->gof_idx]; in PopulateCodecSpecific()
/external/webrtc/talk/app/webrtc/java/jni/
Dandroidmediaencoder_jni.cc943 info.codecSpecific.VP9.temporal_up_switch = true; in DeliverPendingOutputs()