summaryrefslogtreecommitdiff
path: root/src/infofile.cpp
diff options
context:
space:
mode:
authorMateusz Łukasik <mati75@linuxmint.pl>2017-02-03 08:16:09 +0100
committerMateusz Łukasik <mati75@linuxmint.pl>2017-02-03 08:16:09 +0100
commitbcae744b1bae2f5015cb3efdd0d2226150cd79e5 (patch)
tree872701745b36fbfbeb16dd1d59d485bc1e494dbd /src/infofile.cpp
parent634cd2063f449c5d38046de88a395af77e2c9ea5 (diff)
New upstream version 17.2.0~ds0
Diffstat (limited to 'src/infofile.cpp')
-rw-r--r--src/infofile.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/infofile.cpp b/src/infofile.cpp
index a085dd3..ab64201 100644
--- a/src/infofile.cpp
+++ b/src/infofile.cpp
@@ -1,5 +1,5 @@
/* smplayer, GUI front-end for mplayer.
- Copyright (C) 2006-2016 Ricardo Villalba <rvm@users.sourceforge.net>
+ Copyright (C) 2006-2017 Ricardo Villalba <rvm@users.sourceforge.net>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -84,6 +84,11 @@ QString InfoFile::getInfo(MediaData md) {
} else {
QString url = md.filename;
s += addItem( tr("URL"), url );
+ /*
+ if (!md.stream_path.isEmpty() && md.stream_path != url) {
+ s += addItem( tr("Video URL"), md.stream_path );
+ }
+ */
}
s += addItem( tr("Length"), Helper::formatTime((int)md.duration) );
s += addItem( tr("Demuxer"), md.demuxer );