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

  /external/toybox/lib/
args.c 132 static int gotflag(struct getoptflagstate *gof, struct opts *opt)
138 if (gof->noerror) return 1;
139 help_exit("Unknown option %s", gof->arg);
148 for (clr=gof->opts, i=1; clr; clr = clr->next, i<<=1)
155 gof->excludes |= opt->dex[2];
156 if (opt->flags&2) gof->stopearly=2;
158 if (toys.optflags & gof->excludes) {
162 for (bad=gof->opts, i=1; ;bad = bad->next, i<<=1) {
170 if (!gof->arg) {
172 gof->arg = ""
379 struct getoptflagstate gof; local
    [all...]
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
rtp_format_vp9_unittest.cc 52 EXPECT_EQ(expected.gof.num_frames_in_gof, actual.gof.num_frames_in_gof);
53 for (size_t i = 0; i < expected.gof.num_frames_in_gof; i++) {
54 EXPECT_EQ(expected.gof.temporal_up_switch[i],
55 actual.gof.temporal_up_switch[i]);
56 EXPECT_EQ(expected.gof.temporal_idx[i], actual.gof.temporal_idx[i]);
57 EXPECT_EQ(expected.gof.num_ref_pics[i], actual.gof.num_ref_pics[i]);
58 for (uint8_t j = 0; j < expected.gof.num_ref_pics[i]; j++)
    [all...]
rtp_format_vp9.cc 132 RTC_DCHECK_LE(hdr.gof.num_frames_in_gof, kMaxVp9FramesInGof);
137 if (hdr.gof.num_frames_in_gof > 0) {
141 length += hdr.gof.num_frames_in_gof; // T, U, R
142 for (size_t i = 0; i < hdr.gof.num_frames_in_gof; ++i) {
143 RTC_DCHECK_LE(hdr.gof.num_ref_pics[i], kMaxVp9RefPics);
144 length += hdr.gof.num_ref_pics[i]; // R times
273 RTC_DCHECK_LE(vp9.gof.num_frames_in_gof, kMaxVp9FramesInGof);
274 bool g_bit = vp9.gof.num_frames_in_gof > 0;
289 RETURN_FALSE_ON_ERROR(writer->WriteUInt8(vp9.gof.num_frames_in_gof));
291 for (size_t i = 0; i < vp9.gof.num_frames_in_gof; ++i)
    [all...]
  /external/webrtc/webrtc/modules/video_coding/codecs/interface/
video_codec_interface.h 71 GofInfoVP9 gof; member in struct:webrtc::CodecSpecificInfoVP9
  /external/webrtc/webrtc/modules/video_coding/include/
video_codec_interface.h 69 GofInfoVP9 gof; member in struct:webrtc::CodecSpecificInfoVP9
  /external/webrtc/webrtc/modules/video_coding/
encoded_frame.cc 190 _codecSpecificInfo.codecSpecific.VP9.gof.CopyGofInfoVP9(
191 header->codecHeader.VP9.gof);
generic_encoder.cc 73 rtp->codecHeader.VP9.gof.CopyGofInfoVP9(info->codecSpecific.VP9.gof);
jitter_buffer.cc 129 ss_map_[packet.timestamp] = packet.codecSpecificHeader.codecHeader.VP9.gof;
170 GofInfoVP9 gof = ss_map_.begin()->second; local
172 ss_map_[timestamp] = gof;
    [all...]
jitter_buffer_unittest.cc 47 packet_.codecSpecificHeader.codecHeader.VP9.gof.SetGofInfoVP9(
893 packet_->codecSpecificHeader.codecHeader.VP9.gof.SetGofInfoVP9(
    [all...]
  /external/webrtc/webrtc/modules/include/
module_common_types.h 200 GofInfoVP9 gof; member in struct:webrtc::RTPVideoHeaderVP9
  /external/webrtc/talk/app/webrtc/java/jni/
androidmediaencoder_jni.cc     [all...]
  /external/webrtc/webrtc/modules/video_coding/codecs/vp9/
vp9_impl.cc 648 vp9_info->gof.CopyGofInfoVP9(gof_);
    [all...]

Completed in 242 milliseconds