comparison src/http/modules/ngx_http_mp4_module.c @ 4094:c98b7e351332

Fix of error message.
author Igor Sysoev <igor@sysoev.ru>
date Mon, 12 Sep 2011 14:46:06 +0000
parents 28859c50233f
children fbf665ffa171
comparison
equal deleted inserted replaced
4093:28859c50233f 4094:c98b7e351332
1840 entries--; 1840 entries--;
1841 entry++; 1841 entry++;
1842 } 1842 }
1843 1843
1844 ngx_log_error(NGX_LOG_ERR, mp4->file.log, 0, 1844 ngx_log_error(NGX_LOG_ERR, mp4->file.log, 0,
1845 "start time is out mp4 stts samples in \"%\"", 1845 "start time is out mp4 stts samples in \"%s\"",
1846 mp4->file.name.data); 1846 mp4->file.name.data);
1847 1847
1848 return NGX_ERROR; 1848 return NGX_ERROR;
1849 1849
1850 found: 1850 found:
2486 ngx_log_debug0(NGX_LOG_DEBUG_HTTP, mp4->file.log, 0, 2486 ngx_log_debug0(NGX_LOG_DEBUG_HTTP, mp4->file.log, 0,
2487 "mp4 stco atom update"); 2487 "mp4 stco atom update");
2488 2488
2489 if (trak->start_chunk > trak->chunks) { 2489 if (trak->start_chunk > trak->chunks) {
2490 ngx_log_error(NGX_LOG_ERR, mp4->file.log, 0, 2490 ngx_log_error(NGX_LOG_ERR, mp4->file.log, 0,
2491 "start time is out mp4 stco chunks in \"%\"", 2491 "start time is out mp4 stco chunks in \"%s\"",
2492 mp4->file.name.data); 2492 mp4->file.name.data);
2493 return NGX_ERROR; 2493 return NGX_ERROR;
2494 } 2494 }
2495 2495
2496 data = trak->out[NGX_HTTP_MP4_STCO_DATA].buf; 2496 data = trak->out[NGX_HTTP_MP4_STCO_DATA].buf;