Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Gautam Chitnis
web-ui-redesign
Commits
abcbefc5
Commit
abcbefc5
authored
Feb 23, 2006
by
zorglub
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bitrates only
parent
fbc90d85
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
modules/gui/wxwidgets/dialogs/infopanels.cpp
modules/gui/wxwidgets/dialogs/infopanels.cpp
+4
-4
No files found.
modules/gui/wxwidgets/dialogs/infopanels.cpp
View file @
abcbefc5
...
...
@@ -376,9 +376,9 @@ void InputStatsInfoPanel::Update( input_item_t *p_item )
formatted.Printf( wxString( wxT(format) ), ## calc ); \
widget->SetLabel( formatted ); \
}
UPDATE
(
read_bytes_text
,
"%8.0f k
b
"
,(
float
)(
p_item
->
p_stats
->
i_read_bytes
*
8
)
/
1000
);
UPDATE
(
read_bytes_text
,
"%8.0f k
B
"
,(
float
)(
p_item
->
p_stats
->
i_read_bytes
)
/
1000
);
UPDATE
(
input_bitrate_text
,
"%6.0f kb/s"
,
(
float
)(
p_item
->
p_stats
->
f_input_bitrate
)
*
8000
);
UPDATE
(
demux_bytes_text
,
"%8.0f k
b
"
,
(
float
)(
p_item
->
p_stats
->
i_demux_read_bytes
*
8
)
/
1000
);
UPDATE
(
demux_bytes_text
,
"%8.0f k
B
"
,
(
float
)(
p_item
->
p_stats
->
i_demux_read_bytes
)
/
1000
);
UPDATE
(
demux_bitrate_text
,
"%6.0f kb/s"
,
(
float
)(
p_item
->
p_stats
->
f_demux_bitrate
)
*
8000
);
/* Video */
...
...
@@ -388,8 +388,8 @@ void InputStatsInfoPanel::Update( input_item_t *p_item )
/* Sout */
UPDATE
(
sout_sent_packets_text
,
"%5i"
,
p_item
->
p_stats
->
i_sent_packets
);
UPDATE
(
sout_sent_bytes_text
,
"%8.0f k
b
"
,
(
float
)(
p_item
->
p_stats
->
i_sent_bytes
*
8
)
/
1000
);
UPDATE
(
sout_sent_bytes_text
,
"%8.0f k
B
"
,
(
float
)(
p_item
->
p_stats
->
i_sent_bytes
)
/
1000
);
UPDATE
(
sout_send_bitrate_text
,
"%6.0f kb/s"
,
(
float
)(
p_item
->
p_stats
->
f_send_bitrate
*
8
)
*
1000
);
...
...
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