Home | History | Annotate | Download | only in gstreamer

Lines Matching refs:destination

192         guint8 *destination = GST_BUFFER_DATA(newBuffer);
198 destination[0] = (source[0] * alpha + 128) / 255;
199 destination[1] = (source[1] * alpha + 128) / 255;
200 destination[2] = (source[2] * alpha + 128) / 255;
201 destination[3] = alpha;
204 destination[0] = alpha;
205 destination[1] = (source[1] * alpha + 128) / 255;
206 destination[2] = (source[2] * alpha + 128) / 255;
207 destination[3] = (source[3] * alpha + 128) / 255;
210 destination += 4;