diff vobsub.c @ 27451:07ff0bdce52c

Fix forumla -> formula in comment
author reimar
date Tue, 26 Aug 2008 18:41:04 +0000
parents e7c989f7a7c9
children 3ac3d3a51934
line wrap: on
line diff
--- a/vobsub.c	Sun Aug 24 13:52:54 2008 +0000
+++ b/vobsub.c	Tue Aug 26 18:41:04 2008 +0000
@@ -803,8 +803,8 @@
 unsigned int vobsub_palette_to_yuv(unsigned int pal)
 {
     int r, g, b, y, u, v;
-    // Palette in idx file is not rgb value, it was calculated by wrong forumla.
-    // Here's reversed forumla of the one used to generate palette in idx file.
+    // Palette in idx file is not rgb value, it was calculated by wrong formula.
+    // Here's reversed formula of the one used to generate palette in idx file.
     r = pal >> 16 & 0xff;
     g = pal >> 8 & 0xff;
     b = pal & 0xff;