git.videolan.org Git - ffmpeg.git/rss log
FFmpeg git repo
Les articles publiés sur le site
-
fftools/resources : add missing extensions to .gitignore
16 mai, par Timo Rothenpieler -
ffbuild : correctly silence and tag new css/html steps
16 mai, par Timo Rothenpieler -
avcodec/mpeg12dec : Remove redundant save_width/height
16 mai, par Andreas Rheinhardtavcodec/mpeg12dec: Remove redundant save_width/height These have been added in 29644cb504eee88bd40f95abaa392047946c6066 in 2007 at a time when the MPEG-1/2 parser just set the AVCodecContext's dimensions when encountering a sequence header, so that the checks for the coded dimensions didn't trigger. Yet this is no more and so we can simply remove these redundant checks. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-
build : remove unused SLIBOBJS variable
16 mai, par Ramiro Pollabuild: remove unused SLIBOBJS variable The SLIBOBJS variable was introduced in 56572787ae2 but is no longer used. Another variable, SHLIBOBJS, was introduced after SLIBOBJS, in 20b0d24c2f7. The functionality from SLIBOBJS was effectively migrated to SHLIBOBJS in b77fff47d0d. No code has used SLIBOBJS since. This commit removes all remaining references to SLIBOBJS from the build system.
-
avcodec/mpeg12dec : Set save_chroma_format also for VCR2
16 mai, par Andreas Rheinhardtavcodec/mpeg12dec: Set save_chroma_format also for VCR2 Otherwise the MpegEncContext would be unnecessarily reinitialized once (this does not affect the output for an intra-only variant like VCR2) in mpeg_decode_postinit(). Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>