Home
last modified time | relevance | path

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

/external/webrtc/webrtc/common_audio/
Dchannel_buffer.h48 num_frames_(num_frames), in data_()
55 &data_[i * num_frames_ + j * num_frames_per_band_]; in data_()
106 RTC_DCHECK_LT(start_frame, num_frames_); in Slice()
116 size_t num_frames() const { return num_frames_; } in num_frames()
120 size_t size() const {return num_frames_ * num_channels_; } in size()
131 const size_t num_frames_; variable
/external/webrtc/webrtc/modules/rtp_rtcp/source/
Dproducer_fec.cc90 num_frames_(0), in ProducerFec()
153 ++num_frames_; in AddRtpPacketAndGenerateFec()
161 (num_frames_ == params_.max_fec_frames || in AddRtpPacketAndGenerateFec()
172 num_frames_ = 0; in AddRtpPacketAndGenerateFec()
195 num_frames_; in MinimumMediaPacketsReached()
242 num_frames_ = 0; in GetFecPackets()
Dproducer_fec.h79 int num_frames_; variable
/external/tensorflow/tensorflow/core/grappler/utils/
Dframe.h38 FrameView() : is_inferred_(false), num_frames_(0) {} in FrameView()
57 int num_frames() const { return num_frames_; } in num_frames()
65 int num_frames_; // number of frames present in a graph variable
Dframe.cc140 num_frames_ = static_cast<int>(frame_name_to_id.size()); in InferFromGraphViewT()
/external/webrtc/webrtc/test/
Dframe_generator.cc145 num_frames_(files.size()), in ScrollingImageFrameGenerator()
146 current_frame_num_(num_frames_ - 1), in ScrollingImageFrameGenerator()
150 RTC_DCHECK_GT(num_frames_, 0u); in ScrollingImageFrameGenerator()
170 size_t frame_num = (ms_since_start / kFrameDisplayTime) % num_frames_; in NextFrame()
188 current_frame_num_ = (current_frame_num_ + 1) % num_frames_; in UpdateSourceFrame()
227 const size_t num_frames_; member in webrtc::test::__anon53024f1c0111::ScrollingImageFrameGenerator
/external/tensorflow/tensorflow/examples/android/jni/object_tracking/
Dobject_tracker.h114 return num_frames_; in GetNumFrames()
176 ++num_frames_; in IncrementFrameIndex()
201 int num_frames_; variable
245 stream << "Num frames: " << tracker.num_frames_ << std::endl;
Dobject_tracker.cc47 num_frames_(0), in ObjectTracker()
105 LOGV("Received frame %d", num_frames_); in NextFrame()
113 curr_time_, timestamp, num_frames_); in NextFrame()
128 if (num_frames_ == 1) { in NextFrame()
145 if (detector_.get() != NULL && num_frames_ % kDetectEveryNFrames == 0) { in NextFrame()
/external/webrtc/webrtc/modules/audio_processing/include/
Daudio_processing.h516 num_frames_(calculate_frames(sample_rate_hz)) {} in sample_rate_hz_()
520 num_frames_ = calculate_frames(value); in set_sample_rate_hz()
532 size_t num_frames() const { return num_frames_; } in num_frames()
533 size_t num_samples() const { return num_channels_ * num_frames_; } in num_samples()
552 size_t num_frames_; variable
/external/v4l2_codec2/tests/c2_e2e_test/jni/
Dvideo_decoder_e2e_test.cpp76 num_frames_ = std::stoi(fields[3]); in ParseTestVideoData()
77 ASSERT_GT(num_frames_, 0); in ParseTestVideoData()
99 int num_frames() const { return num_frames_; } in num_frames()
117 int num_frames_ = 0; member in android::C2VideoDecoderTestEnvironment
/external/webp/src/demux/
Ddemux.c69 int num_frames_; member
335 status = StoreFrame(dmux->num_frames_ + 1, anmf_payload_size, mem, frame); in ParseAnimationFrame()
339 ++dmux->num_frames_; in ParseAnimationFrame()
430 dmux->num_frames_ = 1; in ParseSingleImage()
685 dmux->num_frames_ = 1; in CreateRawImageDemuxer()
785 case WEBP_FF_FRAME_COUNT: return (uint32_t)dmux->num_frames_; in WebPDemuxGetI()
836 iter->num_frames = dmux->num_frames_; in SynthesizeFrame()
855 if (frame_num > dmux->num_frames_) return 0; in SetFrame()
856 if (frame_num == 0) frame_num = dmux->num_frames_; in SetFrame()
/external/libvpx/libvpx/vp9/
Dsimple_encode.cc115 num_frames_ = num_frames; in SimpleEncode()
139 for (i = 0; i < num_frames_; ++i) { in ComputeFirstPassStats()
302 num_frames_); in GetCodingFrameNum()
Dsimple_encode.h97 int num_frames_; variable
/external/webrtc/webrtc/modules/audio_coding/neteq/
Dpayload_splitter_unittest.cc599 num_frames_ = parameters.first; in SetUp()
603 size_t num_frames_; member in webrtc::SplitIlbcTest
613 size_t payload_length_bytes = frame_length_bytes_ * num_frames_; in TEST_P()
633 EXPECT_EQ(num_frames_, packet_list.size()); in TEST_P()