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

  • vf_hwupload/hwmap : Support setting a fixed pool size

    5 août 2017, par Mark Thompson
    vf_hwupload/hwmap: Support setting a fixed pool size
    
    These filters do not directly know whether the API they are using will
    support dynamic frame pools, so this is somewhat tricky.  If the user
    sets extra_hw_frames, we assume that they are aware of the problem and
    set a fixed size based on that.  If not, most cases use dynamic sizing
    just like they did previously.  The hardware-reverse-mapping case for
    hwmap previously had a large fixed size (64) here, primarily as a hack
    for QSV use - this is removed and extra_hw_frames will need to be set
    for QSV to work since it requires fixed-size pools (as the other cases
    do, and which didn't work before).
    
    • [DBH] libavfilter/vf_hwmap.c
    • [DBH] libavfilter/vf_hwupload.c
  • lavc : Add mpeg2_metadata bitstream filter

    1er août 2017, par Mark Thompson
    lavc: Add mpeg2_metadata bitstream filter
    
    • [DBH] configure
    • [DBH] doc/bitstream_filters.texi
    • [DBH] libavcodec/Makefile
    • [DBH] libavcodec/bitstream_filters.c
    • [DBH] libavcodec/mpeg2_metadata_bsf.c
  • mov : move stsd finalization to an appropriate place

    29 juillet 2017, par Sean McGovern
    mov: move stsd finalization to an appropriate place
    
    mov_finalize_stsd_codec() parses stream information from the ALAC extradata,
    so run it after the extradata processing is completed in mov_read_stsd().
    
    Fixes playback of 96kHz ALAC streams muxed by qaac or the reference alac encoder.
    
    Adapted from an FFmpeg patch by Hendrik Leppkes <h.leppkes@gmail.com>
    
    Bug-Id: 1072
    
    • [DBH] libavformat/mov.c
  • mov : Do not set stsd_count if mov_read_stsd() fails

    28 juillet 2017, par Sean McGovern
    mov: Do not set stsd_count if mov_read_stsd() fails
    
    Based on an FFmpeg patch by Michael Niedermayer <michael@niedermayer.cc>
    
    • [DBH] libavformat/mov.c
  • mov : log and return early on non-positive stsd entry counts

    28 juillet 2017, par Sean McGovern
    mov: log and return early on non-positive stsd entry counts
    
    Based on an FFmpeg patch by Michael Niedermayer <michael@niedermayer.cc>
    
    • [DBH] libavformat/mov.c