Mercurial > libavformat.hg
comparison rtp.c @ 2164:3804e39efbfd libavformat
misc spelling fixes
| author | diego |
|---|---|
| date | Tue, 12 Jun 2007 09:29:25 +0000 |
| parents | a3e79d6e4e3c |
| children | c4244900f986 |
comparison
equal
deleted
inserted
replaced
| 2163:6c0176688fae | 2164:3804e39efbfd |
|---|---|
| 513 | 513 |
| 514 infos->nb_au_headers = au_headers_length / au_header_size; | 514 infos->nb_au_headers = au_headers_length / au_header_size; |
| 515 infos->au_headers = av_malloc(sizeof(struct AUHeaders) * infos->nb_au_headers); | 515 infos->au_headers = av_malloc(sizeof(struct AUHeaders) * infos->nb_au_headers); |
| 516 | 516 |
| 517 /* XXX: We handle multiple AU Section as only one (need to fix this for interleaving) | 517 /* XXX: We handle multiple AU Section as only one (need to fix this for interleaving) |
| 518 In my test, the faad decoder doesnt behave correctly when sending each AU one by one | 518 In my test, the FAAD decoder does not behave correctly when sending each AU one by one |
| 519 but does when sending the whole as one big packet... */ | 519 but does when sending the whole as one big packet... */ |
| 520 infos->au_headers[0].size = 0; | 520 infos->au_headers[0].size = 0; |
| 521 infos->au_headers[0].index = 0; | 521 infos->au_headers[0].index = 0; |
| 522 for (i = 0; i < infos->nb_au_headers; ++i) { | 522 for (i = 0; i < infos->nb_au_headers; ++i) { |
| 523 infos->au_headers[0].size += get_bits_long(&getbitcontext, infos->sizelength); | 523 infos->au_headers[0].size += get_bits_long(&getbitcontext, infos->sizelength); |
