X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=ortp_send.c;h=15b97eb1304caaf2ec1198acde6252dd1bc10ee3;hp=b084bb68ac4b89b3a3921c5d002d00444ba14cb3;hb=66445ee977f7f65604f16c9b78454da7456bb865;hpb=f3ce15a8bc3c0d64008e014b9147ddbd76f47a2d diff --git a/ortp_send.c b/ortp_send.c index b084bb68..15b97eb1 100644 --- a/ortp_send.c +++ b/ortp_send.c @@ -78,11 +78,12 @@ static void ortp_send_buf(char *buf, int len, long unsigned chunks_sent) continue; WRITE_CHUNK_TS(buf, ot->chunk_ts); ts = ot->chunk_ts * chunks_sent; - ret = rtp_session_send_with_ts(ot->session, buf, len, ts); + ret = rtp_session_send_with_ts(ot->session, + (unsigned char*)buf, len, ts); ot->last_ts = ts; if (ret < 0) ortp_delete_target(ot, "send error"); - if (ret != len +12) + if (ret != len + 12) PARA_NOTICE_LOG("short write %d\n", ret); } } @@ -130,7 +131,7 @@ static void ortp_init_session(struct ortp_target *ot) /* called by afs */ static void ortp_shutdown_targets(void) { - char buf[ORTP_AUDIO_HEADER_LEN]; + unsigned char buf[ORTP_AUDIO_HEADER_LEN]; struct ortp_target *ot, *tmp; WRITE_PACKET_TYPE(buf, ORTP_EOF);