From adb12d5340431d9de5995da37ea7aca01e675da3 Mon Sep 17 00:00:00 2001 From: iphydf Date: Thu, 19 Jul 2018 22:00:21 +0000 Subject: [PATCH] Add github usernames to TODOs. --- auto_tests/dht_test.c | 2 +- toxav/toxav.c | 2 +- toxav/video.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/auto_tests/dht_test.c b/auto_tests/dht_test.c index 5c40e2c9..f57d706b 100644 --- a/auto_tests/dht_test.c +++ b/auto_tests/dht_test.c @@ -632,7 +632,7 @@ START_TEST(test_DHT_test) } pairs[NUM_DHT_FRIENDS]; for (i = 0; i < NUM_DHT_FRIENDS; ++i) { - //TODO: Hugbubby say goto bad >:( + // TODO(hugbubby): remove use of goto. loop_top: pairs[i].tox1 = random_u32() % NUM_DHT; pairs[i].tox2 = (pairs[i].tox1 + (random_u32() % (NUM_DHT - 1)) + 1) % NUM_DHT; diff --git a/toxav/toxav.c b/toxav/toxav.c index dcffca4d..57d14942 100644 --- a/toxav/toxav.c +++ b/toxav/toxav.c @@ -37,7 +37,7 @@ #include #include -// TODO: don't hardcode this, let the application choose it +// TODO(zoff99): don't hardcode this, let the application choose it // VPX Info: Time to spend encoding, in microseconds (it's a *soft* deadline) #define WANTED_MAX_ENCODER_FPS (40) #define MAX_ENCODE_TIME_US (1000000 / WANTED_MAX_ENCODER_FPS) // to allow x fps diff --git a/toxav/video.c b/toxav/video.c index 17969003..55bb5d13 100644 --- a/toxav/video.c +++ b/toxav/video.c @@ -41,7 +41,7 @@ * * By convention, the value 1 is used to mean "return as fast as possible." */ -// TODO: don't hardcode this, let the application choose it +// TODO(zoff99): don't hardcode this, let the application choose it #define WANTED_MAX_DECODER_FPS 40 /**