git.videolan.org Git - ffmpeg.git/rss log
FFmpeg git repo
Les articles publiés sur le site
-
avcodec/x86/constants : add pd_64
26 avril, par James Almer -
avcodec/bsf/h264_mp4toannexb : Fix mixed bitstream format
24 avril, par Zhao Zhiliavcodec/bsf/h264_mp4toannexb: Fix mixed bitstream format This bsf converts AV_PKT_DATA_NEW_EXTRADATA side data in avcc format to in-band annexb format. However, the side data wasn't been removed and copied from input packet to output packet. So the output packet has mixed bitstream format. We don't support mixed bitstream format. For example, h264_metadata report error in the following case: ffmpeg -i foo.flv \ -bsf:v "h264_mp4toannexb,h264_metadata" \ -c copy -f null This patch removed NEW_EXTRADATA side data after process. This patch also add a check so only NEW_EXTRADATA in avcc format is processed. NEW_EXTRADATA in annexb format is copied to output as is. Reported-by: jiangjie <jiangjie618@gmail.com> Signed-off-by: Zhao Zhili <zhilizhao@tencent.com>
-
fftools/avtextformat : Re-use BPrint in loop
24 avril, par softworkzfftools/avtextformat: Re-use BPrint in loop Instead of initializing a new BPrint in case of UTF decode error, re-use the same BPrint struct and just clear it for each iteration. Reviewed-by: Stefano Sabatini <stefasab@gmail.com> Signed-off-by: softworkz <softworkz@hotmail.com>
-
fftools/textformat : Introduce AVTextFormatOptions for avtext_context_open()
23 avril, par softworkzfftools/textformat: Introduce AVTextFormatOptions for avtext_context_open() This allows future addition of options without changes to the signature of avtext_context_open(). Reviewed-by: Stefano Sabatini <stefasab@gmail.com> Signed-off-by: softworkz <softworkz@hotmail.com>
-
lavf : APV muxer
23 avril, par Mark Thompson