git.libav.org Git - libav.git/rss log
Libav master git repository
Les articles publiés sur le site
-
lavc : Remove old vaapi decode infrastructure
25 août 2016, par Mark Thompsonlavc: Remove old vaapi decode infrastructure Deprecates struct vaapi_context and the installed header vaapi.h, to be removed at the next version bump.
-
libvpx : Cast a pointer to const to squelch a warning
24 août 2016, par Diego Biurrunlibvpx: Cast a pointer to const to squelch a warning libavcodec/libvpxdec.c:100:57: warning: passing argument 3 of 'av_image_copy' from incompatible pointer type av_image_copy(picture->data, picture->linesize, img->planes, libavutil/imgutils.h:116:6: note: expected 'const uint8_t **' but argument is of type 'unsigned char **' void av_image_copy(uint8_t *dst_data[4], int dst_linesizes[4],
-
vp8 : Update some assembly comments left unchanged in bd66f073fe7286bd3c
24 août 2016, par Diego Biurrun -
vp56 : Separate VP5 and VP6 dsp initialization
24 août 2016, par Diego Biurrunvp56: Separate VP5 and VP6 dsp initialization VP5 has no arch-specific optimizations (nor will it get some in the future), so it makes no sense to try to share dsp init code with VP6.
-
prores : Change type of stride parameters to ptrdiff_t
24 août 2016, par Diego Biurrunprores: 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 "linesize" everywhere.