git.libav.org Git - libav.git/rss log
Libav master git repository
Les articles publiés sur le site
-
mjpegdec : Drop disabled code
1er août 2016, par Diego Biurrun -
mathops : Drop disabled alternative mid_pred() implementation
1er août 2016, par Diego Biurrun -
faan(i)dct : Kill some disabled code
1er août 2016, par Diego Biurrun -
mpegvideo : Kill some disabled code
1er août 2016, par Diego Biurrun -
intreadwrite : Use the __unaligned keyword on MSVC for ARM and x86_64
1er août 2016, par Martin Storsjöintreadwrite: Use the __unaligned keyword on MSVC for ARM and x86_64 AV_WN64 is meant for unaligned data, but the existing av_alias* unions (without a definition for the av_alias attribute - we don't have one for MSVC) indicate to the compiler that they would have sufficient alignment for normal access, i.e. the compiler is free to assume 8 byte alignment. On ARM, this makes sure that AV_WN64 (or two consecutive AV_WN32) is done with two str instructions instead of one strd. Signed-off-by: Martin Storsjö <martin@martin.st>