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

  • indeo2 : Drop disabled big-endian ir2_codes table

    4 juin 2016, par Diego Biurrun
    indeo2: Drop disabled big-endian ir2_codes table
    
    Only the little-endian variant of the table is ever used.
    
    • [DBH] libavcodec/indeo2data.h
  • gsm : Move requant_tab table to the gsm tables file

    4 juin 2016, par Diego Biurrun
    gsm: Move requant_tab table to the gsm tables file
    
    This avoids duplicating the table in the gsm template file.
    Also adjust the table type to uint8_t to save space.
    
    • [DBH] libavcodec/gsmdec_data.c
    • [DBH] libavcodec/gsmdec_data.h
    • [DBH] libavcodec/gsmdec_template.c
  • get_bits : Move BITSTREAM_READER_LE definition before all relevant #includes

    4 juin 2016, par Diego Biurrun
    get_bits: Move BITSTREAM_READER_LE definition before all relevant #includes
    
    This avoids the danger that get_bits.h might get indirectly #included before
    BITSTREAM_READER_LE is defined.
    
    Also sort headers into canonical order where appropriate.
    
    • [DBH] libavcodec/bink.c
    • [DBH] libavcodec/binkaudio.c
    • [DBH] libavcodec/dxtory.c
    • [DBH] libavcodec/eatgq.c
    • [DBH] libavcodec/eatgv.c
    • [DBH] libavcodec/escape124.c
    • [DBH] libavcodec/escape130.c
    • [DBH] libavcodec/g723_1dec.c
    • [DBH] libavcodec/indeo2.c
    • [DBH] libavcodec/indeo4.c
    • [DBH] libavcodec/interplayvideo.c
    • [DBH] libavcodec/ivi.c
    • [DBH] libavcodec/metasound.c
    • [DBH] libavcodec/msgsmdec.c
    • [DBH] libavcodec/nellymoserdec.c
    • [DBH] libavcodec/qdm2.c
    • [DBH] libavcodec/ra288.c
    • [DBH] libavcodec/sipr.c
    • [DBH] libavcodec/smacker.c
    • [DBH] libavcodec/tak.c
    • [DBH] libavcodec/tak.h
    • [DBH] libavcodec/tak_parser.c
    • [DBH] libavcodec/takdec.c
    • [DBH] libavcodec/tiertexseqv.c
    • [DBH] libavcodec/tscc2.c
    • [DBH] libavcodec/tta.c
    • [DBH] libavcodec/vble.c
    • [DBH] libavcodec/vorbis.c
    • [DBH] libavcodec/vorbisdec.c
    • [DBH] libavcodec/wavpack.c
    • [DBH] libavcodec/webp.c
    • [DBH] libavcodec/xan.c
    • [DBH] libavformat/takdec.c
  • vp9 : Return the correct size when decoding a superframe

    4 juin 2016, par Denis Charmet
    vp9: Return the correct size when decoding a superframe
    
    According to avcodec.h, avcodec_decode_video2 should return the number of
    bytes used if a frame was decoded.
    
    The current implementation returns size - used size of all the subframes.
    This fixes the VLC's bug https://trac.videolan.org/vlc/ticket/16836.
    
    The superframe is always fully consumed.
    
    Signed-off-by: Diego Biurrun <diego@biurrun.de>
    
    • [DBH] libavcodec/vp9.c
  • mss2 : Drop a silly assert

    4 juin 2016, par Diego Biurrun
    mss2: Drop a silly assert
    
    • [DBH] libavcodec/mss2.c