[FFmpeg-cvslog] fftools/cmdutils: Fix undefined 1 << 31

2022-01-10 Thread Andreas Rheinhardt
ffmpeg | branch: release/5.0 | Andreas Rheinhardt | Thu Nov 18 10:07:36 2021 +0100| [58922dc565effbd681b021773f4e1717671fc56c] | committer: Andreas Rheinhardt fftools/cmdutils: Fix undefined 1 << 31 Signed-off-by: Andreas Rheinhardt (cherry picked from commit

[FFmpeg-cvslog] fftools/cmdutils: Fix undefined 1 << 31

2022-01-10 Thread Andreas Rheinhardt
ffmpeg | branch: master | Andreas Rheinhardt | Thu Nov 18 10:07:36 2021 +0100| [bbf00916e45ac8754f208c0584834cb330a89da2] | committer: Andreas Rheinhardt fftools/cmdutils: Fix undefined 1 << 31 Signed-off-by: Andreas Rheinhardt >

[FFmpeg-cvslog] avcodec/libdav1d: explicitly set Dav1dSettings.apply_grain

2022-01-10 Thread James Almer
ffmpeg | branch: release/5.0 | James Almer | Mon Jan 10 12:18:58 2022 -0300| [fa1328babf09006451c0c63079f2b66a58956ec3] | committer: James Almer avcodec/libdav1d: explicitly set Dav1dSettings.apply_grain Don't depend on its default value being 1, as that could change anytime. Signed-off-by:

[FFmpeg-cvslog] avcodec/libdav1d: explicitly set Dav1dSettings.apply_grain

2022-01-10 Thread James Almer
ffmpeg | branch: master | James Almer | Mon Jan 10 12:18:58 2022 -0300| [6c4074e4234edacfb3f37184fd68771df3cb2b7f] | committer: James Almer avcodec/libdav1d: explicitly set Dav1dSettings.apply_grain Don't depend on its default value being 1, as that could change anytime. Signed-off-by: James

[FFmpeg-cvslog] lavu/fifo: do not copy the whole fifo when reallocating

2022-01-10 Thread Anton Khirnov
ffmpeg | branch: master | Anton Khirnov | Thu Dec 30 15:06:15 2021 +0100| [549ccea54e61e2e35b01a288466476504df03fd8] | committer: Anton Khirnov lavu/fifo: do not copy the whole fifo when reallocating av_realloc() the buffer and only move the part of the ring buffer that needs it. Also avoids

[FFmpeg-cvslog] lavu/fifo: return errors on trying to read/write too much

2022-01-10 Thread Anton Khirnov
ffmpeg | branch: master | Anton Khirnov | Fri Dec 31 11:41:11 2021 +0100| [f480c43dfa797c12154f9d2c1fb6365c0ab953a6] | committer: Anton Khirnov lavu/fifo: return errors on trying to read/write too much Trying to write too much will currently overwrite previous data. Trying to read too much

[FFmpeg-cvslog] lavu/fifo: simplify av_fifo_alloc()

2022-01-10 Thread Anton Khirnov
ffmpeg | branch: master | Anton Khirnov | Thu Dec 30 13:44:06 2021 +0100| [5010c481d1a4bbd52655c43f5d7627d4c0a90f72] | committer: Anton Khirnov lavu/fifo: simplify av_fifo_alloc() Turn it into a wrapper around av_fifo_alloc_array(). >

[FFmpeg-cvslog] lavu/fifo: deprecate av_fifo_peek2()

2022-01-10 Thread Anton Khirnov
ffmpeg | branch: master | Anton Khirnov | Thu Dec 30 13:02:38 2021 +0100| [63b013aa687662440c85ecff8fdc087123025bf6] | committer: Anton Khirnov lavu/fifo: deprecate av_fifo_peek2() It returns a pointer inside the fifo's buffer, which cannot be safely used without accessing AVFifoBuffer

[FFmpeg-cvslog] lavu/fifo: drop useless comments

2022-01-10 Thread Anton Khirnov
ffmpeg | branch: master | Anton Khirnov | Fri Dec 31 11:29:32 2021 +0100| [53f513c60b460f3597c831e41e455c40a2862920] | committer: Anton Khirnov lavu/fifo: drop useless comments This object was never intended to be thread-safe, so these carry no useful information. >

[FFmpeg-cvslog] ffmpeg: remove a redundant assignment of interrupt_callback

2022-01-10 Thread Anton Khirnov
ffmpeg | branch: master | Anton Khirnov | Fri Dec 10 14:19:52 2021 +0100| [1b24a1ea14c028e4f98ea19098aec41334e9a7f0] | committer: Anton Khirnov ffmpeg: remove a redundant assignment of interrupt_callback It is already set in open_output_file(). >

[FFmpeg-cvslog] lavc/flac_parser: use a custom FIFO implementation

2022-01-10 Thread Anton Khirnov
ffmpeg | branch: master | Anton Khirnov | Wed Dec 29 17:02:46 2021 +0100| [55ccbfd790410560a112a067cd205adf7a7fecd0] | committer: Anton Khirnov lavc/flac_parser: use a custom FIFO implementation FLAC parser currently uses AVFifoBuffer in a highly non-trivial manner, modifying its "internals"

[FFmpeg-cvslog] lavf/dvenc: replace av_fifo_peek2() with av_fifo_generic_peek_at()

2022-01-10 Thread Anton Khirnov
ffmpeg | branch: master | Anton Khirnov | Thu Dec 30 12:57:48 2021 +0100| [d47dc0b0dfcc6010a57d4f2510c90b800ed40efc] | committer: Anton Khirnov lavf/dvenc: replace av_fifo_peek2() with av_fifo_generic_peek_at() This is the only remaining caller of av_fifo_peek2(), which will be deprecated. >

[FFmpeg-cvslog] avcodec/nvenc: zero-initialize NV_ENC_REGISTER_RESOURCE struct

2022-01-10 Thread Timo Rothenpieler
ffmpeg | branch: release/4.4 | Timo Rothenpieler | Mon Jan 10 15:41:50 2022 +0100| [458c00ea0b15cb2a105bd33967e432baa1db740a] | committer: Timo Rothenpieler avcodec/nvenc: zero-initialize NV_ENC_REGISTER_RESOURCE struct >

[FFmpeg-cvslog] avcodec/nvenc: zero-initialize NV_ENC_REGISTER_RESOURCE struct

2022-01-10 Thread Timo Rothenpieler
ffmpeg | branch: release/5.0 | Timo Rothenpieler | Mon Jan 10 15:41:50 2022 +0100| [cd74c838fc5e751b636e0df41ad343d2d899bb0b] | committer: Timo Rothenpieler avcodec/nvenc: zero-initialize NV_ENC_REGISTER_RESOURCE struct >

[FFmpeg-cvslog] avcodec/nvenc: zero-initialize NV_ENC_REGISTER_RESOURCE struct

2022-01-10 Thread Timo Rothenpieler
ffmpeg | branch: master | Timo Rothenpieler | Mon Jan 10 15:41:50 2022 +0100| [0b13c34a654891c91b9931fe59537dc028922f32] | committer: Timo Rothenpieler avcodec/nvenc: zero-initialize NV_ENC_REGISTER_RESOURCE struct >

[FFmpeg-cvslog] avformat/movenc: fix duration in mdhd box

2022-01-10 Thread Zhao Zhili
ffmpeg | branch: release/5.0 | Zhao Zhili | Mon Jan 10 18:18:44 2022 +0800| [ce1558e66b0d10e00f7ebdfcfc9badb84301eaf3] | committer: Martin Storsjö avformat/movenc: fix duration in mdhd box mvhd and tkhd present the post-editlist duration, while mdhd should have the pre-editlist duration.

[FFmpeg-cvslog] avformat/movenc: fix duration in mdhd box

2022-01-10 Thread Zhao Zhili
ffmpeg | branch: master | Zhao Zhili | Mon Jan 10 18:18:44 2022 +0800| [f37e66b3937a914e16d89a9050f042ad89567245] | committer: Martin Storsjö avformat/movenc: fix duration in mdhd box mvhd and tkhd present the post-editlist duration, while mdhd should have the pre-editlist duration.

[FFmpeg-cvslog] lavfi/vf_libplacebo: fix side data stripping logic

2022-01-10 Thread Niklas Haas
ffmpeg | branch: master | Niklas Haas | Mon Jan 10 08:29:17 2022 +0100| [ecf09764dcfc4d90d2292d91f225bfd02211a17f] | committer: Lynne lavfi/vf_libplacebo: fix side data stripping logic This was accidentally comparing s->colorspace against out->colorspace, which is wrong - the intent was to

[FFmpeg-cvslog] lavfi/vf_libplacebo: fix side data stripping logic

2022-01-10 Thread Niklas Haas
ffmpeg | branch: release/5.0 | Niklas Haas | Mon Jan 10 08:29:17 2022 +0100| [fb840a79b978ff8c5b9c101bda3974f7ebcc5df1] | committer: Lynne lavfi/vf_libplacebo: fix side data stripping logic This was accidentally comparing s->colorspace against out->colorspace, which is wrong - the intent was