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

  • avcodec/pthread* : Mark init, free, flush functions as av_cold

    9 mars, par Andreas Rheinhardt
    avcodec/pthread*: Mark init, free, flush functions as av_cold
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
    
    • [DH] libavcodec/pthread.c
    • [DH] libavcodec/pthread_frame.c
    • [DH] libavcodec/pthread_slice.c
  • avcodec/sbcdec_data : Merge data into header

    9 mars, par Andreas Rheinhardt
    avcodec/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>
    
    • [DH] libavcodec/Makefile
    • [DH] libavcodec/sbcdec.c
    • [DH] libavcodec/sbcdec_data.c
    • [DH] libavcodec/sbcdec_data.h
  • all : Fix doxy comments wrongly designated as trailing ///<

    9 mars, par Andreas Rheinhardt
    all: 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
    avutil/vulkan: Remove unused ff_vk_create_avbuf()
    
    Unused since aea4d4b423c62aecf326ef3ae1578710faa3eca6.
    
    Reviewed-by: Lynne <dev@lynne.ee>
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
    
    • [DH] libavutil/vulkan.c
    • [DH] libavutil/vulkan.h
  • avcodec/put_bits : Add and use put_bits63()

    8 mars, par Andreas Rheinhardt
    avcodec/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>
    
    • [DH] libavcodec/dovi_rpuenc.c
    • [DH] libavcodec/put_bits.h
    • [DH] libavcodec/put_golomb.h
    • [DH] libavcodec/vc2enc.c
    • [DH] libavformat/iamf_parse.c
    • [DH] libavformat/iamf_writer.c