mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
Fix plane size calculation in test
This commit is contained in:
parent
a45356ce3e
commit
1f25fc0ae4
|
@ -164,8 +164,8 @@ void *call_thread(void *pd)
|
|||
|
||||
int16_t *PCM = calloc(960, sizeof(int16_t));
|
||||
uint8_t *video_y = calloc(800 * 600, sizeof(uint8_t));
|
||||
uint8_t *video_u = calloc(800 * 600 / 2, sizeof(uint8_t));
|
||||
uint8_t *video_v = calloc(800 * 600 / 2, sizeof(uint8_t));
|
||||
uint8_t *video_u = calloc(800 * 600 / 4, sizeof(uint8_t));
|
||||
uint8_t *video_v = calloc(800 * 600 / 4, sizeof(uint8_t));
|
||||
|
||||
time_t start_time = time(NULL);
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user