mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-28 16:01:20 +02:00
eitd/dmx.cpp: add next_filter()
This commit is contained in:
@@ -551,6 +551,15 @@ int DMX::request_unpause(void)
|
||||
return 0;
|
||||
}
|
||||
|
||||
bool DMX::next_filter()
|
||||
{
|
||||
if (filter_index + 1 < (signed) filters.size()) {
|
||||
change(filter_index + 1);
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
const char *dmx_filter_types [] = {
|
||||
"dummy filter",
|
||||
"actual transport stream, scheduled",
|
||||
|
Reference in New Issue
Block a user