summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorVincent Penquerc'h <vincent.penquerch@collabora.co.uk>2011-08-18 09:37:38 +0100
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2011-08-18 11:17:40 +0200
commit1dadc5eac13804847426a220978d1da87048a900 (patch)
treefcd493b0e071d80b23dca7fd02aef8b9f68199cc /ext
parentcf370e02194479247be6940c7e427b13ce8fda04 (diff)
ogg: get the operator precedence right, even if only a doc
https://bugzilla.gnome.org/show_bug.cgi?id=656775
Diffstat (limited to 'ext')
-rw-r--r--ext/ogg/README2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/ogg/README b/ext/ogg/README
index 557e9d503..da449e149 100644
--- a/ext/ogg/README
+++ b/ext/ogg/README
@@ -30,7 +30,7 @@ The granulepos in theora is an encoding of the frame number of the last
key frame ("i frame"), and the number of frames since the last key frame
("p frame"). The granulepos is constructed as the sum of the first number,
shifted to the left for granuleshift bits, and the second number:
-granulepos = pframe << granuleshift + iframe
+granulepos = (pframe << granuleshift) + iframe
(This means that given a framenumber or a timestamp, one cannot generate
the one and only granulepos for that page; several granulepos possibilities