mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
edgetv: trivial comment fix for clarity
https://bugzilla.gnome.org/show_bug.cgi?id=661841
This commit is contained in:
parent
852104b4ee
commit
cbbabd6ccc
1 changed files with 1 additions and 1 deletions
|
@ -130,7 +130,7 @@ gst_edgetv_transform (GstBaseTransform * trans, GstBuffer * in, GstBuffer * out)
|
|||
p = *src;
|
||||
q = *(src - 4);
|
||||
|
||||
/* difference between the current pixel and right neighbor. */
|
||||
/* difference between the current pixel and left neighbor. */
|
||||
r = ((p & 0xff0000) - (q & 0xff0000)) >> 16;
|
||||
g = ((p & 0xff00) - (q & 0xff00)) >> 8;
|
||||
b = (p & 0xff) - (q & 0xff);
|
||||
|
|
Loading…
Reference in a new issue