edgetv: trivial comment fix for clarity

https://bugzilla.gnome.org/show_bug.cgi?id=661841
This commit is contained in:
Vincent Penquerc'h 2011-10-31 17:06:18 +00:00 committed by Sebastian Dröge
parent 852104b4ee
commit cbbabd6ccc

View file

@ -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);