Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
26ec07af
Commit
26ec07af
authored
Sep 07, 2009
by
Francois Cartegnie
Committed by
Jean-Baptiste Kempf
Sep 08, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Info panel text fix
fix natural reading Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
311ffefc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
23 deletions
+23
-23
modules/gui/qt4/components/info_panels.cpp
modules/gui/qt4/components/info_panels.cpp
+23
-23
No files found.
modules/gui/qt4/components/info_panels.cpp
View file @
26ec07af
...
...
@@ -480,8 +480,8 @@ InputStatsPanel::InputStatsPanel( QWidget *parent,
QList
<
QTreeWidgetItem
*>
items
;
QLabel
*
topLabel
=
new
QLabel
(
qtr
(
"
Statistics about the currently
"
"
playing media or stream."
)
);
QLabel
*
topLabel
=
new
QLabel
(
qtr
(
"
Current
"
"
media / stream "
"statistics"
)
);
topLabel
->
setWordWrap
(
true
);
layout
->
addWidget
(
topLabel
,
0
,
0
);
...
...
@@ -506,39 +506,39 @@ InputStatsPanel::InputStatsPanel( QWidget *parent,
/* Create the main categories */
CREATE_CATEGORY
(
audio
,
qtr
(
"Audio"
)
);
CREATE_CATEGORY
(
video
,
qtr
(
"Video"
)
);
CREATE_CATEGORY
(
input
,
qtr
(
"Input"
)
);
CREATE_CATEGORY
(
streaming
,
qtr
(
"
Streaming
"
)
);
CREATE_CATEGORY
(
input
,
qtr
(
"Input
/Read
"
)
);
CREATE_CATEGORY
(
streaming
,
qtr
(
"
Output/Written/Sent
"
)
);
CREATE_AND_ADD_TO_CAT
(
read_media_stat
,
qtr
(
"
Read at media
"
),
CREATE_AND_ADD_TO_CAT
(
read_media_stat
,
qtr
(
"
Media data size
"
),
"0"
,
input
,
"kB"
);
CREATE_AND_ADD_TO_CAT
(
input_bitrate_stat
,
qtr
(
"Input bitrate"
),
"0"
,
input
,
"kb/s"
);
CREATE_AND_ADD_TO_CAT
(
demuxed_stat
,
qtr
(
"Demuxed"
),
"0"
,
input
,
"kB"
)
;
CREATE_AND_ADD_TO_CAT
(
stream_bitrate_stat
,
qtr
(
"
Stream
bitrate"
),
CREATE_AND_ADD_TO_CAT
(
demuxed_stat
,
qtr
(
"Demuxed
data size
"
),
"0"
,
input
,
"kB"
)
;
CREATE_AND_ADD_TO_CAT
(
stream_bitrate_stat
,
qtr
(
"
Content
bitrate"
),
"0"
,
input
,
"kb/s"
);
CREATE_AND_ADD_TO_CAT
(
corrupted_stat
,
qtr
(
"
Corrupted
"
),
CREATE_AND_ADD_TO_CAT
(
corrupted_stat
,
qtr
(
"
Discarded (corrupted)
"
),
"0"
,
input
,
""
);
CREATE_AND_ADD_TO_CAT
(
discontinuity_stat
,
qtr
(
"D
iscontinuities
"
),
CREATE_AND_ADD_TO_CAT
(
discontinuity_stat
,
qtr
(
"D
ropped (discontinued)
"
),
"0"
,
input
,
""
);
CREATE_AND_ADD_TO_CAT
(
vdecoded_stat
,
qtr
(
"Decoded
blocks
"
),
"0"
,
video
,
""
);
CREATE_AND_ADD_TO_CAT
(
vdisplayed_stat
,
qtr
(
"Displayed
frames
"
),
"0"
,
video
,
""
);
CREATE_AND_ADD_TO_CAT
(
vlost_frames_stat
,
qtr
(
"Lost
frames
"
),
"0"
,
video
,
""
);
CREATE_AND_ADD_TO_CAT
(
vdecoded_stat
,
qtr
(
"Decoded"
),
"0"
,
video
,
qtr
(
"blocks"
)
);
CREATE_AND_ADD_TO_CAT
(
vdisplayed_stat
,
qtr
(
"Displayed"
),
"0"
,
video
,
qtr
(
"frames"
)
);
CREATE_AND_ADD_TO_CAT
(
vlost_frames_stat
,
qtr
(
"Lost"
),
"0"
,
video
,
qtr
(
"frames"
)
);
CREATE_AND_ADD_TO_CAT
(
send_stat
,
qtr
(
"Sent
packets"
),
"0"
,
streaming
,
""
);
CREATE_AND_ADD_TO_CAT
(
send_bytes_stat
,
qtr
(
"Sent
bytes
"
),
CREATE_AND_ADD_TO_CAT
(
send_stat
,
qtr
(
"Sent
"
),
"0"
,
streaming
,
qtr
(
"packets"
)
);
CREATE_AND_ADD_TO_CAT
(
send_bytes_stat
,
qtr
(
"Sent"
),
"0"
,
streaming
,
"kB"
);
CREATE_AND_ADD_TO_CAT
(
send_bitrate_stat
,
qtr
(
"
Sent bit
rate"
),
CREATE_AND_ADD_TO_CAT
(
send_bitrate_stat
,
qtr
(
"
Upstream
rate"
),
"0"
,
streaming
,
"kb/s"
);
CREATE_AND_ADD_TO_CAT
(
adecoded_stat
,
qtr
(
"Decoded
blocks
"
),
"0"
,
audio
,
""
);
CREATE_AND_ADD_TO_CAT
(
aplayed_stat
,
qtr
(
"Played
buffers
"
),
"0"
,
audio
,
""
);
CREATE_AND_ADD_TO_CAT
(
alost_stat
,
qtr
(
"Lost
buffers"
),
"0"
,
audio
,
""
);
CREATE_AND_ADD_TO_CAT
(
adecoded_stat
,
qtr
(
"Decoded"
),
"0"
,
audio
,
qtr
(
"blocks"
)
);
CREATE_AND_ADD_TO_CAT
(
aplayed_stat
,
qtr
(
"Played"
),
"0"
,
audio
,
qtr
(
"buffers"
)
);
CREATE_AND_ADD_TO_CAT
(
alost_stat
,
qtr
(
"Lost
"
),
"0"
,
audio
,
qtr
(
"buffers"
)
);
#undef CREATE_AND_ADD_TO_CAT
#undef CREATE_CATEGORY
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment