• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/

Lines Matching refs:def

30                            int w, int h,int stride, unsigned char def)
32 return (x < 0 || y < 0 || x >= w || y >= h) ? def : src[x + y * stride];
36 int width, int height, int stride, unsigned char def)
38 return pixel(src, (int)(x + 0.5f), (int)(y + 0.5f), width, height, stride, def);
42 int width, int height, int stride, unsigned char def)
52 return def;
54 v4 = pixel(src, x_f, y_f, width, height, stride, def);
55 v2 = pixel(src, x_c, y_f, width, height, stride, def);
56 v3 = pixel(src, x_f, y_c, width, height, stride, def);
57 v1 = pixel(src, x_c, y_c, width, height, stride, def);
64 int width, int height, int stride, unsigned char def)
75 return def;
77 v4 = pixel(src, x_f, y_f, width, height, stride, def);
78 v2 = pixel(src, x_c, y_f, width, height, stride, def);
79 v3 = pixel(src, x_f, y_c, width, height, stride, def);
80 v1 = pixel(src, x_c, y_c, width, height, stride, def);
120 unsigned char def = 0;
127 def = 0;
130 def = src[y*src_stride_lu + x];
135 def = src[(int)y_s * src_stride_lu + (int)x_s];
140 def = src[(int)y_s * src_stride_lu + (int)x_s];
145 dst[idx_dst] = interpolate_nearest(x_s, y_s, src, width, height, src_stride_lu, def);
148 dst[idx_dst] = interpolate_bilinear(x_s, y_s, src, width, height, src_stride_lu, def);
151 dst[idx_dst] = interpolate_biquadratic(x_s, y_s, src, width, height, src_stride_lu, def);
187 unsigned char def;
192 def = 0;
195 def = src[y*src_stride_ch + x];
200 def = src[(int)y_s * src_stride_ch + (int)x_s];
205 def = src[(int)y_s * src_stride_ch + (int)x_s];
210 dst[idx_dst] = interpolate_nearest(x_s, y_s, src, cw, ch, src_stride_ch, def);
213 dst[idx_dst] = interpolate_bilinear(x_s, y_s, src, cw, ch, src_stride_ch, def);
216 dst[idx_dst] = interpolate_biquadratic(x_s, y_s, src, cw, ch, src_stride_ch, def);