Changes between Version 2 and Version 3 of WiMAX/WiMAX-Tutorial/Dash/03


Ignore:
Timestamp:
07/22/13 20:04:18 (11 years ago)
Author:
Fraida Fund
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WiMAX/WiMAX-Tutorial/Dash/03

    v2 v3  
    11'''[wiki:WiMAX/WiMAX-Tutorial/Dash/02 Previous]'''
    22
    3 == Writing an OMF Application Wrapper ==
     3== OMF Application Wrapper ==
    44
     5Other pieces of software related to the OMF experiment need to be installed on the OMF console. These include the OMF application wrapper and the OMF experiment script.
    56
    6 When an OML-enabled application is run using OMF, the application itself is installed on the resource and a simple [https://mytestbed.net/projects/omf/wiki/BasicTutorialStage3-5-2 OMF application wrapper] is installed on the console where the OMF Experiment Controller runs. This wrapper just gives some basic information about the application, the parameters that can be passed at the command line, and the OML measurement points that have been defined in the application:
     7When an OML-enabled application is run using OMF, the application itself is installed on the resource and a simple [https://mytestbed.net/projects/omf/wiki/BasicTutorialStage3-5-2 OMF application wrapper] is installed on the console where the OMF Experiment Controller runs. This wrapper just gives some basic information about the application, the parameters that can be passed at the command line, and the OML measurement points that have been defined in the application. The application wrapper for the OML-enabled VLC DASH is given here as an example:
    78
    89
     
    5354
    5455
    55 
    56 
    57 
    58 
    59 
     56Note that two '''measurement points''' will be registered by the VLC DASH player.  One of these, the '''dashRateAdaptation''' MP, records a data point each time a decision is made about what rate to download the next segment at. This data point includes the ''chosenRate'' (the rate that the DASH client actually requests), the ''empiricalRate'' (the rate observed by the client while downloading the previous segment), the ''decisionRate'' (the value that the client uses as the ''perceived available bitrate'' we described earlier), and the ''buffer_percent'' (which describes what percent of the 30-second buffer is full). A second MP, the '''dashDlSession''' MP, records a data point each time a {{{socket recv}}} call is made to retrieve some part of a video segment. This data point includes the sequence number of the video segment, the total number of bytes read by the DASH client over all video segments, the number of bytes read by the DASH client for the current video segment, the time spent in {{{socket recv}}} calls over the entire DASH client session, and the time spent in {{{socket recv}}} during the download of the current video segment.
    6057
    6158