ffmpeg | branch: master | Marvin Scholz | Wed Apr 2
01:40:02 2025 +0200| [da38b2fcd2296a6b3474110d1dc6694d02300921] | committer:
Marvin Scholz
tools/sidxindex: use av_err2str
There is no need to explicitly specify the buffer, as it
is only ever passed to fprintf, so av_err2str can be used
ffmpeg | branch: master | Marvin Scholz | Tue Apr 1
03:00:58 2025 +0200| [cacc68f3b5f957c849319e575babb0862a78a83b] | committer:
Marvin Scholz
ffbuild: fix include path for uninstalled .pc files
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commi
ffmpeg | branch: master | Marvin Scholz | Mon Sep 9
02:47:18 2024 +0200| [0ea83e65aa0793ed6710edeb3922a7bd5bffb18d] | committer:
Marvin Scholz
avfilter/drawutils: narrow variable scopes
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0ea83e65aa0793ed6710edeb3922a7bd5bffb
ffmpeg | branch: master | Marvin Scholz | Wed Apr 2
01:26:33 2025 +0200| [d7d103c34c79abf0270f40e5a6a391d96da8751d] | committer:
Marvin Scholz
lavfi/vf_xpsnr: use av_err2str
There is no need to explicitly specify the buffer, as it
is only ever passed to av_log, so av_err2str can be used
ffmpeg | branch: master | Marvin Scholz | Wed Apr 2
01:37:34 2025 +0200| [a903d6dade3d3623efd2d03a63a00a17d5525631] | committer:
Marvin Scholz
tools/ismindex: use av_err2str
There is no need to explicitly specify the buffer, as it
is only ever passed to fprintf, so av_err2str can be used
ffmpeg | branch: master | Marvin Scholz | Wed Apr 2
01:43:12 2025 +0200| [d0bcf62597a4cca8e21c1b8e07f70194fa4036ba] | committer:
Marvin Scholz
tools/aviocat: use av_err2str
There is no need to explicitly specify the buffer, as it
is only ever passed to fprintf, so av_err2str can be used
ffmpeg | branch: master | Marvin Scholz | Wed Apr 2
01:23:57 2025 +0200| [cd96d2ed6a0b407c52ebaa06b5094254749354ca] | committer:
Marvin Scholz
avformat/crypto: use av_err2str
There is no need to explicitly specify the buffer, as it
is only ever passed to av_log, so av_err2str can be used
ffmpeg | branch: master | Marvin Scholz | Wed Apr 2
01:29:41 2025 +0200| [b781f1836e670cd7c48df27fc1b7c0ff7615c449] | committer:
Marvin Scholz
tests: lavfi/drawutils: use av_err2str
There is no need to explicitly specify the buffer, as it
is only ever passed to printf, so av_err2str can be
ffmpeg | branch: master | Marvin Scholz | Wed Apr 2
01:20:31 2025 +0200| [8129474b93a589e38aa4c2db05713738e9d92f68] | committer:
Marvin Scholz
avformat/dashdec: use av_err2str
There is no need to explicitly specify the buffer, as it
is only ever passed to av_log, so av_err2str can be used
ffmpeg | branch: master | Marvin Scholz | Thu Sep 26
01:41:15 2024 +0200| [163e5fd84df0c0246755acf53daffeaee97ad056] | committer:
Zhao Zhili
configure: fix passing Objective-C flags
Passing Objective-C flags from configure to the Makefiles was broken, as
configure incorrectly used the
ffmpeg | branch: master | Marvin Scholz | Thu Sep 26
01:43:44 2024 +0200| [81ca85a0872b456e02e770db2aa79c8de3de7f3b] | committer:
Zhao Zhili
configure: allow mixed declarations and code for Objective-C
Mixing declarations and code is quite common in Objective-C (as can be
seen by the number
ffmpeg | branch: master | Marvin Scholz | Sat May 18
19:00:50 2024 +0200| [9cdd3cbe9b522431c121473a9ecf1d861efbc4b6] | committer:
Marvin Scholz
doc/developer: add examples to clarify code style
Given the frequency that new developers, myself included, get the
code style wrong, it is useful to
ffmpeg | branch: master | Marvin Scholz | Sun Nov 24
21:49:00 2024 +0100| [83c1c622a52c11b66df6ce828f5649940a6fb9b3] | committer:
Marvin Scholz
MAINTAINERS: Add myself as Darwin maintainer
I do some development and usage of FFmpeg regularly on macOS and sent
some patches to fix issues
ffmpeg | branch: master | Marvin Scholz | Fri Sep 13
21:17:26 2024 +0200| [51a20517d26c8b31b516e41f8164dd70aefb4686] | committer:
Marvin Scholz
doc: add styles for good/bad code examples
Makes it easier to immediately see if the code examples given in the
style documentation are good or bad
ffmpeg | branch: master | Marvin Scholz | Sun Nov 24
22:21:34 2024 +0100| [6b9f4f36f740b77d83d7ea1bdf0369b99a3abd6d] | committer:
Marvin Scholz
swscale/internal: fix typo in loongarch specific code
Regression from 2d077f9acda4946b3455ded5778fb3fc7e85bba2
> http://git.videolan.org/gitweb.
ffmpeg | branch: master | Marvin Scholz | Sun Oct 13
02:39:13 2024 +0200| [ecb7232bac33ebba47e03663e7e5a3517a8e0a5c] | committer:
Marvin Scholz
avfilter: fix unused variable warning
The ctxi_dst variable is unused outside of the av_assert1,
causing an unused variable warning. The simplest
ffmpeg | branch: master | Marvin Scholz | Thu Oct 17
20:23:40 2024 +0200| [c98810ab47fa1cf339b16045e27fbe12b3a19951] | committer:
Lynne
avcodec/hw_base_encode: fix use after free on close
The way the linked list of images was freed caused a
use after free, by accessing pic->next after pic
ffmpeg | branch: master | Marvin Scholz | Mon Sep 9
16:37:26 2024 +0200| [7e1d72589eca162d65987a9f6004417656fb6077] | committer:
Marvin Scholz
avfilter/af_afftdn: use av_assert0 for unreachable assert
This is unreachable anyway so performance is not an issue here. Allows
guiding the compiler
ffmpeg | branch: master | Marvin Scholz | Wed Oct 9
02:12:39 2024 +0200| [f5e2914a89c2d1c38d3ac80ae43c0eda743892f3] | committer:
Lynne
libavutil/vulkan: fix flexible array struct allocation
The flexible array member struct can have padding added by
the compiler which was not taken into
ffmpeg | branch: release/7.1 | Marvin Scholz | Tue Oct 1
03:20:04 2024 +0200| [9b061291ad3c38944ab628be52e9338090d2f3a7] | committer:
James Almer
fftools: log unconnected filter output label
(cherry picked from commit f25c9cc213c7e3eb585d3339eb775b16921c4d98)
> http://git.videolan.
ffmpeg | branch: release/7.1 | Marvin Scholz | Tue Oct 1
02:57:11 2024 +0200| [e14a3a4b116122899dc8d251d6b890ae378f9802] | committer:
James Almer
fftools: do not access out of bounds filtergraph
The log message was logged for `filtergraphs[j]` which would cause a
heap buffer overflow in
ffmpeg | branch: master | Marvin Scholz | Tue Oct 1
03:20:04 2024 +0200| [f25c9cc213c7e3eb585d3339eb775b16921c4d98] | committer:
Marvin Scholz
fftools: log unconnected filter output label
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f25c9cc213c7e3eb585d3339eb775b16921c4
ffmpeg | branch: master | Marvin Scholz | Tue Oct 1
02:57:11 2024 +0200| [5beeb3a1f97d8f6d4076fe83aaf5e2e5871f945e] | committer:
Marvin Scholz
fftools: do not access out of bounds filtergraph
The log message was logged for `filtergraphs[j]` which would cause a
heap buffer overflow in certain
ffmpeg | branch: release/7.1 | Marvin Scholz | Thu Sep 12
04:58:38 2024 +0200| [ebd0ca9fee85891262979b2c9d320ff69abdc104] | committer:
Marton Balint
avdevice/decklink_dec: fix leaks on error
In case of errors in this function, the allocated context
was not properly freed in several cases
ffmpeg | branch: release/7.1 | Marvin Scholz | Thu Sep 12
04:52:43 2024 +0200| [963145483cd0234cd0fac1b51f2410b5274b5f2d] | committer:
Marton Balint
avdevice/decklink_dec: fix leak on error
In the early return when both draw_bars and signal_loss_action
options are used, the context allocated
ffmpeg | branch: master | Marvin Scholz | Thu Sep 12
04:52:43 2024 +0200| [7554346cb5cf6e8863da12f9d56e300b08d6cc23] | committer:
Marton Balint
avdevice/decklink_dec: fix leak on error
In the early return when both draw_bars and signal_loss_action
options are used, the context allocated
ffmpeg | branch: master | Marvin Scholz | Thu Sep 12
04:58:38 2024 +0200| [8e76c993013d6dd9382774d1716d8fe2421c42bd] | committer:
Marton Balint
avdevice/decklink_dec: fix leaks on error
In case of errors in this function, the allocated context
was not properly freed in several cases.
Signed
ffmpeg | branch: master | Marvin Scholz | Fri Jul 12
20:38:11 2024 +0200| [f43916e217e253f902d2dddaa1287f7822396748] | committer:
Marvin Scholz
ffbuild: add METALCC and METALLIB to BRIEF
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f43916e217e253f902d2dddaa1287f7822396
ffmpeg | branch: master | Marvin Scholz | Fri Jul 12
19:19:37 2024 +0200| [799503f4bb8318733aeaf2e707ad4df8e8e0da96] | committer:
Marvin Scholz
avfilter/vf_coreimage: simplify list_filters code
Use fast-enumeration and get rid of unnecessary intermediate variables.
> http://git.videolan.
ffmpeg | branch: master | Marvin Scholz | Fri Jul 12
19:30:32 2024 +0200| [10b3edbe24c403973b7910054f104eeef5909707] | committer:
Marvin Scholz
avfilter/vf_coreimage: silence AVFrame deprecation warnings
Deprecation warning need to be disabled here as we set deprecated
fields.
> h
ffmpeg | branch: master | Marvin Scholz | Fri Jul 12
19:36:57 2024 +0200| [8d674e604c4025c7cc2ece969486196d180817e3] | committer:
Marvin Scholz
avfilter/yadif_videotoolbox: remove unused variable
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commi
ffmpeg | branch: master | Marvin Scholz | Fri Jul 12
18:09:43 2024 +0200| [399bf3f0407998410e9a169b26d9d56292158810] | committer:
Marvin Scholz
avdevice/avfoundation: remove write-only variable
The block_buffer was only ever written to but then never used in the
following code, making it
ffmpeg | branch: master | Marvin Scholz | Fri Jul 12
18:21:21 2024 +0200| [7857ba97ac556ccd1f4357fe5284b8e8d1c75f35] | committer:
Marvin Scholz
lavfi/metal: simplify fallback
Instead of using a fallback variable, just do an early return.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git
ffmpeg | branch: master | Marvin Scholz | Sat Aug 31
23:12:13 2024 +0200| [9e1682761f9c2478722ac0204253d2abdba41aed] | committer:
Marvin Scholz
avcodec/cbs_h266: Fix copy paste mistake
The us macro expect the range_max here, which seems should be
MAX_UINT_BITS(hlen) here.
Fix CID1618757 Copy
ffmpeg | branch: master | Marvin Scholz | Thu Sep 19
20:01:05 2024 +0200| [720ae6b3f782c01b60844b829e09463e3d6433ec] | committer:
Haihao Xiang
avcodec/vaapi_encode_h265: fix missing slice_block_cols assignment
Instead of assigning to unit_opts.slice_block_cols, the slice_block_cols
value from
ffmpeg | branch: master | Marvin Scholz | Thu Sep 19
22:22:46 2024 +0200| [4858a8ee2fc0ebc2aeab5185939d4bf93930f2d8] | committer:
Marvin Scholz
configure: do not use interval regexp operators with awk
Some awk implementations like mawk (used on Ubuntu) do not support
these.
> h
ffmpeg | branch: master | Marvin Scholz | Wed Sep 11
21:32:12 2024 +0200| [ed633a1312141e7af0a31a506767127e78cd6558] | committer:
Marvin Scholz
MAINTAINERS: add myself as vf_xfade_vulkan maintainer
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commi
ffmpeg | branch: master | Marvin Scholz | Wed Sep 11
23:09:34 2024 +0200| [910bf33879ecdf654cdc6342564f7791e34a27bc] | committer:
Marvin Scholz
configure: fix symbol prefix detection
The symbol prefix check would incorrectly detect a bogus prefix in
circumstances where sanitizers instrument
ffmpeg | branch: master | Marvin Scholz | Thu Sep 12
23:41:33 2024 +0200| [7091da7129431ad7ede403799477086ed9a094a9] | committer:
Marvin Scholz
configure: correctly set sanitizer toolchain compilers
Previously only the C compiler was set, which would lead to
confusing situations where even
ffmpeg | branch: master | Marvin Scholz | Mon Sep 9
02:04:18 2024 +0200| [6229e4ac425b4566446edefb67d5c225eb397b58] | committer:
Marvin Scholz
avformat/mxfdec: narrow variable scopes
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=6229e4ac425b4566446edefb67d5c225eb397
ffmpeg | branch: master | Marvin Scholz | Mon Sep 9
01:55:56 2024 +0200| [f5107e79ceb02ee3648e9b8ef71eb0b3e4d355cc] | committer:
Marvin Scholz
avformat/mxfdec: fix variable shadowing
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f5107e79ceb02ee3648e9b8ef71eb0b3e4d35
ffmpeg | branch: master | Marvin Scholz | Sun Sep 8
22:50:45 2024 +0200| [0753d176649acf8ad352221fbfdbafd67e61fb0c] | committer:
Marvin Scholz
avcodec/libx264: fix variable shadowing
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0753d176649acf8ad352221fbfdbafd67e61f
ffmpeg | branch: master | Marvin Scholz | Sun Sep 8
22:27:44 2024 +0200| [dd002f1588eff035ba1a7903f5b0520859852234] | committer:
Marvin Scholz
fftools/ffmpeg_demux: narrow variable scope
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=dd002f1588eff035ba1a7903f5b0520859852
ffmpeg | branch: master | Marvin Scholz | Sun Sep 8
23:25:51 2024 +0200| [0f87ff0db41df2dde91f51da833316cf050a73e2] | committer:
Marvin Scholz
avcodec/g2meet: fix variable shadowing
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0f87ff0db41df2dde91f51da833316cf050a7
ffmpeg | branch: master | Marvin Scholz | Sun Sep 8
23:03:35 2024 +0200| [fd4f7d0d1418e014429bbd26115a55295550f6cb] | committer:
Marvin Scholz
avcodec/mjpegdec: fix variable shadowing
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=fd4f7d0d1418e014429bbd26115a55295550f
ffmpeg | branch: master | Marvin Scholz | Sun Sep 8
22:26:09 2024 +0200| [25f0fff9ec552b8e7752262673392175595b827b] | committer:
Marvin Scholz
fftools/ffmpeg_demux: fix variable shadowing
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=25f0fff9ec552b8e7752262673392175595b8
ffmpeg | branch: master | Marvin Scholz | Sun Sep 8
22:21:03 2024 +0200| [3ebc68d25de102434a7e64c5b4d8b9c69c5bf165] | committer:
Marvin Scholz
fftools/ffmpeg_mux_init: fix variable shadowing
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=3ebc68d25de102434a7e64c5b4d8b9c69c5bf
ffmpeg | branch: master | Marvin Scholz | Wed Sep 11
21:07:29 2024 +0200| [c59a073abe9e13fc22035048e3f7c47527503222] | committer:
Marvin Scholz
lavfi/af_channelmap: fix channelmap_init error handling
The channelmap_init function was returning success even on error after
ffmpeg | branch: master | Marvin Scholz | Sun Sep 8
20:56:38 2024 +0200| [e7126d96489bbfe4164550cb1253839ae63d724c] | committer:
Marvin Scholz
lavfi/vf_signature: use av_err2str to simplify code
No need to explicitly specify the buffer here as it is only
ever passed to av_log, so av_err2str
ffmpeg | branch: master | Marvin Scholz | Sun Sep 8
21:38:12 2024 +0200| [074bf9faf7a0960b0e879b024121ae7230cefb75] | committer:
Marvin Scholz
avformat/crypto: fix variable shadowing
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=074bf9faf7a0960b0e879b024121ae7230cef
ffmpeg | branch: master | Marvin Scholz | Sun Sep 8
21:43:39 2024 +0200| [5dfc547f257ac13c16d8103ecb473996944bd25f] | committer:
Marvin Scholz
avutil/file: use av_err2str to simplify code
No need to explicitly specify the buffer here as it is only
ever passed to av_log, so av_err2str can be
ffmpeg | branch: master | Marvin Scholz | Sun Sep 8
22:20:42 2024 +0200| [bb91425eb89affd45dfcdb004bd361e0630a7ece] | committer:
Marvin Scholz
fftools/ffmpeg_mux_init: remove unused variable
This dict is declared and freed but nothing is ever written to it.
> http://git.videolan.
ffmpeg | branch: master | Marvin Scholz | Sun Sep 8
21:45:24 2024 +0200| [0c84b977a9ecdec02424fd6766d05b83bfb00a31] | committer:
Marvin Scholz
avdevice/jack: use av_err2str to simplify code
No need to explicitly specify the buffer here as it is only
ever passed to av_log, so av_err2str can
ffmpeg | branch: master | Marvin Scholz | Sun Sep 8
20:53:11 2024 +0200| [8fac5beaf8177a3bbb4df9c845413ceaf70ea1f6] | committer:
Marvin Scholz
lavfi/f_metadata: use av_err2str to simplify code
No need to explicitly specify the buffer here as it is only
ever passed to av_log, so av_err2str
ffmpeg | branch: master | Marvin Scholz | Sun Sep 8
20:13:45 2024 +0200| [3f8061afe8632cd8e55227281761211ba20e04f4] | committer:
Marvin Scholz
lavfi/vf_ssim: use av_err2str to simplify code
No need to explicitly specify the buffer here as it is only
ever passed to av_log, so av_err2str can
ffmpeg | branch: master | Marvin Scholz | Sun Sep 8
21:16:45 2024 +0200| [24711b00c687d6df175d4fd5bea0b66d6450c7e3] | committer:
Marvin Scholz
avformat/network: use av_err2str to simplify code
No need to explicitly specify the buffer here as it is only
ever passed to av_log, so av_err2str
ffmpeg | branch: master | Marvin Scholz | Sun Sep 8
19:14:10 2024 +0200| [990b80c004baa921212ee6b900d4a56c86cd9e8d] | committer:
Marvin Scholz
fftools/ffmpeg_opt: fix variable shadowing
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=990b80c004baa921212ee6b900d4a56c86cd9
ffmpeg | branch: master | Marvin Scholz | Sun Sep 8
20:51:47 2024 +0200| [59244a0c50b6dd3c69518aa5ccf69304106eb5f4] | committer:
Marvin Scholz
lavfi/vf_ssim: narrow variable scopes
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=59244a0c50b6dd3c69518aa5ccf69304106eb
ffmpeg | branch: master | Marvin Scholz | Sun Sep 8
19:58:16 2024 +0200| [4c6d07dd286562a78ac0c74a68bdb85a8e218423] | committer:
Marvin Scholz
fftools/cmdutils: fix variable shadowing
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=4c6d07dd286562a78ac0c74a68bdb85a8e218
ffmpeg | branch: master | Marvin Scholz | Sun Sep 8
20:02:34 2024 +0200| [e93f20c0173d811246943b9078209609734ca3a2] | committer:
Marvin Scholz
lavfi/vf_vmafmotion: use av_err2str to simplify code
No need to explicitly specify the buffer here as it is only
ever passed to av_log, so av_err2str
ffmpeg | branch: master | Marvin Scholz | Sun Sep 8
20:05:57 2024 +0200| [bd3038b28c2669379bfaff6673b21a6f98934705] | committer:
Marvin Scholz
lavfi/vf_vmafmotion: fix variable shadowing
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=bd3038b28c2669379bfaff6673b21a6f98934
ffmpeg | branch: master | Marvin Scholz | Sun Sep 8
19:50:46 2024 +0200| [c6ab95d009f080a8f0beea5149ae8335186adbe1] | committer:
Marvin Scholz
lavfi/vf_ssim360: use av_err2str to simplify code
No need to explicitly specify the buffer here as it is only ever passed
to av_log, so av_err2str
ffmpeg | branch: master | Marvin Scholz | Sun Sep 8
20:01:15 2024 +0200| [29d7ed089eb3bba470ca6aa7b5005c59c5ddf8d7] | committer:
Marvin Scholz
lavfi/vf_psnr: use av_err2str to simplify code
No need to explicitly specify the buffer here as it is only
ever passed to av_log, so av_err2str can
ffmpeg | branch: master | Marvin Scholz | Sun Sep 8
19:54:47 2024 +0200| [bbde886b6373795c304506e1692a9851acdd1ea1] | committer:
Marvin Scholz
lavfi/vf_ssim360: fix variable shadowing
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=bbde886b6373795c304506e1692a9851acdd1
ffmpeg | branch: master | Marvin Scholz | Tue Aug 13
20:06:42 2024 +0200| [504c1ffcd8dd09c40f4eacecb407d5fce423145c] | committer:
Marvin Scholz
fftools/ffmpeg: remove useless error check
When ret is checked here, it was never assigned anything, making this
check useless, as highlighted by
ffmpeg | branch: master | Marvin Scholz | Thu Sep 5
03:13:13 2024 +0200| [9556379943b6c221def0022f4ce31343b91ec7f3] | committer:
Anton Khirnov
lavfi/avfiltergraph: fix leak on error
Introduced in eddffbedb3443d5a4fe642de6e35b9e6a35cfda7
Fixes: CID1618897 Resource leak
Signed-off-by: Anton
ffmpeg | branch: master | Marvin Scholz | Sat Sep 7
20:19:04 2024 +0200| [b4e64b86ad92ce83d7befeaa1245416cf6eadd27] | committer:
Timo Rothenpieler
lavu/opt: av_opt_set_array: fix uninitialised return
In one failure path for av_opt_set_array, the ret variable
was declared again, shadowing the
ffmpeg | branch: master | Marvin Scholz | Wed Aug 28
03:08:39 2024 +0200| [8a314e3f11dc6549a2b1aa4a7cefa2a44aca2827] | committer:
Timo Rothenpieler
lavu/opt: Fix return of uninitialised value
In one of the failure paths of av_opt_get_array, the ret variable
was accidentally declared again
ffmpeg | branch: release/7.0 | Marvin Scholz | Sat Aug 31
22:45:31 2024 +0200| [47844f58691feae90e3df7444c00631a94a65bba] | committer:
James Almer
avformat/iamf_parse: Fix return of uninitialized value
The ret value here is not yet intialized so the return would return
uninitialized data
ffmpeg | branch: master | Marvin Scholz | Sat Aug 31
22:45:31 2024 +0200| [b6a0eab528695c39a0c52889db0c1ce5dd6d99f3] | committer:
James Almer
avformat/iamf_parse: Fix return of uninitialized value
The ret value here is not yet intialized so the return would return
uninitialized data. What was
ffmpeg | branch: master | Marvin Scholz | Thu Aug 15
00:41:44 2024 +0200| [8f36c6f2e7b7180e28960437c011bcfa11d669d1] | committer:
Michael Niedermayer
MAINTAINERS: add CC preference for myself
Signed-off-by: Michael Niedermayer
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commi
ffmpeg | branch: master | Marvin Scholz | Tue Jul 23
11:10:44 2024 +0200| [ca7fcf50891997eb95b4bf6d5cd4e2446e8c8631] | committer:
Zhao Zhili
avutil/hwcontext_videotoolbox: Fix build with older SDKs
The previous fix was not sufficient.
To make things easier to reason about, split the function
ffmpeg | branch: master | Marvin Scholz | Tue Jul 9
16:46:47 2024 +0200| [2fc37c42391a38bfe0aea248f2fe75c9033f98e5] | committer:
Zhao Zhili
avutil/hwcontext_videotoolbox: Fix build with older SDKs
I've accidentally used API not available on the checked version.
Additionally check for th
ffmpeg | branch: master | Marvin Scholz | Fri Jul 12
17:47:14 2024 +0200| [613c85a8f5b296c2b79fc0abfd98fccf962bb334] | committer:
Leo Izen
avfilter/af_channelsplit: fix mixed declaration and code
Fix a "mixing declarations and code is incompatible with standards
before C99" warnin
ffmpeg | branch: master | Marvin Scholz | Tue Jul 2
20:38:00 2024 +0200| [6d9c4bd69e81b614cf1e1a809679a7ab840b2b3d] | committer:
Michael Niedermayer
lavfi/perlin: Fix out of bounds stack buffer write
An incorrect calculation in ff_perlin_init causes a write to the
stack array at index 256
ffmpeg | branch: master | Marvin Scholz | Mon May 20
03:12:01 2024 +0200| [cd9ceaef22ecc25278c771169d179dbfdb24a355] | committer:
Zhao Zhili
avutil/hwcontext_videotoolbox: Set CVBuffer CGColorSpace
In addition to the other properties, try to obtain the right
CGColorSpace and set it as well
ffmpeg | branch: master | Marvin Scholz | Thu May 30
03:16:56 2024 +0200| [b4f9fcc63c29827f3bd2822f0d6ba6af098c9cb7] | committer:
Zhao Zhili
avutil/hwcontext_videotoolbox: Update documentation
The documentation was not clear at all what specifically the
function does, so it was left
ffmpeg | branch: master | Marvin Scholz | Mon May 20
03:12:01 2024 +0200| [1fa7554bd6cc35b008045d33f9e948a92e7b901c] | committer:
Zhao Zhili
avutil/hwcontext_videotoolbox: Unset undefined values
When mapping AVFrame properties to the CVBuffer attachments, it is
necessary to properly delete
ffmpeg | branch: master | Marvin Scholz | Tue Jul 2
23:25:57 2024 +0200| [ac60ad1872f739dab3ce5c9291d0ea90dbf21e94] | committer:
Lynne
avcodec/aacdec_usac: Fix array size
The array in ff_aac_usac_mdst_filt_cur that is passed to that has a size
of 7 elements, not 6 and the code in the
ffmpeg | branch: release/6.1 | Marvin Scholz | Tue Nov 7
23:21:17 2023 +0100| [c5ee01d966ab43338f913c3977bbb638f8940122] | committer:
Anton Khirnov
avfilter/vf_tpad: fix check for drawing initialization
The check if drawing needs to be initialized and supported formats
should be drawable
ffmpeg | branch: master | Marvin Scholz | Tue Nov 7
23:21:18 2023 +0100| [e900a559c25251398e6d0e0268ef836771fbec06] | committer:
Anton Khirnov
fate: enhance tpad filter test
Adds another test that uses the start_duration and stop_duration
options instead of start and stop.
Signed-off-by
ffmpeg | branch: master | Marvin Scholz | Tue Nov 7
23:21:17 2023 +0100| [6667741029bce9a79b48caedf24d6cb69c5ead7d] | committer:
Anton Khirnov
avfilter/vf_tpad: fix check for drawing initialization
The check if drawing needs to be initialized and supported formats
should be drawable ones was
ffmpeg | branch: master | Marvin Scholz | Mon Aug 21
22:45:27 2023 +0200| [15a89a9422ddd596c1ff193bcec56b5d7b26af62] | committer:
Lynne
lavfi/vf_xfade_vulkan: add wipes
Add the wipetl, wipetr, wipebl, wipebr effects.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commi
ffmpeg | branch: master | Marvin Scholz | Mon Aug 21
22:45:26 2023 +0200| [85c7c79a62adbabc7c2dfb6a1dfff6cd44cf0cb4] | committer:
Lynne
lavfi/vf_xfade_vulkan: add pixelize
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=85c7c79a62adbabc7c2dfb6a1dfff6cd44cf0cb4
---
libavfil
ffmpeg | branch: master | Marvin Scholz | Mon Aug 21
22:45:24 2023 +0200| [8d3fd489e2c5c88773104b92fedf80d2ecbf3b6a] | committer:
Lynne
lavfi/vf_xfade_vulkan: reindent after last commit
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8d3fd489e2c5c88773104b92fedf80d2ecbf3
ffmpeg | branch: master | Marvin Scholz | Mon Aug 21
22:45:25 2023 +0200| [98bd8a7f5c3bb2ada6391c491c7623dd55e94db7] | committer:
Lynne
lavfi/vf_xfade_vulkan: add dissolve
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=98bd8a7f5c3bb2ada6391c491c7623dd55e94db7
---
libavfil
ffmpeg | branch: master | Marvin Scholz | Mon Aug 21
22:45:23 2023 +0200| [95e366fb59626d61206da8b1f2928f0b7a5e7e7c] | committer:
Lynne
lavfi/vf_xfade_vulkan: add circleopen/circleclose
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=95e366fb59626d61206da8b1f2928f0b7a5e7
ffmpeg | branch: master | Marvin Scholz | Sat Nov 26
15:46:24 2022 +0100| [81747b5259faa343aab1834e8949154d30d7994c] | committer:
Andreas Rheinhardt
avutil: use av_dict_iterate
Signed-off-by: Andreas Rheinhardt
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commi
ffmpeg | branch: master | Marvin Scholz | Sat Nov 26
15:46:48 2022 +0100| [45ab5307a6e8c04b4ea91b1e1ccf71ba38195f7c] | committer:
Andreas Rheinhardt
avformat/fifo: use av_dict_iterate
Signed-off-by: Andreas Rheinhardt
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commi
ffmpeg | branch: master | Marvin Scholz | Sat Nov 26
15:46:47 2022 +0100| [d75d8370bd1c08f488ed0b30794f72e03f67c7a3] | committer:
Andreas Rheinhardt
avformat/matroskaenc: use av_dict_iterate
Signed-off-by: Andreas Rheinhardt
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commi
ffmpeg | branch: master | Marvin Scholz | Sat Nov 26
15:46:46 2022 +0100| [643c2b4722281a125e1cb86f517a7dbc442a37ac] | committer:
Andreas Rheinhardt
avformat/http: use av_dict_iterate
Signed-off-by: Andreas Rheinhardt
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commi
ffmpeg | branch: master | Marvin Scholz | Sat Nov 26
15:46:45 2022 +0100| [fb93d3d04393086699d5d0e237cba622cbc725cd] | committer:
Andreas Rheinhardt
avformat/asfenc: use av_dict_iterate
Signed-off-by: Andreas Rheinhardt
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commi
ffmpeg | branch: master | Marvin Scholz | Sat Nov 26
15:46:44 2022 +0100| [521d8dcf88d6e40a0791b7ad210e7ac35ffbfc16] | committer:
Andreas Rheinhardt
avformat/apetag: use av_dict_iterate
Signed-off-by: Andreas Rheinhardt
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commi
ffmpeg | branch: master | Marvin Scholz | Sat Nov 26
15:46:43 2022 +0100| [4bf8c9c2d8d507ad1499b407fd8018c408a57c20] | committer:
Andreas Rheinhardt
avformat/nutenc: use av_dict_iterate
Signed-off-by: Andreas Rheinhardt
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commi
ffmpeg | branch: master | Marvin Scholz | Sat Nov 26
15:46:42 2022 +0100| [0464aa484e8d7f43354b4eb18f2284780fe60ee3] | committer:
Andreas Rheinhardt
avformat/id3v2enc: use av_dict_iterate
Signed-off-by: Andreas Rheinhardt
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commi
ffmpeg | branch: master | Marvin Scholz | Sat Nov 26
15:46:41 2022 +0100| [995616b752ffc90943aec6b140f82ad79c38b497] | committer:
Andreas Rheinhardt
avformat/ffmetaenc: use av_dict_iterate
Signed-off-by: Andreas Rheinhardt
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commi
ffmpeg | branch: master | Marvin Scholz | Sat Nov 26
15:46:39 2022 +0100| [2b5391b88fa033c78f6f1b9df0d14d26ba097686] | committer:
Andreas Rheinhardt
avformat/dump: use av_dict_iterate
Signed-off-by: Andreas Rheinhardt
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commi
ffmpeg | branch: master | Marvin Scholz | Sat Nov 26
15:46:38 2022 +0100| [8298f20c590d55bfe8cb08bb825240fd7c2e2d65] | committer:
Andreas Rheinhardt
avformat/lrcenc: use av_dict_iterate
Signed-off-by: Andreas Rheinhardt
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commi
ffmpeg | branch: master | Marvin Scholz | Sat Nov 26
15:46:37 2022 +0100| [6c4f23cc206f0b034ebfb767d0f35c586c5d2b1e] | committer:
Andreas Rheinhardt
avformat/hls: use av_dict_iterate
And constify oldentry too while at it.
Signed-off-by: Andreas Rheinhardt
> http://git.videolan.
ffmpeg | branch: master | Marvin Scholz | Sat Nov 26
15:46:40 2022 +0100| [b31c16d62555de20f2507dbb70e9fe73b16ba8f2] | committer:
Andreas Rheinhardt
avformat/wtvenc: use av_dict_iterate
Signed-off-by: Andreas Rheinhardt
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commi
1 - 100 of 199 matches
Mail list logo