diff options
author | 2017-06-08 19:54:24 +0200 | |
---|---|---|
committer | 2017-06-08 19:59:02 +0200 | |
commit | f8907f0a7a84928800adbbfd8e66e500794aa5d5 (patch) | |
tree | ad1565a5d9aabb3c699a80404f60aa68ea56d914 /Common | |
parent | e3bff273518853e34c86719ce86fa72f1b5ba3b1 (diff) |
Adding handling for different kind of MPDs (previously the front end could only handle MPD with SegmentList)
Now can handle:
MPD with SegmentTemplate in Representation (VOD)
MPD with SegmentTemplate and SegmentTimeline (live)
Change-Id: Ie32e0e1823c94b1412990192595b16d3e2df1cfd
Plus: removed some printf
Signed-off-by: jacko <jsamain+fdio@cisco.com>
Diffstat (limited to 'Common')
-rw-r--r-- | Common/ViperBuffer.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Common/ViperBuffer.cpp b/Common/ViperBuffer.cpp index 90d10d63..27ec8b5e 100644 --- a/Common/ViperBuffer.cpp +++ b/Common/ViperBuffer.cpp @@ -85,7 +85,6 @@ qint64 ViperBuffer::writeData(libdash::framework::input::MediaObject* media) ret = media->Read(readBuffer,readMax); while(ret) { - printf("ret %d\n", ret); total += ret; this->writeData((const char *)readBuffer, ret); ret = media->Read(readBuffer,readMax); |