git.libav.org Git - libav.git/rss log

Libav master git repository

http://git.libav.org/?p=libav.git;a=summary

Les articles publiés sur le site

  • mjpegdec : Drop disabled code

    1er août 2016, par Diego Biurrun
    mjpegdec: Drop disabled code
    
    • [DBH] libavcodec/mjpegdec.c
  • mathops : Drop disabled alternative mid_pred() implementation

    1er août 2016, par Diego Biurrun
    mathops: Drop disabled alternative mid_pred() implementation
    
    • [DBH] libavcodec/mathops.h
  • faan(i)dct : Kill some disabled code

    1er août 2016, par Diego Biurrun
    faan(i)dct: Kill some disabled code
    
    • [DBH] libavcodec/faandct.c
    • [DBH] libavcodec/faanidct.c
  • mpegvideo : Kill some disabled code

    1er août 2016, par Diego Biurrun
    mpegvideo: Kill some disabled code
    
    • [DBH] libavcodec/mpegvideo_motion.c
    • [DBH] libavcodec/mpegvideoencdsp.c
  • 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>
    
    • [DBH] libavutil/intreadwrite.h