# HG changeset patch # User Igor Sysoev # Date 1316063716 0 # Node ID 7705911c9d1005f2bc0fa4ad562ddd02e0b7edc2 # Parent 637912848b08360e729d11e4686c359f05c244d0 Fix of struct field name. diff --git a/src/http/modules/ngx_http_mp4_module.c b/src/http/modules/ngx_http_mp4_module.c --- 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 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;