RTP Trace System
1.0
|
00001 // ########################################################################## 00002 // #### #### 00003 // #### Master Thesis Implementation #### 00004 // #### Management of Layered Variable Bitrate Multimedia Streams over #### 00005 // #### DiffServ with A Priori Knowledge #### 00006 // #### #### 00007 // #### ================================================================ #### 00008 // #### #### 00009 // #### #### 00010 // #### Session Description #### 00011 // #### #### 00012 // #### Version 1.00 -- February 19, 2001 #### 00013 // #### #### 00014 // #### Copyright (C) 2000/2001 Thomas Dreibholz #### 00015 // #### University of Bonn, Department of Computer Science IV #### 00016 // #### EMail: dreibh@iem.uni-due.de #### 00017 // #### WWW: https://www.uni-due.de/~be0001/diplom/index.html #### 00018 // #### #### 00019 // ########################################################################## 00020 00021 00022 #ifndef SESSIONDESCRIPTION_H 00023 #define SESSIONDESCRIPTION_H 00024 00025 00026 #include "system.h" 00027 #include "streamdescription.h" 00028 00029 00030 #include <multimap.h> 00031 00032 00033 namespace Coral { 00034 00035 00036 struct StreamDescription; 00037 00038 00047 struct SessionDescription 00048 { 00052 cardinal SessionID; 00053 00057 cardinal Streams; 00058 00062 multimap<ManagedStreamInterface*,StreamDescription*> StreamSet; 00063 00067 card64 MinWantedBandwidth; 00068 00072 card64 MaxWantedBandwidth; 00073 00077 card64 TotalAllocatedBandwidth; 00078 00082 card64 AllocatedBandwidthArray[TrafficClassValues::MaxValues]; 00083 00087 int8 Priority; 00088 00094 bool MaximumReached; 00095 }; 00096 00097 00098 } 00099 00100 00101 #endif