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 // #### H263 QoS 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 H263QOSDESCRIPTION_H 00023 #define H263QOSDESCRIPTION_H 00024 00025 00026 #include "system.h" 00027 #include "traceqosdescription.h" 00028 00029 00030 namespace Coral { 00031 00032 00041 class H263QoSDescription : public TraceQoSDescription 00042 { 00043 // ====== Utilization calculation ======================================== 00044 public: 00050 void calculateMaxUtilizationForBandwidthArray( 00051 const card64* totalBandwidthArray, 00052 ResourceUtilizationPoint* rupArray, 00053 const cardinal points) const; 00054 00055 00056 // ====== Private data =================================================== 00057 private: 00058 bool tryAllocation(card64& available, 00059 card64* requiredArray, 00060 card64* bandwidthArray, 00061 cardinal layers) const; 00062 }; 00063 00064 00065 } 00066 00067 00068 #endif