On Sun, Mar 27, 2016 at 04:39:39PM +0000, Petru Rares Sincraian wrote: > > - Added test for: swscale_license() > - Added test for: alphaless_fmt() > - Added test for: alloc_gamma_tbl() [...]
> +static void test_alloc_gamma_tbl(void) > +{ > + uint16_t *tbl = alloc_gamma_tbl(1.); > + int i; > + > + // print only 32 elements > + printf("e = 1.0\n"); > + for (i = 0; i < 65536; i += 2048) > + printf("it: %d\t value: %d\n", i, tbl[i]); > + > + tbl = alloc_gamma_tbl(0.75); > + printf("\ne = 0.75\n"); > + for (i = 0; i < 65536; i += 2048) > + printf("it: %d\t value: %d\n", i, tbl[i]); > + > + tbl = alloc_gamma_tbl(2.8); > + printf("\ne = 2.8\n"); > + for (i = 0; i < 65536; i += 2048) > + printf("it: %d\t value: %d\n", i, tbl[i]); this leaks memory [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB In a rich man's house there is no place to spit but his face. -- Diogenes of Sinope
signature.asc
Description: Digital signature
_______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel