Displaying 1 result from an estimated 1 matches for "stream_processor".
2003 Nov 25
1
ogginfo: playlength display in milliseconds
...diff -Nur vorbis-tools-1.0.1/ogginfo/ogginfo2.c vorbis-tools-1.0.1-msecs/ogginfo/ogginfo2.c
--- vorbis-tools-1.0.1/ogginfo/ogginfo2.c 2003-09-10 19:05:09.000000000 +0400
+++ vorbis-tools-1.0.1-msecs/ogginfo/ogginfo2.c 2003-11-23 20:14:45.000000000 +0300
@@ -384,27 +384,28 @@
static void vorbis_end(stream_processor *stream)
{
misc_vorbis_info *inf = stream->data;
- long minutes, seconds;
+ long minutes, seconds, milliseconds;
double bitrate, time;
/* This should be lastgranulepos - startgranulepos, or something like that*/
time = (double)inf->lastgranulepos / inf->vi.rat...