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

  • mov : Support prores with multiple stsd

    10 juin 2016, par Vittorio Giovara
    mov: Support prores with multiple stsd
    
    This function needs to return false, or data in the additional tables
    will be skipped, and the decoder will not be able to decode frames
    associated with them.
    
    • [DBH] libavformat/mov.c
  • h264 : Support AV_PKT_DATA_NEW_EXTRADATA

    10 juin 2016, par Vittorio Giovara
    h264: Support AV_PKT_DATA_NEW_EXTRADATA
    
    • [DBH] libavcodec/h264.c
  • lavc : Document AV_PKT_DATA_NEW_EXTRADATA

    10 juin 2016, par Vittorio Giovara
    lavc: Document AV_PKT_DATA_NEW_EXTRADATA
    
    • [DBH] libavcodec/avcodec.h
  • avpacket : Error out when creating 0-sized side data

    10 juin 2016, par Vittorio Giovara
    avpacket: Error out when creating 0-sized side data
    
    This mimics the behaviour of other av_*_new_side_data().
    This is not caught by the malloc check, since padding
    is always added to the allocated size.
    
    Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
    
    • [DBH] libavcodec/avpacket.c
  • h264 : eliminate decode_postinit()

    9 juin 2016, par Anton Khirnov
    h264: eliminate decode_postinit()
    
    This function's purpose is not very well defined. Currently it does two
    (only marginally related) things: selecting the next output frame and
    calling ff_thread_finish_setup() for frame threading. The first of those
    more properly belongs under field_start(), while the second can be
    called directly from decode_nal_units().
    
    • [DBH] libavcodec/h264_slice.c
    • [DBH] libavcodec/h264dec.c
    • [DBH] libavcodec/h264dec.h