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 Writer 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 H263WRITERQOSDESCRIPTION_H 00023 #define H263WRITERQOSDESCRIPTION_H 00024 00025 00026 #include "system.h" 00027 #include "h263qosdescription.h" 00028 #include "traceconfiguration.h" 00029 00030 00031 namespace Coral { 00032 00033 00045 class H263WriterQoSDescription : public H263QoSDescription 00046 { 00047 // ====== Constructor/Destructor ========================================= 00048 public: 00054 H263WriterQoSDescription(const TraceConfiguration* traceConfiguration); 00055 00056 00057 // ====== Reimplementation of utilization methods ======================== 00063 double calculateUtilizationForLayerBandwidths(const double frameRate, 00064 const cardinal layers, 00065 const cardinal* bandwidth) const; 00066 00067 00068 // ====== Private data =================================================== 00069 private: 00070 const TraceConfiguration* Config; 00071 }; 00072 00073 00074 } 00075 00076 00077 #endif