Skip to content

Commit

Permalink
Add AV-sync info to OSD
Browse files Browse the repository at this point in the history
  • Loading branch information
andoma committed Sep 20, 2015
1 parent 26230fd commit d14a946
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions glwskins/flat/osd/osd_info.view
Expand Up @@ -58,6 +58,17 @@ widget(container_z, {
widget(table, {
filterConstraintX: true;
widget(container_y, {
InfoLine(_("A/V diff"),
translate($self.media.avdiffError,
fmt("%d ms", $self.media.avdiff * 1000),
1, "Huge diff",
2, "Epoch mismatch",
3, fmt("%d ms holding",
$self.media.avdiff * 1000),
4, fmt("%d ms catching up",
$self.media.avdiff * 1000)
),
isVoid($self.media.avdiffError));
InfoBar(_("Buffer usage"), $self.media.buffer.current / $self.media.buffer.limit);
InfoLine(_("Remaining buffer"), fmt("%ds", $self.media.buffer.delay));
InfoLine(_("Video packets"), $self.media.video.dqlen);
Expand Down

0 comments on commit d14a946

Please sign in to comment.