diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2011-09-15 05:15:16 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2011-09-15 05:15:16 +0000 |
| commit | c940f5fc99130720a00538637a2bedc4d7472ea1 (patch) | |
| tree | a058a51b5e3a80b8825cba4b340b6431f0e3c5f6 /src | |
| parent | 1fc9a8dec6883bce4f8c68f08408b07560989950 (diff) | |
| download | nginx-c940f5fc99130720a00538637a2bedc4d7472ea1.tar.gz nginx-c940f5fc99130720a00538637a2bedc4d7472ea1.tar.bz2 | |
Fix of struct field name.
Diffstat (limited to 'src')
| -rw-r--r-- | src/http/modules/ngx_http_mp4_module.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/http/modules/ngx_http_mp4_module.c b/src/http/modules/ngx_http_mp4_module.c index 4761fbc1d..892c42e63 100644 --- a/src/http/modules/ngx_http_mp4_module.c +++ b/src/http/modules/ngx_http_mp4_module.c @@ -96,8 +96,8 @@ typedef struct { ngx_buf_t stsc_data_buf; ngx_buf_t stsz_atom_buf; ngx_buf_t stsz_data_buf; - ngx_buf_t tsco_atom_buf; - ngx_buf_t tsco_data_buf; + ngx_buf_t stco_atom_buf; + ngx_buf_t stco_data_buf; ngx_mp4_stsc_entry_t stsc_chunk_entry; } ngx_http_mp4_trak_t; @@ -2552,12 +2552,12 @@ ngx_http_mp4_read_stco_atom(ngx_http_mp4_file_t *mp4, uint64_t atom_data_size) trak = ngx_mp4_last_trak(mp4); trak->chunks = entries; - atom = &trak->tsco_atom_buf; + atom = &trak->stco_atom_buf; atom->temporary = 1; atom->pos = atom_header; atom->last = atom_table; - data = &trak->tsco_data_buf; + data = &trak->stco_data_buf; data->temporary = 1; data->pos = atom_table; data->last = atom_end; |
