X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=ortp_recv.c;h=1443ab46e7c278ecf27dde13eba6788d86d0cde2;hp=71c8b1068ff3102c6d97b6c6159c1d01861ee94b;hb=044dd6b25189b24d862d50b965fc2feaf93b01d7;hpb=e231df6c1a741a59824cd157c78d3227eb8451d1 diff --git a/ortp_recv.c b/ortp_recv.c index 71c8b106..1443ab46 100644 --- a/ortp_recv.c +++ b/ortp_recv.c @@ -17,8 +17,8 @@ */ /** \file ortp_recv.c paraslash's ortp receiver */ -#include "para.h" #include +#include "para.h" #include "ortp.h" #include "recv.h" @@ -30,7 +30,7 @@ #define CHUNK_SIZE 128 * 1024 -extern gint msg_to_buf(mblk_t *, char *, gint); +extern int msg_to_buf(mblk_t *, char *, int); /** * data specific to the ortp receiver @@ -61,9 +61,9 @@ struct timeval next_chunk; /** number of consecutive bad chunks */ int c_bad; /** the current timestamp which is passed to the receiving function of libortp */ -guint32 timestamp; +uint32_t timestamp; /** \a timestamp increases by this amount */ -guint32 chunk_ts; +uint32_t chunk_ts; }; #if 1 @@ -301,5 +301,4 @@ void ortp_recv_init(struct receiver *r) r->parse_config = ortp_recv_parse_config; ortp_init(); - ortp_set_debug_file("oRTP", NULL); }