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

Function linecpy

libpostproc/postprocess_internal.h:170–176  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

168
169
170static inline void linecpy(void *dest, const void *src, int lines, int stride) {
171 if (stride > 0) {
172 memcpy(dest, src, lines*stride);
173 } else {
174 memcpy((uint8_t*)dest+(lines-1)*stride, (const uint8_t*)src+(lines-1)*stride, -lines*stride);
175 }
176}
177
178#endif /* POSTPROC_POSTPROCESS_INTERNAL_H */

Callers 2

RENAME(postProcess)Function · 0.85
pp_postprocessFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected