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
560b07b4
Commit
560b07b4
authored
Jan 30, 2007
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt4 : translate the titles for stats.
parent
e0d590f4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
21 deletions
+22
-21
modules/gui/qt4/components/infopanels.cpp
modules/gui/qt4/components/infopanels.cpp
+22
-21
No files found.
modules/gui/qt4/components/infopanels.cpp
View file @
560b07b4
...
...
@@ -131,27 +131,28 @@ InputStatsPanel::InputStatsPanel( QWidget *parent, intf_thread_t *_p_intf ) :
CREATE_TREE_ITEM( itemName, itemText, itemValue, unit ); \
catName->addChild( itemName ); }
CREATE_CATEGORY
(
input
,
"Input"
);
CREATE_CATEGORY
(
video
,
"Video"
);
CREATE_CATEGORY
(
streaming
,
"Streaming"
);
CREATE_CATEGORY
(
audio
,
"Audio"
);
CREATE_AND_ADD_TO_CAT
(
read_media_stat
,
"Read at media"
,
"0"
,
input
,
"kB"
)
;
CREATE_AND_ADD_TO_CAT
(
input_bitrate_stat
,
"Input bitrate"
,
"0"
,
input
,
"kb/s"
)
;
CREATE_AND_ADD_TO_CAT
(
demuxed_stat
,
"Demuxed"
,
"0"
,
input
,
"kB"
)
;
CREATE_AND_ADD_TO_CAT
(
stream_bitrate_stat
,
"Stream bitrate"
,
"0"
,
input
,
"kb/s"
)
;
CREATE_AND_ADD_TO_CAT
(
vdecoded_stat
,
"Decoded blocks"
,
"0"
,
video
,
""
)
;
CREATE_AND_ADD_TO_CAT
(
vdisplayed_stat
,
"Displayed frames"
,
"0"
,
video
,
""
)
;
CREATE_AND_ADD_TO_CAT
(
vlost_frames_stat
,
"Lost frames"
,
"0"
,
video
,
""
)
;
CREATE_AND_ADD_TO_CAT
(
send_stat
,
"Sent packets"
,
"0"
,
streaming
,
""
)
;
CREATE_AND_ADD_TO_CAT
(
send_bytes_stat
,
"Sent bytes"
,
"0"
,
streaming
,
"kB"
)
;
CREATE_AND_ADD_TO_CAT
(
send_bitrate_stat
,
"Sent bitrates"
,
"0"
,
streaming
,
"kb/s"
)
;
CREATE_AND_ADD_TO_CAT
(
adecoded_stat
,
"Decoded blocks"
,
"0"
,
audio
,
""
)
;
CREATE_AND_ADD_TO_CAT
(
aplayed_stat
,
"Played buffers"
,
"0"
,
audio
,
""
)
;
CREATE_AND_ADD_TO_CAT
(
alost_stat
,
"Lost buffers"
,
"0"
,
audio
,
""
)
;
CREATE_CATEGORY
(
input
,
qtr
(
"Input"
)
);
CREATE_CATEGORY
(
video
,
qtr
(
"Video"
)
);
CREATE_CATEGORY
(
streaming
,
qtr
(
"Streaming"
)
);
CREATE_CATEGORY
(
audio
,
qtr
(
"Audio"
)
);
CREATE_AND_ADD_TO_CAT
(
read_media_stat
,
qtr
(
"Read at media"
),
"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"
),
"0"
,
input
,
"kb/s"
)
;
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
(
send_stat
,
qtr
(
"Sent packets"
),
"0"
,
streaming
,
""
)
;
CREATE_AND_ADD_TO_CAT
(
send_bytes_stat
,
qtr
(
"Sent bytes"
),
"0"
,
streaming
,
"kB"
)
;
CREATE_AND_ADD_TO_CAT
(
send_bitrate_stat
,
qtr
(
"Sent bitrates"
),
"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
,
""
)
;
input
->
setExpanded
(
true
);
video
->
setExpanded
(
true
);
...
...
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