Lines Matching refs:frame_positions
40 const std::vector<fpos_t>& frame_positions, in VideoFile() argument
44 frame_positions_(frame_positions), in VideoFile()
205 std::vector<fpos_t> frame_positions; in OpenY4mFile() local
217 frame_positions.push_back(pos); in OpenY4mFile()
221 if (frame_positions.empty()) { in OpenY4mFile()
225 RTC_LOG(LS_INFO) << "Video has " << frame_positions.size() << " frames"; in OpenY4mFile()
227 return new rtc::RefCountedObject<VideoFile>(*width, *height, frame_positions, in OpenY4mFile()
256 std::vector<fpos_t> frame_positions; in OpenYuvFile() local
260 frame_positions.push_back(pos); in OpenYuvFile()
263 if (frame_positions.empty()) { in OpenYuvFile()
267 RTC_LOG(LS_INFO) << "Video has " << frame_positions.size() << " frames"; in OpenYuvFile()
269 return new rtc::RefCountedObject<VideoFile>(width, height, frame_positions, in OpenYuvFile()