mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-26 02:00:33 +00:00
gstutils: Fix typo in the comment.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/813>
This commit is contained in:
parent
4ad1c8b7c9
commit
41ee497b90
1 changed files with 1 additions and 1 deletions
|
@ -388,7 +388,7 @@ gst_util_uint64_mul_uint64 (GstUInt64 * c1, GstUInt64 * c0, guint64 arg1,
|
||||||
b0.ll = (guint64) v.l.high * n.l.low;
|
b0.ll = (guint64) v.l.high * n.l.low;
|
||||||
|
|
||||||
/* add the high word of a0 to the low words of a1 and b0 using c1 as
|
/* add the high word of a0 to the low words of a1 and b0 using c1 as
|
||||||
* scrach space to capture the carry. the low word of the result becomes
|
* scratch space to capture the carry. the low word of the result becomes
|
||||||
* the final high word of c0 */
|
* the final high word of c0 */
|
||||||
c1->ll = (guint64) c0->l.high + a1.l.low + b0.l.low;
|
c1->ll = (guint64) c0->l.high + a1.l.low + b0.l.low;
|
||||||
c0->l.high = c1->l.low;
|
c0->l.high = c1->l.low;
|
||||||
|
|
Loading…
Reference in a new issue