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 // #### Managed Stream Interface #### 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 MANAGEDSTREAMINTERFACE_H 00023 #define MANAGEDSTREAMINTERFACE_H 00024 00025 00026 #include "system.h" 00027 #include "abstractqosdescription.h" 00028 00029 00030 namespace Coral { 00031 00032 00040 class ManagedStreamInterface 00041 { 00042 public: 00049 virtual AbstractQoSDescription* getQoSDescription(const card64 offset) = 0; 00050 00059 virtual void updateQuality(const AbstractQoSDescription* aqd) = 0; 00060 00061 00065 virtual void lock() = 0; 00066 00070 virtual void unlock() = 0; 00071 }; 00072 00073 00074 } 00075 00076 00077 #endif