git.videolan.org Git - ffmpeg.git/rss log
FFmpeg git repo
Les articles publiés sur le site
-
avcodec/decode : Only use ff_progress_frame_get_buffer() with blank input
11 avril, par Andreas Rheinhardtavcodec/decode: Only use ff_progress_frame_get_buffer() with blank input All users (namely HEVC) that use ff_progress_frame_alloc() should just use ff_thread_get_buffer(). Using ff_progress_frame_get_buffer() is not a must; it is merely a convenience wrapper. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-
fftools/ffmpeg_filter : Move some declaration to new header file
11 avril, par softworkz -
fftools/textformat : Extract and generalize textformat api from ffprobe.c
11 avril, par softworkzfftools/textformat: Extract and generalize textformat api from ffprobe.c Signed-off-by: softworkz <softworkz@hotmail.com>
- [DH] fftools/textformat/avtextformat.c
- [DH] fftools/textformat/avtextformat.h
- [DH] fftools/textformat/avtextwriters.h
- [DH] fftools/textformat/tf_compact.c
- [DH] fftools/textformat/tf_default.c
- [DH] fftools/textformat/tf_flat.c
- [DH] fftools/textformat/tf_ini.c
- [DH] fftools/textformat/tf_json.c
- [DH] fftools/textformat/tf_xml.c
- [DH] fftools/textformat/tw_avio.c
- [DH] fftools/textformat/tw_buffer.c
- [DH] fftools/textformat/tw_stdout.c
-
avformat/fifo : Check for keyframe video type before stop dropping
10 avril, par Arthur Grilloavformat/fifo: Check for keyframe video type before stop dropping The current behavior when using restart_with_keyframe is that it will recover if it also encounters any audio packet, as they are flagged as a keyframe. The expectation is that packets are dropped until the next _video_ keyframe. To fix that, check if exists a video stream, if it exists check the packet stream codec type, only letting it recover when it is a video one. If there is no video stream, resume to the original behavior, not checking the codec type. Fixes ticket: #11467 Signed-off-by: Arthur Grillo <arthurgrillo@riseup.net> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-
avcodec/asvenc : Use tighter MAX_MB_SIZE constant
10 avril, par Andreas Rheinhardt