Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: mp4 module
On Thu, Sep 29, 2011 at 10:20:51AM -0400, arty777 wrote:
> Igor Sysoev Wrote:
>
> > А какие плееры настолько
> > неадекватны ?
> > Прилагаемый патч
> > увеличивает число цифр
> > после запятой до 4.
>
> Игорь , не поверите , это самый
> адекватный такое делает - FlowPlayer, и 4
> цифры после запятой тут не поможет ....
> Вот РЕАЛЬНЫЙ ПРИМЕР:
> http://мойСайт/video/1d7eda52583d8646acd83e2b534297af/4e847e64/10627.mp4?start=2505.8120000000004
>
> дайте патч на 13-16 цифр после запятой,
> будем тестить на продуктиве с
> нагрузкой :)
Новый патч.
--
Игорь Сысоев
http://sysoev.ru
Index: src/http/modules/ngx_http_mp4_module.c
===================================================================
--- src/http/modules/ngx_http_mp4_module.c (revision 4156)
+++ src/http/modules/ngx_http_mp4_module.c (working copy)
@@ -499,9 +499,10 @@
if (ngx_http_arg(r, (u_char *) "start", 5, &value) == NGX_OK) {
- start = ngx_atofp(value.data, value.len, 3);
+ ngx_set_errno(0);
+ start = (int) (strtod((char *) value.data, NULL) * 1000);
- if (start != NGX_ERROR) {
+ if (ngx_errno == 0 && start >= 0) {
r->allow_ranges = 0;
mp4 = ngx_pcalloc(r->pool, sizeof(ngx_http_mp4_file_t));
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://mailman.nginx.org/mailman/listinfo/nginx-ru
|