Source: mp3qosdescription.h
|
|
|
|
// ##########################################################################
// #### ####
// #### Master Thesis Implementation ####
// #### Management of Layered Variable Bitrate Multimedia Streams over ####
// #### DiffServ with A Priori Knowledge ####
// #### ####
// #### ================================================================ ####
// #### ####
// #### ####
// #### MP3 QoS Description ####
// #### ####
// #### Version 1.00 -- October 10, 2000 ####
// #### ####
// #### Copyright (C) 2000 Thomas Dreibholz ####
// #### University of Bonn, Department of Computer Science IV ####
// #### EMail: Dreibholz@bigfoot.com ####
// #### WWW: http://www.bigfoot.com/~dreibholz/diplom/index.html ####
// #### ####
// ##########################################################################
#ifndef MP3QOSDESCRIPTION_H
#define MP3QOSDESCRIPTION_H
#include "system.h"
#include "traceqosdescription.h"
namespace Coral {
/**
* This class extends TraceWriterQoSDescription by MP3-specific
* utilization calculation necessary to generate resource/utilization lists.
*
* @short MP3 QoS Description
* @author Thomas Dreibholz (Dreibholz@bigfoot.com)
* @version 1.0
*/
class MP3QoSDescription : public TraceQoSDescription
{
// ====== Utilization calculation ========================================
public:
/**
* Implementation of AbstractQoSDescription's calculateUtilizationForLayerBandwidths().
*
* @see AbstractQoSDescription#calculateUtilizationForLayerBandwidths
*/
void calculateMaxUtilizationForBandwidthArray(
const cardinal* totalBandwidthArray,
ResourceUtilizationPoint* rupArray,
const cardinal points) const;
};
}
#endif
Generated by: viper@odin on Mon Oct 16 11:49:26 2000, using kdoc 2.0a36. |