Add github usernames to TODOs.

This commit is contained in:
iphydf 2018-07-19 22:00:21 +00:00
parent b6b3cdbf25
commit adb12d5340
No known key found for this signature in database
GPG Key ID: 3855DBA2D74403C9
3 changed files with 3 additions and 3 deletions

View File

@ -632,7 +632,7 @@ START_TEST(test_DHT_test)
} pairs[NUM_DHT_FRIENDS]; } pairs[NUM_DHT_FRIENDS];
for (i = 0; i < NUM_DHT_FRIENDS; ++i) { for (i = 0; i < NUM_DHT_FRIENDS; ++i) {
//TODO: Hugbubby say goto bad >:( // TODO(hugbubby): remove use of goto.
loop_top: loop_top:
pairs[i].tox1 = random_u32() % NUM_DHT; pairs[i].tox1 = random_u32() % NUM_DHT;
pairs[i].tox2 = (pairs[i].tox1 + (random_u32() % (NUM_DHT - 1)) + 1) % NUM_DHT; pairs[i].tox2 = (pairs[i].tox1 + (random_u32() % (NUM_DHT - 1)) + 1) % NUM_DHT;

View File

@ -37,7 +37,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
// 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) // VPX Info: Time to spend encoding, in microseconds (it's a *soft* deadline)
#define WANTED_MAX_ENCODER_FPS (40) #define WANTED_MAX_ENCODER_FPS (40)
#define MAX_ENCODE_TIME_US (1000000 / WANTED_MAX_ENCODER_FPS) // to allow x fps #define MAX_ENCODE_TIME_US (1000000 / WANTED_MAX_ENCODER_FPS) // to allow x fps

View File

@ -41,7 +41,7 @@
* *
* By convention, the value 1 is used to mean "return as fast as possible." * 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 #define WANTED_MAX_DECODER_FPS 40
/** /**