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/flvdec : Put FLVMetaVideoColor inside FLVContext directly

    11 mars, par Zhao Zhili
    avformat/flvdec: Put FLVMetaVideoColor inside FLVContext directly
    
    1. Rename metaVideoColor to meta_color_info
    2. Allocated FLVMetaVideoColor together with FLVContext
    3. Improve the use of meta_color_info_flag. Do a sequence of strcmp
    only if meta_color_info_flag is FLV_COLOR_INFO_FLAG_PARSING.
    4. Check return value of amf_parse_object().
    
    Signed-off-by: Zhao Zhili <zhilizhao@tencent.com>
    Reviewed-by: Steven Liu <lingjiujianke@gmail.com>
    
    • [DH] libavformat/flvdec.c
  • avformat/flvdec : Fix use sizeof(AVMasteringDisplayMetadata)

    11 mars, par Zhao Zhili
    avformat/flvdec: Fix use sizeof(AVMasteringDisplayMetadata)
    
    sizeof AVMasteringDisplayMetadata isn't part of ABI.
    
    Signed-off-by: Zhao Zhili <zhilizhao@tencent.com>
    Reviewed-by: Steven Liu <lingjiujianke@gmail.com>
    Reviewed-by: James Almer <jamrial@gmail.com>
    
    • [DH] libavformat/flvdec.c
  • vulkan : add support for AV_PIX_FMT_GBRAP32

    10 mars, par Lynne
    vulkan: add support for AV_PIX_FMT_GBRAP32
    
    • [DH] libavutil/hwcontext_vulkan.c
    • [DH] libavutil/vulkan.c
  • avcodec/codec_internal : Add inlined version of av_codec_is_(de|en)coder

    10 mars, par Andreas Rheinhardt
    avcodec/codec_internal: Add inlined version of av_codec_is_(de|en)coder
    
    These functions check whether the AVCodec* is NULL, but this
    has already been checked at a lot of places in our codebase,
    so that it boils down to checking the is_decoder flag.
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
    
    • [DH] libavcodec/allcodecs.c
    • [DH] libavcodec/avcodec.c
    • [DH] libavcodec/codec_internal.h
    • [DH] libavcodec/decode.c
    • [DH] libavcodec/options.c
    • [DH] libavcodec/pthread_slice.c
  • avcodec/codec_internal : Add dedicated is_decoder flag to FFCodec

    10 mars, par Andreas Rheinhardt
    avcodec/codec_internal: Add dedicated is_decoder flag to FFCodec
    
    Allows to simplify av_codec_is_decoder() and av_codec_is_encoder().
    
    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
    
    • [DH] libavcodec/codec_internal.h
    • [DH] libavcodec/utils.c