[MPlayer-cvslog] CVS: main mplayer.c,1.872,1.873
Reimar Döffinger CVS
syncmail at mplayerhq.hu
Tue Oct 4 15:59:28 CEST 2005
CVS change done by Reimar Döffinger CVS
Update of /cvsroot/mplayer/main
In directory mail:/var2/tmp/cvs-serv16163
Modified Files:
mplayer.c
Log Message:
Show total time when playing audio-only files
Index: mplayer.c
===================================================================
RCS file: /cvsroot/mplayer/main/mplayer.c,v
retrieving revision 1.872
retrieving revision 1.873
diff -u -r1.872 -r1.873
--- mplayer.c 19 Sep 2005 16:33:38 -0000 1.872
+++ mplayer.c 4 Oct 2005 13:59:25 -0000 1.873
@@ -846,6 +846,30 @@
}
/**
+ * \brief append time in the hh:mm:ss.f format
+ * \param buf buffer to print into
+ * \param pos position of terminating 0 in buf
+ * \param len maximum number of characters in buf, not including terminating 0
+ * \param time time value to convert/append
+ */
+static void sadd_hhmmssf(char *buf, unsigned *pos, int len, float time) {
+ long tenths = 10 * time;
+ int f1 = tenths % 10;
+ int ss = (tenths / 10) % 60;
+ int mm = (tenths / 600) % 60;
+ int hh = tenths / 36000;
+ if (time <= 0) {
+ saddf(buf, pos, len, "unknown");
+ return;
+ }
+ if (hh > 0)
+ saddf(buf, pos, len, "%2d:", hh);
+ if (hh > 0 || mm > 0)
+ saddf(buf, pos, len, "%02d:", mm);
+ saddf(buf, pos, len, "%02d.%1d", ss, f1);
+}
+
+/**
* \brief print the status line
* \param a_pos audio position
* \param a_v A-V desynchronization
@@ -872,20 +896,12 @@
if (sh_audio) {
saddf(line, &pos, width, "A:%6.1f ", a_pos);
if (!sh_video) {
- // convert time to HH:MM:SS.F format
- long tenths = 10 * a_pos;
- int f1 = tenths % 10;
- int ss = (tenths / 10) % 60;
- int mm = (tenths / 600) % 60;
- int hh = (tenths / 36000) % 100;
+ float len = demuxer_get_time_length(demuxer);
saddf(line, &pos, width, "(");
- if (hh > 0)
- saddf(line, &pos, width, "%2d:", hh);
- if (hh > 0 || mm > 0)
- saddf(line, &pos, width, "%02d:", mm);
- saddf(line, &pos, width, "%02d.", ss);
- saddf(line, &pos, width, "%1d", f1);
- saddf(line, &pos, width, ") ");
+ sadd_hhmmssf(line, &pos, width, a_pos);
+ saddf(line, &pos, width, ") of %.1f (", len);
+ sadd_hhmmssf(line, &pos, width, len);
+ saddf(line, &pos, width, ")");
}
}
More information about the MPlayer-cvslog
mailing list