git.videolan.org Git - ffmpeg.git/rss log
FFmpeg git repo
Les articles publiés sur le site
-
avcodec/pthread* : Mark init, free, flush functions as av_cold
9 mars, par Andreas Rheinhardt -
avcodec/sbcdec_data : Merge data into header
9 mars, par Andreas Rheinhardtavcodec/sbcdec_data: Merge data into header sbcdec_data.h is only included by sbcdec.c, so this won't cause the data to be included multiple times in the binary. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-
all : Fix doxy comments wrongly designated as trailing ///<
9 mars, par Andreas Rheinhardtall: Fix doxy comments wrongly designated as trailing ///< The ///< or /**< form of doxygen comments are only to be used when the documentation follows the member and the comment block starts on the same line as the member. This commit fixes wrong uses of them; in particular, this fixes the comment for mb_height in H.264 SPS's structure which was wrongly added to mb_width. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
- [DH] fftools/cmdutils.h
- [DH] fftools/ffmpeg_demux.c
- [DH] fftools/ffmpeg_filter.c
- [DH] libavcodec/aacsbrdata.h
- [DH] libavcodec/av1dec.c
- [DH] libavcodec/error_resilience.h
- [DH] libavcodec/h264_ps.h
- [DH] libavcodec/h264dec.h
- [DH] libavcodec/hevc/hevcdec.h
- [DH] libavcodec/hevc/ps.h
- [DH] libavcodec/mpegvideo.h
- [DH] libavcodec/wmavoice.c
- [DH] libavfilter/avfilter_internal.h
- [DH] libavformat/rdt.c
- [DH] libavutil/channel_layout.h
-
avutil/vulkan : Remove unused ff_vk_create_avbuf()
9 mars, par Andreas Rheinhardt -
avcodec/put_bits : Add and use put_bits63()
8 mars, par Andreas Rheinhardtavcodec/put_bits: Add and use put_bits63() When using a 64bit PutBitContext (i.e. on x64), put_bits_no_assert() can naturally write up to 63 bits. So one can avoid treating the cases <32bits, 32 bits and <63 bits differently. As it turns out, no user actually wants to write 64 bit at once (maybe except testprograms). Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>