• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libswscale/

Lines Matching refs:SwsVector

185                       SwsVector *srcFilter, SwsVector *dstFilter, double param[2], int is_horizontal)
1166 SwsVector *id= sws_getIdentityVec();
1175 SwsVector *id= sws_getIdentityVec();
1200 SwsVector *sws_allocVec(int length)
1202 SwsVector *vec = av_malloc(sizeof(SwsVector));
1212 SwsVector *sws_getGaussianVec(double variance, double quality)
1217 SwsVector *vec= sws_allocVec(length);
1232 SwsVector *sws_getConstVec(double c, int length)
1235 SwsVector *vec= sws_allocVec(length);
1246 SwsVector *sws_getIdentityVec(void)
1251 static double sws_dcVec(SwsVector *a)
1262 void sws_scaleVec(SwsVector *a, double scalar)
1270 void sws_normalizeVec(SwsVector *a, double height)
1275 static SwsVector *sws_getConvVec(SwsVector *a, SwsVector *b)
1279 SwsVector *vec= sws_getConstVec(0.0, length);
1293 static SwsVector *sws_sumVec(SwsVector *a, SwsVector *b)
1297 SwsVector *vec= sws_getConstVec(0.0, length);
1308 static SwsVector *sws_diffVec(SwsVector *a, SwsVector *b)
1312 SwsVector *vec= sws_getConstVec(0.0, length);
1324 static SwsVector *sws_getShiftedVec(SwsVector *a, int shift)
1328 SwsVector *vec= sws_getConstVec(0.0, length);
1340 void sws_shiftVec(SwsVector *a, int shift)
1342 SwsVector *shifted= sws_getShiftedVec(a, shift);
1349 void sws_addVec(SwsVector *a, SwsVector *b)
1351 SwsVector *sum= sws_sumVec(a, b);
1358 void sws_subVec(SwsVector *a, SwsVector *b)
1360 SwsVector *diff= sws_diffVec(a, b);
1367 void sws_convVec(SwsVector *a, SwsVector *b)
1369 SwsVector *conv= sws_getConvVec(a, b);
1376 SwsVector *sws_cloneVec(SwsVector *a)
1379 SwsVector *vec= sws_allocVec(a->length);
1389 void sws_printVec2(SwsVector *a, AVClass *log_ctx, int log_level)
1412 void sws_freeVec(SwsVector *a)