fix wrong delta between two RTP messages

it should 20 ms, not 160 ms. Thanks for Holger for spotting this.
This commit is contained in:
Pablo Neira Ayuso 2012-08-04 18:39:45 +02:00
parent ffd20f3f1c
commit fdc6538986
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ static void deliver(struct msgb *batch_msg)
struct msgb *msg;
int i = 0;
struct timeval tv = { .tv_sec = 0, .tv_usec = 0 };
struct timeval delta = { .tv_sec = 0, .tv_usec = 160000 };
struct timeval delta = { .tv_sec = 0, .tv_usec = 20000 };
timerclear(&tv);