diff options
author | methodus <methodus@web.de> | 2012-10-27 06:43:02 +0200 |
---|---|---|
committer | methodus <methodus@web.de> | 2012-10-27 06:43:02 +0200 |
commit | 1b5a8fd308b133924f59210509e2bc822f57c2e0 (patch) | |
tree | 5ea28162a5e2eca4945cd6588d3eff18aa80e26b /httptnt | |
parent | f998c951d2a67fd6cdff53c0bd3eef90560331e4 (diff) | |
download | vdr-plugin-upnp-1b5a8fd308b133924f59210509e2bc822f57c2e0.tar.gz vdr-plugin-upnp-1b5a8fd308b133924f59210509e2bc822f57c2e0.tar.bz2 |
Fixed seeking in recordings with more than one file.
Diffstat (limited to 'httptnt')
-rw-r--r-- | httptnt/resourceStreamer.ecpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/httptnt/resourceStreamer.ecpp b/httptnt/resourceStreamer.ecpp index ecb3eae..9579fe6 100644 --- a/httptnt/resourceStreamer.ecpp +++ b/httptnt/resourceStreamer.ecpp @@ -67,8 +67,6 @@ int doRequest(tnt::HttpReply reply, tnt::HttpRequest request, std::string object if(to <= 0 || to > contentLength) to = contentLength; length = to - from; hasRange = true; - - cerr << from << " - " << to << "/" << contentLength << endl; std::stringstream contentRangeHeader; contentRangeHeader << "bytes " << from << "-" << to << "/" << contentLength; |