MecRTVideoStreamingReceiver

Package: simu5g.apps.mec.RealTimeVideoStreamingApp

MecRTVideoStreamingReceiver

simple module

This module is an application that is dynamically instantiated on a MEC host upon request from a RTVideoStreamingSender application via a DeviceApp. It receives video frames sent by the UE and simulates a playout buffer. Moreover, it records statistics related to the quality of the received video stream. Note that the statistics are collected by the RTVideoStreamingSender application at the UE side.

Inheritance diagram

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.

Extends

Name Type Description
MecAppBase simple module

This is a MEC app that ... TBC

Parameters

Name Type Default value Description
mecAppId int
mecAppIndex int
mp1Address string ""
mp1Port int 10021
vimModule string "^.vim"

modules:

mecPlatformModule string "^.mecPlatform"
serviceRegistryModule string "^.mecPlatform.serviceRegistry"
requiredRam double

resource required info

requiredDisk double
requiredCpu double
timeToLive int -1

socket parameters

dscp int -1

if not -1, set the DSCP (IPv4/IPv6) field of sent packets to this value

tos int -1

if not -1, set the Type Of Service (IPv4) / Traffic Class (IPv6) field of sent packets to this value

packetSize int 10B
initialPlayoutDelay double 150ms

Properties

Name Value Description
display i=block/app;is=s
class MecRTVideoStreamingReceiver

Gates

Name Direction Size Description
mePlatformIn input
mePlatformOut output
socketIn input
socketOut output

Source code

//
// This module is an application that is dynamically instantiated on a MEC host upon request
// from a ~RTVideoStreamingSender application via a ~DeviceApp.
// It receives video frames sent by the UE and simulates a playout buffer. Moreover, it records
// statistics related to the quality of the received video stream. Note that the statistics are
// collected by the ~RTVideoStreamingSender application at the UE side.
//
simple MecRTVideoStreamingReceiver extends MecAppBase
{
    parameters:
        @class(MecRTVideoStreamingReceiver);
        @display("i=block/app;is=s");
        int packetSize @unit(B) = default(10B);
        double initialPlayoutDelay @unit(s) = 150ms;
}
File: src/apps/mec/RealTimeVideoStreamingApp/MecRTVideoStreamingReceiver.ned