[vlc-commits] mux:ogg: the index interval is in milliseconds not microseconds
Steve Lhomme
git at videolan.org
Tue Sep 18 15:55:57 CEST 2018
vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Tue Sep 18 15:00:03 2018 +0200| [4ddb9e7909f836b5f3c29b18ff212713dded6cce] | committer: Steve Lhomme
mux:ogg: the index interval is in milliseconds not microseconds
Since it's compared to vlc_tick_t after being multipled by 1000
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=4ddb9e7909f836b5f3c29b18ff212713dded6cce
---
modules/mux/ogg.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/mux/ogg.c b/modules/mux/ogg.c
index 6a47ffafc3..09b32fef19 100644
--- a/modules/mux/ogg.c
+++ b/modules/mux/ogg.c
@@ -45,7 +45,7 @@
* Module descriptor
*****************************************************************************/
#define INDEXINTVL_TEXT N_("Index interval")
-#define INDEXINTVL_LONGTEXT N_("Minimal index interval, in microseconds. " \
+#define INDEXINTVL_LONGTEXT N_("Minimal index interval, in milliseconds. " \
"Set to 0 to disable index creation.")
#define INDEXRATIO_TEXT N_("Index size ratio")
#define INDEXRATIO_LONGTEXT N_(\
More information about the vlc-commits
mailing list