diff options
author | manang <angelo.mantellini@cisco.com> | 2020-02-21 11:30:53 +0100 |
---|---|---|
committer | manang <angelo.mantellini@cisco.com> | 2020-02-26 10:19:30 +0100 |
commit | 4e1368dffb038828904e1d19c44f2f045a711e24 (patch) | |
tree | 0d424aa991de0d6da716a253ca7e0933294684ba | |
parent | 882df3c37dc5207dcf727e7d00dcbe79a518957e (diff) |
Correct README
Signed-off-by: manang <angelo.mantellini@cisco.com>
Change-Id: I70117dab46c6b59bfbe051d60cd0125ccd3878d1
-rw-r--r-- | README.md | 19 | ||||
-rw-r--r-- | scripts/build-package.sh | 2 |
2 files changed, 7 insertions, 14 deletions
@@ -1,23 +1,16 @@ -Viper Player for ICN +Viper Player for hICN ==================================================== -This application is designed to provide a tool to test the adaptation video streaming using the ICN protocol stack. +This application is designed to provide a tool to test the adaptation video streaming using the hICN protocol stack. Dependencies ------------ - ffmpeg -- libboost-system-dev - libparc -- libccnx-common -- libccnx-transport-rta -- long-bow -- libxml2 -- libcurl4 -- libdash -- libicnet -- Qt5.7 +- libhicntransport-dev +- Qt5.9 - QtAV Build the dependencies @@ -56,7 +49,7 @@ For building the player, from the root folder of the project: ```bash $ cd viper $ mkdir build && cd build - $ qmake ../viper.pro + $ qmake ../viper.pro "TRANSPORT_LIBRARY = HICNET" $ make $ ./viper ``` @@ -67,4 +60,4 @@ Platforms Viper has been tested in: - - Ubuntu 16.04 (x86_64) + - Ubuntu 18.04 (x86_64) diff --git a/scripts/build-package.sh b/scripts/build-package.sh index f421df89..c2852b67 100644 --- a/scripts/build-package.sh +++ b/scripts/build-package.sh @@ -11,7 +11,7 @@ PACKAGE_NAME="VIPER" VIPER_DEPS_UBUNTU="zlib1g-dev git-core build-essential libxml2-dev libcurl4-openssl-dev \ libqtav-dev qt5-default libqt5svg5-dev qtdeclarative5-dev libqt5charts5-dev \ qtmultimedia5-dev libqt5multimediawidgets5 libqt5multimedia5-plugins libqt5multimedia5 \ -libhicntransport-dev" +libhicntransport-dev libavcodec-dev libavutil-dev libavformat-dev" BUILD_TOOLS="build-essential doxygen" |