summaryrefslogtreecommitdiff
path: root/toxav/rtp.c
diff options
context:
space:
mode:
authormannol <eniz_vukovic@hotmail.com>2015-04-28 00:55:57 +0200
committermannol <eniz_vukovic@hotmail.com>2015-04-28 00:55:57 +0200
commite4a020333d76bc30172f54f2545677f01bdd54b6 (patch)
treeb7efcf3680b41e8f597fee447f86e87c1083e7ff /toxav/rtp.c
parent27e0254a98a32fad89ecc1c19121394754cfda2d (diff)
working av new api
Diffstat (limited to 'toxav/rtp.c')
-rw-r--r--toxav/rtp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/toxav/rtp.c b/toxav/rtp.c
index b16e3d73..6c603f79 100644
--- a/toxav/rtp.c
+++ b/toxav/rtp.c
@@ -193,13 +193,13 @@ int rtp_do(RTPSession *session)
193 } 193 }
194 194
195 if (quality <= 90) { 195 if (quality <= 90) {
196 LOGGER_WARNING("Stream quality: BAD"); 196 LOGGER_WARNING("Stream quality: BAD (%d)", quality);
197 return rtp_StateBad; 197 return rtp_StateBad;
198 } else if (quality >= 99) { 198 } else if (quality >= 99) {
199 LOGGER_DEBUG("Stream quality: GOOD"); 199 LOGGER_DEBUG("Stream quality: GOOD (%d)", quality);
200 return rtp_StateGood; 200 return rtp_StateGood;
201 } else { 201 } else {
202 LOGGER_DEBUG("Stream quality: NORMAL"); 202 LOGGER_DEBUG("Stream quality: NORMAL (%d)", quality);
203 } 203 }
204 } 204 }
205 return rtp_StateNormal; 205 return rtp_StateNormal;