HomeSort by relevance Sort by last modified time
    Searched refs:layerSync (Results 1 - 12 of 12) sorted by null

  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/vp8/
default_temporal_layers_unittest.cc 100 EXPECT_EQ(expected_layer_sync[i], vp8_info.layerSync);
140 EXPECT_EQ(expected_layer_sync[i], vp8_info.layerSync);
180 EXPECT_EQ(expected_layer_sync[i], vp8_info.layerSync);
209 EXPECT_EQ(true, vp8_info.layerSync);
215 EXPECT_EQ(true, vp8_info.layerSync);
realtime_temporal_layers.cc 206 vp8_info->layerSync = false;
211 vp8_info->layerSync = true;
223 vp8_info->layerSync = true;
225 vp8_info->layerSync = false;
231 vp8_info->layerSync = true;
default_temporal_layers.cc 250 vp8_info->layerSync = false;
255 vp8_info->layerSync = true;
268 vp8_info->layerSync = true;
270 vp8_info->layerSync = false;
276 vp8_info->layerSync = true;
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
encoded_frame.cc 110 _codecSpecificInfo.codecSpecific.VP8.layerSync = false;
123 _codecSpecificInfo.codecSpecific.VP8.layerSync =
124 header->codecHeader.VP8.layerSync;
generic_encoder.cc 35 (*rtp)->codecHeader.VP8.layerSync = info->codecSpecific.VP8.layerSync;
decoding_state_unittest.cc 308 packet.codecSpecificHeader.codecHeader.VP8.layerSync = true;
329 packet.codecSpecificHeader.codecHeader.VP8.layerSync = false;
343 packet.codecSpecificHeader.codecHeader.VP8.layerSync = true;
356 packet.codecSpecificHeader.codecHeader.VP8.layerSync = true;
session_info.cc 80 bool VCMSessionInfo::LayerSync() const {
84 return packets_.front().codecSpecificHeader.codecHeader.VP8.layerSync;
  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/interface/
video_codec_interface.h 39 bool layerSync;
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
rtp_format_vp8_unittest.cc 94 hdr_info_.layerSync = false;
301 // Verify Tl0PicIdx and TID fields, and layerSync bit.
309 hdr_info_.layerSync = true;
484 packet[2] = 0x80; // TID(2) + LayerSync(false)
494 EXPECT_FALSE(rtp_header.type.Video.codecHeader.VP8.layerSync);
524 packet[5] = 0x40 | 0x20 | 0x11; // TID(1) + LayerSync(true) + KEYIDX(17).
557 input_header.layerSync = false;
579 EXPECT_EQ(rtp_header.type.Video.codecHeader.VP8.layerSync,
580 input_header.layerSync);
rtp_format_vp8.cc 80 vp8->layerSync = (**data & 0x20) ? true : false; // Y bit
194 rtp_header->type.Video.codecHeader.VP8.layerSync = false;
682 *data_field |= hdr_info_.layerSync ? kYBit : 0;
719 assert((hdr_info_.layerSync == false) ||
rtp_format_vp8_test_helper.cc 207 EXPECT_BIT_Y_EQ(buffer_[payload_start_], hdr_info_->layerSync ? 1 : 0);
  /external/chromium_org/third_party/webrtc/modules/interface/
module_common_types.h 43 layerSync = false;
55 bool layerSync; // This frame is a layer sync frame.

Completed in 5754 milliseconds