forked from wang-bin/QtAV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
OSD.cpp
104 lines (88 loc) · 2.96 KB
/
OSD.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/******************************************************************************
QtAV: Media play library based on Qt and FFmpeg
Copyright (C) 2013 Wang Bin <[email protected]>
* This file is part of QtAV
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
******************************************************************************/
#include "QtAV/OSD.h"
#include <QtAV/Statistics.h>
namespace QtAV {
OSD::OSD():
mShowType(ShowCurrentAndTotalTime)
, mSecsTotal(-1)
{
}
OSD::~OSD()
{
}
void OSD::setShowType(ShowType type)
{
mShowType = type;
}
OSD::ShowType OSD::showType() const
{
return mShowType;
}
void OSD::useNextShowType()
{
if (mShowType == ShowNone) {
mShowType = (ShowType)1;
return;
}
if (mShowType + 1 == ShowNone) {
mShowType = ShowNone;
return;
}
mShowType = (ShowType)(mShowType << 1);
}
bool OSD::hasShowType(ShowType t) const
{
return (t&mShowType) == t;
}
QString OSD::text(Statistics *statistics)
{
QString text;
Statistics::Common *av = &statistics->video;
if (!av->available)
av = &statistics->audio;
if (hasShowType(ShowCurrentTime) || hasShowType(ShowCurrentAndTotalTime)) {
text = av->current_time.toString("HH:mm:ss");
}
//how to compute mSecsTotal only once?
if (hasShowType(ShowCurrentAndTotalTime) || hasShowType(ShowPercent) /*mSecsTotal < 0*/) {
if (statistics->duration.isNull())
return text;
mSecsTotal = QTime(0, 0, 0).secsTo(statistics->duration); //why video.total_time may be wrong(mkv)
}
if (hasShowType(ShowCurrentAndTotalTime)) {
if (mSecsTotal > 0)
text += "/" + statistics->duration.toString("HH:mm:ss");
else
text += "/--:--:--";
}
if (hasShowType(ShowRemainTime)) {
if (mSecsTotal > 0)
text += "-" + QTime(0, 0, 0).addSecs(av->current_time.secsTo(statistics->duration)).toString("HH:mm:ss");
else
text += "--:--:--";
}
if (hasShowType(ShowPercent)) {
if (mSecsTotal > 0)
text += QString::number(qreal(QTime(0, 0, 0).secsTo(av->current_time))
/qreal(mSecsTotal)*100.0, 'f', 1) + "%";
else
text += "--.-%";
}
return text;
}
} //namespace QtAV