1 Star 0 Fork 136

Admin/nginx-http-flv-module

Create your Gitee Account
Explore and code with more than 13.5 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
ngx_rtmp_bandwidth.h 584 Bytes
Copy Edit Raw Blame History
winshining authored 2017-06-25 17:40 +08:00 . [dev] initial commit.
/*
* Copyright (C) Roman Arutyunyan
*/
#ifndef _NGX_RTMP_BANDWIDTH_H_INCLUDED_
#define _NGX_RTMP_BANDWIDTH_H_INCLUDED_
#include <ngx_config.h>
#include <ngx_core.h>
/* Bandwidth update interval in seconds */
#define NGX_RTMP_BANDWIDTH_INTERVAL 10
typedef struct {
uint64_t bytes;
uint64_t bandwidth; /* bytes/sec */
time_t intl_end;
uint64_t intl_bytes;
} ngx_rtmp_bandwidth_t;
void ngx_rtmp_update_bandwidth(ngx_rtmp_bandwidth_t *bw, uint32_t bytes);
#endif /* _NGX_RTMP_BANDWIDTH_H_INCLUDED_ */
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/meilun_zpt9836/nginx-http-flv-module.git
git@gitee.com:meilun_zpt9836/nginx-http-flv-module.git
meilun_zpt9836
nginx-http-flv-module
nginx-http-flv-module
master

Search