comparison rtpdec.c @ 5937:97fce92200b5 libavformat

Reindent
author mstorsjo
date Mon, 05 Apr 2010 17:26:06 +0000
parents 3671d661f4b5
children 9a86b49201bb
comparison
equal deleted inserted replaced
5936:3671d661f4b5 5937:97fce92200b5
400 return -1; 400 return -1;
401 401
402 infos->nb_au_headers = au_headers_length / au_header_size; 402 infos->nb_au_headers = au_headers_length / au_header_size;
403 if (!infos->au_headers || infos->au_headers_allocated < infos->nb_au_headers) { 403 if (!infos->au_headers || infos->au_headers_allocated < infos->nb_au_headers) {
404 av_free(infos->au_headers); 404 av_free(infos->au_headers);
405 infos->au_headers = av_malloc(sizeof(struct AUHeaders) * infos->nb_au_headers); 405 infos->au_headers = av_malloc(sizeof(struct AUHeaders) * infos->nb_au_headers);
406 infos->au_headers_allocated = infos->nb_au_headers; 406 infos->au_headers_allocated = infos->nb_au_headers;
407 } 407 }
408 408
409 /* XXX: We handle multiple AU Section as only one (need to fix this for interleaving) 409 /* XXX: We handle multiple AU Section as only one (need to fix this for interleaving)
410 In my test, the FAAD decoder does not behave correctly when sending each AU one by one 410 In my test, the FAAD decoder does not behave correctly when sending each AU one by one