MCPcopy Create free account
hub / github.com/HandBrake/HandBrake / eedi2_aligned_free

Function eedi2_aligned_free

libhb/eedi2.c:54–59  ·  view source on GitHub ↗

* Analog of _aligned_free * @param ptr The aligned pointer, created with eedi2_aligned_malloc, to be freed */

Source from the content-addressed store, hash-verified

52 * @param ptr The aligned pointer, created with eedi2_aligned_malloc, to be freed
53 */
54void eedi2_aligned_free( void *ptr )
55{
56 int * ptr2 = (int *)ptr - 1;
57 ptr -= * ptr2;
58 free(ptr);
59}
60
61/**
62 * Sorts metrics for median filtering

Callers 1

hb_decomb_closeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected