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

  • avformat/matroska : fix MatroskaVideoFieldOrder enum values

    13 octobre 2016, par James Almer
    avformat/matroska: fix MatroskaVideoFieldOrder enum values
    
    The spec says
    
    9: Interlaced with bottom field displayed first and top field stored first
    14: Interlaced with top field displayed first and bottom field stored first
    
    And avcodec.h states
    
    AV_FIELD_TB,          //< Top coded first, bottom displayed first
    AV_FIELD_BT,          //< Bottom coded first, top displayed first
    
    Signed-off-by: James Almer <jamrial@gmail.com>
    Signed-off-by: Anton Khirnov <anton@khirnov.net>
    
    • [DBH] libavformat/matroska.h
    • [DBH] libavformat/version.h
  • rtmpproto : Send chunk size on the network channel

    13 octobre 2016, par Martin Storsjö
    rtmpproto: Send chunk size on the network channel
    
    This makes sure that e.g. Adobe FME actually reacts to it. As long
    as the value we've been sending is the default one (128), the bug
    hasn't been noticed.
    
    Signed-off-by: Martin Storsjö <martin@martin.st>
    
    • [DBH] libavformat/rtmpproto.c
  • rtmpproto : Lengthen the filename buffer when receiving streams

    13 octobre 2016, par Martin Storsjö
    rtmpproto: Lengthen the filename buffer when receiving streams
    
    Some applications such as Adobe FME append lots of parameters
    here, making it easily overflow the current limit.
    
    Signed-off-by: Martin Storsjö <martin@martin.st>
    
    • [DBH] libavformat/rtmpproto.c
  • rtmpproto : Check the return from ff_amf_read_string

    13 octobre 2016, par Martin Storsjö
    rtmpproto: Check the return from ff_amf_read_string
    
    If this failed, we used to continue with an uninitialized
    filename buffer.
    
    CC: libav-stable@libav.org
    Signed-off-by: Martin Storsjö <martin@martin.st>
    
    • [DBH] libavformat/rtmpproto.c
  • file protocol : handle the file : protocol string in file_check

    13 octobre 2016, par Anton Khirnov
    file protocol: handle the file: protocol string in file_check
    
    This is consistent with what file_open() does.
    
    CC: libav-stable@libav.org
    
    • [DBH] libavformat/file.c