git.videolan.org Git - ffmpeg.git/rss log

FFmpeg git repo

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

Les articles publiés sur le site

  • avformat/demux : Reindent after the previous commit

    3 septembre, par Andreas Rheinhardt
    avformat/demux: Reindent after the previous commit
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
    
    • [DH] libavformat/demux.c
  • avformat/demux : Avoid always-true branch

    3 septembre, par Andreas Rheinhardt
    avformat/demux: Avoid always-true branch
    
    Since 9d037c54f209958d47ac376d2a9561608f98dfae id3v2_extra_meta
    can only be != NULL if the input format wants ID3v2 tags to be
    read generically.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
    
    • [DH] libavformat/demux.c
  • avformat/avformat : Make AVFMT_FLAG_ID3V2_AUTO private

    3 septembre, par Andreas Rheinhardt
    avformat/avformat: Make AVFMT_FLAG_ID3V2_AUTO private
    
    This flag governs whether avformat_open_input() reads
    ID3v2 tags generically; some demuxers without this flag
    read these tags themselves in a non-generic way,
    e.g. oma. This makes this flag an implementation detail
    that should not be exposed to the user, i.e. an internal flag.
    
    Given that 9d037c54f209958d47ac376d2a9561608f98dfae
    did not bump version and added no APIchanges entry
    I deemded it inappropriate to bump version or add
    an APIchanges entry for the removal of AVFMT_FLAG_ID3V2_AUTO.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
    
    • [DH] libavformat/aacdec.c
    • [DH] libavformat/avformat.h
    • [DH] libavformat/demux.c
    • [DH] libavformat/demux.h
    • [DH] libavformat/mp3dec.c
    • [DH] libavformat/tta.c
    • [DH] libavformat/wavdec.c
  • avutil/version : bump minor after recent change

    3 septembre, par Wu Jianhua
    avutil/version: bump minor after recent change
    
    See c2ce387385996c4e6824116931930b08cfcaecc9
    
    Signed-off-by: Wu Jianhua <toqsxw@outlook.com>
    
    • [DH] libavutil/version.h
  • avformat/aviobuf : Don't pretend to support avio_context_free(NULL)

    3 septembre, par Andreas Rheinhardt
    avformat/aviobuf: Don't pretend to support avio_context_free(NULL)
    
    It makes no sense to ever call it that way given that
    avio_context_free() accepts a pointer to a pointer to an AVIOContext.
    Other double-pointer-free functions like av_freep() also do it
    that way (and therefore avio_context_free(NULL) still crashes
    even with 870cfed2317e311a71bc14773332486a162f059c).
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
    
    • [DH] libavformat/aviobuf.c