Home | History | Annotate | Download | only in gif

Lines Matching refs:channel

88   const int channel = 3;
90 uint8* const dstdata = allocate_output(num_frames, width, height, channel);
93 uint8* this_dst = dstdata + k * width * channel * height;
117 uint8* last_dst = dstdata + (k - 1) * width * channel * height;
119 uint8* p_dst = this_dst + i * width * channel;
120 uint8* l_dst = last_dst + i * width * channel;
122 p_dst[j * channel + 0] = l_dst[j * channel + 0];
123 p_dst[j * channel + 1] = l_dst[j * channel + 1];
124 p_dst[j * channel + 2] = l_dst[j * channel + 2];
134 uint8* p_dst = this_dst + i * width * channel;
140 p_dst[j * channel + 0] = gif_color.Red;
141 p_dst[j * channel + 1] = gif_color.Green;
142 p_dst[j * channel + 2] = gif_color.Blue;