RTP Trace System  1.0
tracedecoderinterface.h
Go to the documentation of this file.
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 // #### Trace Decoder 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 TRACEDECODERINTERFACE_H
00023 #define TRACEDECODERINTERFACE_H
00024 
00025 
00026 #include "system.h"
00027 #include "decoderinterface.h"
00028 #include "range.h"
00029 
00030 
00031 namespace Coral {
00032 
00033 
00041 class TraceDecoderInterface : virtual public DecoderInterface
00042 {
00043    public:
00050    virtual double getFrameRate() const = 0;
00051 
00057    virtual double getUtilization() const = 0;
00058 
00064    virtual cardinal getFlags() const = 0;
00065 
00071    virtual Range<card64> getBandwidth() const = 0;
00072 
00078    virtual int8 getStreamPriority() const = 0;
00079 
00085    virtual int8 getSessionPriority() const = 0;
00086 };
00087 
00088 
00089 }
00090 
00091 
00092 #endif
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines