git.libav.org Git - libav.git/rss log
Libav master git repository
Les articles publiés sur le site
-
pixblockdsp : Change type of stride parameters to ptrdiff_t
6 septembre 2016, par Diego Biurrunpixblockdsp: Change type of stride parameters to ptrdiff_t This avoids SIMD-optimized functions having to sign-extend their line size argument manually to be able to do pointer arithmetic. Also adjust parameter names to be "stride" everywhere.
- [DBH] libavcodec/arm/pixblockdsp_init_arm.c
- [DBH] libavcodec/dv.h
- [DBH] libavcodec/dvenc.c
- [DBH] libavcodec/pixblockdsp.c
- [DBH] libavcodec/pixblockdsp.h
- [DBH] libavcodec/pixblockdsp_template.c
- [DBH] libavcodec/ppc/pixblockdsp.c
- [DBH] libavcodec/x86/pixblockdsp.asm
- [DBH] libavcodec/x86/pixblockdsp_init.c
-
configure : Simplify clock_gettime() test
5 septembre 2016, par Diego Biurrun -
build : Fix directory dependencies of tests/pixfmts.mak target
5 septembre 2016, par Diego Biurrun -
configure : Drop check_lib()/require() in favor of check_lib2()/require2()
5 septembre 2016, par Diego Biurrunconfigure: Drop check_lib()/require() in favor of check_lib2()/require2() The latter can do everything the former can do, but also handle conditions the former cannot like multiple header #includes and checking for headers and functions in a single test program, which is necessary for certain library tests.
-
audiodsp : reorder arguments for vector_clipf
4 septembre 2016, par Anton Khirnovaudiodsp: reorder arguments for vector_clipf This will make the x86 asm simpler. ARM conversion by Martin Storsjö <martin@martin.st> and Janne Grunau <janne-libav@jannau.net>