MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / sws_shiftVec

Function sws_shiftVec

libswscale/utils.c:1405–1412  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1403}
1404
1405void sws_shiftVec(SwsVector *a, int shift)
1406{
1407 SwsVector *shifted= sws_getShiftedVec(a, shift);
1408 av_free(a->coeff);
1409 a->coeff= shifted->coeff;
1410 a->length= shifted->length;
1411 av_free(shifted);
1412}
1413
1414void sws_addVec(SwsVector *a, SwsVector *b)
1415{

Callers 1

sws_getDefaultFilterFunction · 0.85

Calls 2

sws_getShiftedVecFunction · 0.85
av_freeFunction · 0.85

Tested by

no test coverage detected