Bug #4978
Does TVH only support simultaneous streaming of 16 different encryption programs?
0%
Description
Does TVH only support simultaneous streaming of 16 different encryption programs? After the actual test, I found that seventeenth channels could not be decrypted. But the channel that does not need to be decipher can be watched normally.
History
Updated by shengkun zang over 6 years ago
// limits
#define MAX_CA 16
#define MAX_INDEX 128
#define MAX_FILTER 64
#define MAX_SOCKETS 16 // max sockets (simultaneous channels) per demux
#define MAX_PIDS 64 // max opened pids
#define MAX_INFO_LEN 255
是不是上面这段代码限制的呢?如何更改能增大相关参数。
Is it limited by the code above? How to change can increase the related parameters.
Updated by Jaroslav Kysela over 6 years ago
The limit is 64 services in 16 different muxes (adapter inputs). But there are also other limits in oscam.
Updated by shengkun zang over 6 years ago
Jaroslav Kysela wrote:
The limit is 64 services in 16 different muxes (adapter inputs). But there are also other limits in oscam.
Whether the TVH side can modify the code to achieve an increase in the purpose. If you can, can you point out how to change it!
Updated by saen acro over 6 years ago
Jaroslav Kysela wrote:
You already found the limits in the source code.
Is limits can be controlled by UI in near feature?
Updated by Jaroslav Kysela over 6 years ago
For large numbers, it would make sense to use dynamic lists instead arrays in the capmt.c code. And no, I don't have plans to rewrite this at the time.
Updated by Pablo R. over 6 years ago
Jaroslav Kysela wrote:
For large numbers, it would make sense to use dynamic lists instead arrays in the capmt.c code. And no, I don't have plans to rewrite this at the time.
It would be nice to add this to making list. Even if it will be for 4.6 or so...