Set discard flag to all not active streams, do not process packets from discarded streams

Origin commit data
------------------
Branch: master
Commit: 9434ba80d0
Author: samsamsam <samsamsam@o2.pl>
Date: 2018-03-18 (Sun, 18 Mar 2018)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
samsamsam
2018-03-18 01:16:08 +01:00
committed by TangoCash
parent f19c639e94
commit b2aae77f0b
7 changed files with 152 additions and 52 deletions

View File

@@ -231,6 +231,16 @@ static int Command(Context_t *context, ManagerCmd_t command, void *argument)
*((char ** *) argument) = (char **) ManagerList(context);
break;
}
case MANAGER_REF_LIST:
{
*((Track_t **)argument) = Tracks;
break;
}
case MANAGER_REF_LIST_SIZE:
{
*((int *)argument) = TrackCount;
break;
}
case MANAGER_GET:
{
audio_mgr_printf(20, "%s::%s MANAGER_GET\n", __FILE__, __FUNCTION__);