Fix plane size calculation in test

This commit is contained in:
mannol 2016-08-26 22:47:19 +02:00
parent a45356ce3e
commit 1f25fc0ae4

View File

@ -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);