Home
last modified time | relevance | path

Searched refs:next_sample_id (Results 1 – 3 of 3) sorted by relevance

/third_party/ffmpeg/libavformat/
Dsegafilm.c277 int next_sample_id; in film_read_packet() local
287 next_sample_id = film->current_sample + 1; in film_read_packet()
289 if (next_sample_id >= film->sample_count) in film_read_packet()
292 next_sample = &film->sample_table[next_sample_id]; in film_read_packet()
295 next_sample_id++; in film_read_packet()
/third_party/node/deps/v8/src/profiler/
Dsampling-heap-profiler.h170 uint64_t next_sample_id() { return ++last_sample_id_; } in next_sample_id() function
Dsampling-heap-profiler.cc89 std::make_unique<Sample>(size, node, loc, this, next_sample_id()); in SampleObject()