Lines Matching full:timebase
266 u16 timebase, u8 *buf, int len) in l1oip_socket_send() argument
307 *p++ = timebase >> 8; /* time base */ in l1oip_socket_send()
308 *p++ = timebase; in l1oip_socket_send()
351 l1oip_socket_recv(struct l1oip *hc, u8 remotecodec, u8 channel, u16 timebase, in l1oip_socket_recv() argument
409 if (((s16)(timebase - rx_counter)) >= 0) { in l1oip_socket_recv()
411 if (timebase >= (rx_counter & 0xffff)) in l1oip_socket_recv()
413 (rx_counter & 0xffff0000) | timebase; in l1oip_socket_recv()
416 | timebase; in l1oip_socket_recv()
419 if (timebase < (rx_counter & 0xffff)) in l1oip_socket_recv()
421 (rx_counter & 0xffff0000) | timebase; in l1oip_socket_recv()
424 | timebase; in l1oip_socket_recv()
450 u16 timebase; in l1oip_socket_parse() local
571 mlen = len - 2; /* single frame, subtract timebase */ in l1oip_socket_parse()
581 timebase = (*buf++) << 8; in l1oip_socket_parse()
582 timebase |= (*buf++); in l1oip_socket_parse()
596 l1oip_socket_recv(hc, remotecodec, channel, timebase, buf, mlen); in l1oip_socket_parse()