Re: [FFmpeg-devel] GSoC 2024

2024-02-22 Thread Matthias Dressel

On 22.02.24 18:38, Thilo Borgmann via ffmpeg-devel wrote:

Am 02.01.24 um 22:47 schrieb Thilo Borgmann via ffmpeg-devel:

Hi,

the application period for GSoC 2024 begins on Jan 22nd.

Everyone interested in mentoring a project in 2024, please add your 
idea(s) to [1].



[1] https://trac.ffmpeg.org/wiki/SponsoringPrograms/GSoC/2024


we've been selected to participate again in GSoC 2024!

https://summerofcode.withgoogle.com/programs/2024/organizations/ffmpeg
links to the 2023 trac page.



Find all orgs at [2].

Cheers,
Thilo

[2] https://summerofcode.withgoogle.com/programs/2024/organizations

___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".


Re: [FFmpeg-devel] [PATCH] libavcodec/mpeg12: Remove "fast" mode

2023-10-30 Thread Matthias Dressel

On 29.10.23 16:43, Kieran Kunhya wrote:

$subj as discussed at VDD

Kieran


IMHO the commit message should have contained some reason as to *why* 
this was removed.
Now, someone looking at the log needs to find this patch on the ML, then 
follow the reference to find VDD meeting notes where they finally 
find... nothing. Because all the notes say is:


> We should remove it

Unfortunately, I'm too late and it's pushed now, but maybe you can at 
least give a short explanation here on the ML?



Matthias
___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".


[FFmpeg-devel] [PATCH] checkasm: hevc_sao: Fix a regression in hevc_sao_edge

2023-08-24 Thread Matthias Dressel
From: Matthias Dressel 

check_func() might return NULL, in which case the function is not to be
benched. Introduced in cc679054c715acda9438e566b8de3a9eba421ac3.

Signed-off-by: Matthias Dressel 
---
 tests/checkasm/hevc_sao.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/checkasm/hevc_sao.c b/tests/checkasm/hevc_sao.c
index cfee2ddf50..94aa1942e1 100644
--- a/tests/checkasm/hevc_sao.c
+++ b/tests/checkasm/hevc_sao.c
@@ -134,8 +134,8 @@ static void check_sao_edge(HEVCDSPContext *h, int bit_depth)
 if (memcmp(dst0 + j*stride, dst1 + j*stride, 
w*SIZEOF_PIXEL))
 fail();
 }
+bench_new(dst1, src1 + offset, stride, offset_val, eo, 
block_size, block_size);
 }
-bench_new(dst1, src1 + offset, stride, offset_val, eo, block_size, 
block_size);
 }
 }
 }
-- 
2.41.0




___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".