mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-06 01:19:38 +00:00
0ec400890c
Original commit message from CVS: initial checkin
24 lines
475 B
C
24 lines
475 B
C
#include <stdio.h>
|
|
#include <fcntl.h>
|
|
|
|
int main(int argc,char *argv[]) {
|
|
int fd;
|
|
int offset = 0;
|
|
int got;
|
|
unsigned short buf[2048];
|
|
int i;
|
|
int prev = 0;
|
|
|
|
if (argc >= 2) fd = open(argv[1],O_RDONLY);
|
|
else fd = 0;
|
|
|
|
while (got = read(fd,buf,sizeof(buf))) {
|
|
for (i=0;i<(got/2);i++) {
|
|
if (buf[i] == 0x770b) {
|
|
printf("have sync at %d (+%d)\n",offset+(i*2),(offset+(i*2))-prev);
|
|
prev = offset+(i*2);
|
|
}
|
|
}
|
|
offset += got;
|
|
}
|
|
}
|