[FFmpeg-cvslog] avcodec/mjpegenc: Remove ineffective pred option

2022-05-24 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Thu Feb 17 10:07:24 2022 +0100| [8d788c567a1338e5b1e322f5ef8db55bc326d41a] | committer: Andreas Rheinhardt avcodec/mjpegenc: Remove ineffective pred option Never did anything, so it is removed immediately. Signed-off-by: Andreas Rheinhardt >

[FFmpeg-cvslog] avcodec/mpegvideoenc: Remove ineffective options

2022-05-24 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Thu Feb 17 09:02:27 2022 +0100| [d587b1c32388fe60d7469424172e15b57bc5b4bd] | committer: Andreas Rheinhardt avcodec/mpegvideoenc: Remove ineffective options This commit removes the ineffective FF_MPV_DEPRECATED_ options, namely mpeg_quant (this is

[FFmpeg-cvslog] avcodec/mpegvideoenc: Remove ineffective [pb]bias options

2022-05-24 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Mon Feb 7 12:14:33 2022 +0100| [3fba5d4f3c6b50a3f52de4cae3cf62fb93e30b0e] | committer: Andreas Rheinhardt avcodec/mpegvideoenc: Remove ineffective [pb]bias options The user-provided value is overwritten in ff_mpv_encode_init() without having

[FFmpeg-cvslog] avcodec/mjpegenc: Remove pointless motion-estimation options

2022-05-24 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Mon Feb 7 14:50:34 2022 +0100| [de640d2b5327645b250ef913b7e12d56a91828ed] | committer: Andreas Rheinhardt avcodec/mjpegenc: Remove pointless motion-estimation options (M)JPEG does not use motion estimation/motion vectors at all. These options

[FFmpeg-cvslog] avcodec/pthread_frame: Don't update the first thread ctx before freeing

2022-05-24 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Wed May 18 22:50:38 2022 +0200| [49838705a453bf6f65de8b4ca40ffe2d36d4f6e9] | committer: Andreas Rheinhardt avcodec/pthread_frame: Don't update the first thread ctx before freeing Currently, ff_frame_thread_free() uses the last worker thread to

[FFmpeg-cvslog] ffbuild/common: Fix CPPFLAGS applied for compiling C++ files

2022-05-24 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Fri May 13 00:16:30 2022 +0200| [a78173374a897e659b16a53b0a04a7ed550a0e32] | committer: Andreas Rheinhardt ffbuild/common: Fix CPPFLAGS applied for compiling C++ files Currently, $(CPPFLAGS) and $(CFLAGS) are prepended to CXXFLAGS (the flags for

[FFmpeg-cvslog] fftools/ffmpeg: merge variable declaration and initialization

2022-05-24 Thread Anton Khirnov
ffmpeg | branch: master | Anton Khirnov | Thu Dec 16 11:59:21 2021 +0100| [0c914ebd533826b20212e10896c175ff379470cf] | committer: Anton Khirnov fftools/ffmpeg: merge variable declaration and initialization >

[FFmpeg-cvslog] fftools/ffmpeg: move processing AV_PKT_DATA_QUALITY_STATS to do_video_stats()

2022-05-24 Thread Anton Khirnov
ffmpeg | branch: master | Anton Khirnov | Thu Dec 16 19:10:12 2021 +0100| [b033913d1c5998a29dfd13e9906dd707ff6eff12] | committer: Anton Khirnov fftools/ffmpeg: move processing AV_PKT_DATA_QUALITY_STATS to do_video_stats() This is a more appropriate place for this code, since the values we

[FFmpeg-cvslog] fftools/ffmpeg: stop using av_stream_get_end_pts() in do_video_stats()

2022-05-24 Thread Anton Khirnov
ffmpeg | branch: master | Anton Khirnov | Thu Dec 16 11:16:11 2021 +0100| [9acce2afcfb6b52f2c2a1d5e42949bfd591f6d3a] | committer: Anton Khirnov fftools/ffmpeg: stop using av_stream_get_end_pts() in do_video_stats() It retrieves libavformat's internal dts value (contrary to the function's

[FFmpeg-cvslog] fftools/ffmpeg: stop using AVStream.nb_frames in do_video_stats()

2022-05-24 Thread Anton Khirnov
ffmpeg | branch: master | Anton Khirnov | Thu Dec 16 11:10:58 2021 +0100| [3d4d3553752b34ff97ccc6e16e74b82524b0f404] | committer: Anton Khirnov fftools/ffmpeg: stop using AVStream.nb_frames in do_video_stats() Its use for muxing is not documented, in practice it is incremented per each packet

[FFmpeg-cvslog] fftools/ffmpeg: move do_video_stats() to avoid a forward declaration

2022-05-24 Thread Anton Khirnov
ffmpeg | branch: master | Anton Khirnov | Wed May 11 09:53:09 2022 +0200| [19d1e1fb065acc66b5cbfc664be67202a0b9c400] | committer: Anton Khirnov fftools/ffmpeg: move do_video_stats() to avoid a forward declaration >

[FFmpeg-cvslog] fftools/ffmpeg: drop a useless check and reduce indentation

2022-05-24 Thread Anton Khirnov
ffmpeg | branch: master | Anton Khirnov | Thu Dec 16 10:31:35 2021 +0100| [1753fbd095af87531edfd6be4fac59732c35f745] | committer: Anton Khirnov fftools/ffmpeg: drop a useless check and reduce indentation do_video_stats() is only ever called for video. >

[FFmpeg-cvslog] fftools/ffmpeg: reindent after previous commit

2022-05-24 Thread Anton Khirnov
ffmpeg | branch: master | Anton Khirnov | Wed Mar 30 17:06:25 2022 +0200| [9f4437a4ebd149eccca1a0c3d3ab9523bdab4e1c] | committer: Anton Khirnov fftools/ffmpeg: reindent after previous commit > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9f4437a4ebd149eccca1a0c3d3ab9523bdab4e1c

[FFmpeg-cvslog] fftools/ffmpeg: reuse the encoding code for flushing encoders

2022-05-24 Thread Anton Khirnov
ffmpeg | branch: master | Anton Khirnov | Wed Mar 30 17:05:48 2022 +0200| [2ecb333fe415b4b54d73b74e2009027d1883fa62] | committer: Anton Khirnov fftools/ffmpeg: reuse the encoding code for flushing encoders >

[FFmpeg-cvslog] fftools/ffmpeg: share the code encoding a single frame between video and audio

2022-05-24 Thread Anton Khirnov
ffmpeg | branch: master | Anton Khirnov | Wed Mar 30 13:10:34 2022 +0200| [a11ab647304307d0340fd052e04cf638b6bef309] | committer: Anton Khirnov fftools/ffmpeg: share the code encoding a single frame between video and audio Call do_video_stats() for every video packet produced by the encoder,

[FFmpeg-cvslog] lavfi/vf_v360: implement output mask for barrelsplit

2022-05-24 Thread Anton Khirnov
ffmpeg | branch: master | Anton Khirnov | Thu May 19 15:36:44 2022 +0200| [fa26e17747bbc292d20da2ba7cb0f14d049c640c] | committer: Anton Khirnov lavfi/vf_v360: implement output mask for barrelsplit The top/bottom of the barrel are each coded as two semicircles inside a square block in the

[FFmpeg-cvslog] lavfi/vf_v360: fix barrelsplit transform with padding

2022-05-24 Thread Anton Khirnov
ffmpeg | branch: master | Anton Khirnov | Thu May 19 15:36:44 2022 +0200| [83a5ef51131ab1a9b22bf886f826ae899bc5ff66] | committer: Anton Khirnov lavfi/vf_v360: fix barrelsplit transform with padding Make it match Facebook's transform360 (https://github.com/facebook/transform360) Fixes one

[FFmpeg-cvslog] lavfi/vf_v360: factorize vector computation for barrelsplit

2022-05-24 Thread Anton Khirnov
ffmpeg | branch: master | Anton Khirnov | Wed May 18 11:39:02 2022 +0200| [82784ddf33e3656594b6dc38abd0023a1584cc8e] | committer: Anton Khirnov lavfi/vf_v360: factorize vector computation for barrelsplit >

[FFmpeg-cvslog] lavfi/vf_v360: drop nonsense inline specifier

2022-05-24 Thread Anton Khirnov
ffmpeg | branch: master | Anton Khirnov | Tue May 17 11:20:46 2022 +0200| [58bb83c7edfd0e1e160cb836a2cc5f2ff3500cce] | committer: Anton Khirnov lavfi/vf_v360: drop nonsense inline specifier This function is always called indirectly, it cannot be inlined. >

[FFmpeg-cvslog] tests/fate/vcodec: add tests for ffv1 2pass mode

2022-05-24 Thread Anton Khirnov
ffmpeg | branch: master | Anton Khirnov | Fri May 20 11:33:03 2022 +0200| [60f948dd55641419ab6d92ecd287cc65d52f0d8e] | committer: Anton Khirnov tests/fate/vcodec: add tests for ffv1 2pass mode > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=60f948dd55641419ab6d92ecd287cc65d52f0d8e

[FFmpeg-cvslog] fftools/ffmpeg: fix 2pass log file names

2022-05-24 Thread Anton Khirnov
ffmpeg | branch: master | Anton Khirnov | Fri May 20 11:06:20 2022 +0200| [e53940186a08a6ea2dd06857965487ff07eb13d8] | committer: Anton Khirnov fftools/ffmpeg: fix 2pass log file names Use the global stream index rather than an unrelated variable in the filename. Broken in 6d5d9246042. >

[FFmpeg-cvslog] tests/fate-run: give consistent names to enc_dec() arguments

2022-05-24 Thread Anton Khirnov
ffmpeg | branch: master | Anton Khirnov | Fri May 20 10:37:26 2022 +0200| [83560e48f6d184e3ca3a904b77e92c0c7316aee8] | committer: Anton Khirnov tests/fate-run: give consistent names to enc_dec() arguments enc_dec() performs two ffmpeg runs - the first one encoding a source file into a

[FFmpeg-cvslog] tests/fate/vcodec: drop unnecessary options

2022-05-24 Thread Anton Khirnov
ffmpeg | branch: master | Anton Khirnov | Thu May 12 09:36:05 2022 +0200| [aa7d38f27caf9545118ad347e09876cc08dfd4e0] | committer: Anton Khirnov tests/fate/vcodec: drop unnecessary options jpeg2000 will be chosen by default, there is no reason to prescribe it explicitly. No other test does so.

[FFmpeg-cvslog] avcodec/libuavs3d: use output_reorder_delay as has_b_frames

2022-05-24 Thread Zhao Zhili
ffmpeg | branch: master | Zhao Zhili | Fri May 13 17:40:48 2022 +0800| [8379e454e0125f2a89328636a95e3183a670c300] | committer: Zhao Zhili avcodec/libuavs3d: use output_reorder_delay as has_b_frames has_b_frames is more than a bool, it's the size of the frame reordering buffer in the decoder.

[FFmpeg-cvslog] avcodec/avs3_parser: set has_b_frames properly

2022-05-24 Thread Zhao Zhili
ffmpeg | branch: master | Zhao Zhili | Fri May 13 18:12:25 2022 +0800| [99d1279216e9ebd0491a756c12b684a79c4a8820] | committer: Zhao Zhili avcodec/avs3_parser: set has_b_frames properly has_b_frames should be output_reorder_delay field in AVS3 sequence header and larger than 1. The parser

[FFmpeg-cvslog] avcodec/libdavs2: export has_b_frames info

2022-05-24 Thread Zhao Zhili
ffmpeg | branch: master | Zhao Zhili | Fri May 13 17:40:49 2022 +0800| [5a7a33f6f24e08470bfce2dee020da7b2f6a9b50] | committer: Zhao Zhili avcodec/libdavs2: export has_b_frames info More precisely, we should use picture_reorder_delay, but it's unavailable yet. Signed-off-by: Zhao Zhili >

[FFmpeg-cvslog] avfilter: Add blockdetect filter

2022-05-24 Thread Thilo Borgmann
ffmpeg | branch: master | Thilo Borgmann | Tue May 24 11:20:14 2022 +0200| [9cb9da62a3591f916cb9e673ae29f924e5c7659f] | committer: Thilo Borgmann avfilter: Add blockdetect filter > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9cb9da62a3591f916cb9e673ae29f924e5c7659f ---

[FFmpeg-cvslog] avcodec/dvdsubdec: use avpriv_fopen_utf8() instead of plain fopen()

2022-05-24 Thread softworkz
ffmpeg | branch: master | softworkz | Mon May 23 11:26:10 2022 +| [6b32ad59c8fe16fc792ca5a468b95ce5232ff6d1] | committer: Martin Storsjö avcodec/dvdsubdec: use avpriv_fopen_utf8() instead of plain fopen() Unify file access operations by replacing usages of direct calls to posix fopen() to

[FFmpeg-cvslog] avfilter: use avpriv_fopen_utf8() instead of plain fopen()

2022-05-24 Thread softworkz
ffmpeg | branch: master | softworkz | Mon May 23 11:26:09 2022 +| [f579a1d08b269b6dfc89596af20582c01950adb2] | committer: Martin Storsjö avfilter: use avpriv_fopen_utf8() instead of plain fopen() Unify file access operations by replacing usages of direct calls to posix fopen() to prepare

[FFmpeg-cvslog] avfilter/af_afftfilt: add threads support

2022-05-24 Thread Paul B Mahol
ffmpeg | branch: master | Paul B Mahol | Tue May 24 08:52:25 2022 +0200| [d2ef44fbb16f3c5675b0c9aa0f281618f7a2a921] | committer: Paul B Mahol avfilter/af_afftfilt: add threads support > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d2ef44fbb16f3c5675b0c9aa0f281618f7a2a921 ---