Lines Matching defs:timestamp
101 pa_atomic_t timestamp;
207 uint32_t timestamp;
227 if (pa_rtp_recv(s->rtp_context, &chunk, s->userdata->module->core->mempool, ×tamp, &now) < 0)
237 s->offset = timestamp;
240 /* Check whether there was a timestamp overflow */
241 k = (int64_t) timestamp - (int64_t) s->offset;
242 j = (int64_t) 0x100000000LL - (int64_t) s->offset + (int64_t) timestamp;
254 pa_log_warn("Using artificial time instead of timestamp");
269 /* The next timestamp we expect */
270 s->offset = timestamp + (uint32_t) (chunk.length / pa_rtp_context_get_frame_size(s->rtp_context));
272 pa_atomic_store(&s->timestamp, (int) now.tv_sec);
506 pa_atomic_store(&s->timestamp, (int) now.tv_sec);
643 pa_atomic_store(&s->timestamp, (int) now.tv_sec);
667 k = pa_atomic_load(&s->timestamp);