git.videolan.org Git - ffmpeg.git/rss log
FFmpeg git repo
Les articles publiés sur le site
-
avformat/demux : Reindent after the previous commit
3 septembre, par Andreas Rheinhardt -
avformat/demux : Avoid always-true branch
3 septembre, par Andreas Rheinhardt -
avformat/avformat : Make AVFMT_FLAG_ID3V2_AUTO private
3 septembre, par Andreas Rheinhardtavformat/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>
-
avutil/version : bump minor after recent change
3 septembre, par Wu Jianhua -
avformat/aviobuf : Don't pretend to support avio_context_free(NULL)
3 septembre, par Andreas Rheinhardtavformat/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>