stream: Add media stream topology definition and API

This change adds the media stream topology definition and API for
accessing and using it.

Some refactoring of the stream was also done.

ASTERISK-26786

Change-Id: Ic930232d24d5ad66dcabc14e9b359e0ff8e7f568
This commit is contained in:
George Joseph
2017-02-10 14:45:43 -07:00
parent bab4885f1e
commit 8b72ec312b
5 changed files with 359 additions and 13 deletions

View File

@@ -87,7 +87,8 @@ static int media_type_to_fdno(enum ast_media_type media_type)
case AST_MEDIA_TYPE_VIDEO: return FD_VIDEO;
case AST_MEDIA_TYPE_TEXT:
case AST_MEDIA_TYPE_UNKNOWN:
case AST_MEDIA_TYPE_IMAGE: break;
case AST_MEDIA_TYPE_IMAGE:
case AST_MEDIA_TYPE_END: break;
}
return -1;
}