Home
last modified time | relevance | path

Searched refs:num_frames_ (Results 1 – 7 of 7) 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/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::__anona15121900111::ScrollingImageFrameGenerator
/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/webp/src/demux/
Ddemux.c69 int num_frames_; member
333 status = StoreFrame(dmux->num_frames_ + 1, anmf_payload_size, mem, frame); in ParseAnimationFrame()
337 ++dmux->num_frames_; in ParseAnimationFrame()
428 dmux->num_frames_ = 1; in ParseSingleImage()
683 dmux->num_frames_ = 1; in CreateRawImageDemuxer()
783 case WEBP_FF_FRAME_COUNT: return (uint32_t)dmux->num_frames_; in WebPDemuxGetI()
834 iter->num_frames = dmux->num_frames_; in SynthesizeFrame()
853 if (frame_num > dmux->num_frames_) return 0; in SetFrame()
854 if (frame_num == 0) frame_num = dmux->num_frames_; in SetFrame()
/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()