Re: [FFmpeg-devel] [PATCH] avcodec/mfenc: add support for AV1 MF encoders

2024-10-09 Thread Dash Santosh
Sure, thanks On Wed, 9 Oct, 2024, 12:29 Martin Storsjö, wrote: > On Mon, 7 Oct 2024, Dash Santosh wrote: > > > Thanks for pointing this out, Martin. Please find the updated patch > below: > > > > From 83e8cfa99bcb13965421fb32c1feb4c792649c22 Mon Sep 17 00:00:00 2001 &

[FFmpeg-devel] [PATCH v2] avcodec/mfenc: add support for AV1 MF encoders

2024-10-09 Thread Dash Santosh
>From 83e8cfa99bcb13965421fb32c1feb4c792649c22 Mon Sep 17 00:00:00 2001 From: Min Chen Date: Fri, 4 Oct 2024 23:04:04 +0530 Subject: [PATCH] avcodec/mfenc: add support for AV1 MF encoders X-Unsent: 1 To: ffmpeg-devel@ffmpeg.org Signed-off-by: Dash Santosh --- configure

[FFmpeg-devel] [PATCH v3] avcodec/mfenc: add support for AV1 MF encoders

2024-10-09 Thread Dash Santosh
Sending patch as attachment since the inline patch fails to apply Thanks, Dash v3-0001-avcodec-mfenc-add-support-for-AV1-MF-encoders.patch Description: Binary data ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinf

Re: [FFmpeg-devel] [PATCH] avcodec/mfenc: add support for AV1 MF encoders

2024-10-06 Thread Dash Santosh
vel@ffmpeg.org Signed-off-by: Dash Santosh --- configure | 1 + libavcodec/allcodecs.c | 1 + libavcodec/mf_utils.c | 2 ++ libavcodec/mf_utils.h | 1 + libavcodec/mfenc.c | 1 + 5 files changed, 6 insertions(+) diff --git a/configure b/configure index 0247ea08d6..63bc53cc27 100

[FFmpeg-devel] [PATCH] avcodec/mfenc: add support for AV1 MF encoders

2024-10-04 Thread Dash Santosh
>From 77c708805c52302861650cf770f6c32a33590e90 Mon Sep 17 00:00:00 2001 From: Min Chen Date: Fri, 4 Oct 2024 23:04:04 +0530 Subject: [PATCH] avcodec/mfenc: add support for AV1 MF encoders X-Unsent: 1 To: ffmpeg-devel@ffmpeg.org Signed-off-by: Dash Santosh --- configure

[FFmpeg-devel] Help Needed - D3D11 Scaling Filter

2024-12-29 Thread Dash Santosh
-inc/> <https://twitter.com/MulticoreWare> <https://www.facebook.com/multicoreware> <https://www.youtube.com/channel/UCXZ1A1MzS5JwBqwBkNfsBBw?sub_confirmation=1> <https://www.instagram.com/multicoreware.inc/> *Dash Santosh* *Research Engineer, Video Engineering* Mobil

Re: [FFmpeg-devel] Help Needed - D3D11 Scaling Filter

2025-01-01 Thread Dash Santosh Sathyanarayanan
Any thoughts on this? ___ 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] Help Needed - D3D11 Scaling Filter

2025-01-01 Thread Dash Santosh Sathyanarayanan
Any thoughts on this? From: Dash Santosh Sent: 30 December 2024 12:48 To: FFmpeg development discussions and patches Cc: Santhoshini Sekar ; Sachin Prakash Kumar Subject: Help Needed - D3D11 Scaling Filter Hi, I'm trying to implement a scaling f

[FFmpeg-devel] [PATCH 2/2] avcodec/mfenc: add support for D3D11 input surfaces

2025-05-22 Thread Dash Santosh Sathyanarayanan
Adds D3D11 input surface support to the MediaFoundation encoder (mfenc), allowing direct encoding of GPU frames without readback to system memory. This improves performance and compatibility when used alongside scale_d3d11. --- Changelog | 1 + libavcodec/mf_utils.h | 7 ++ libavco

[FFmpeg-devel] [PATCH 1/2] avfilter: add scale_d3d11 filter

2025-05-22 Thread Dash Santosh Sathyanarayanan
e_d3d11.c @@ -0,0 +1,480 @@ +/* + * Copyright (C) 2025 MulticorewWare, Inc. + * + * Authors: Dash Santosh + * Sachin + * + * This file is part of FFmpeg. + * + * FFmpeg is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as publis

Re: [FFmpeg-devel] [PATCH 1/2] avfilter: add scale_d3d11 filter

2025-05-22 Thread Dash Santosh Sathyanarayanan
On 22-05-2025 20:55, Timo Rothenpieler wrote: > On 22/05/2025 15:20, Dash Santosh Sathyanarayanan wrote: >> This commit introduces a new hardware-accelerated video filter, >> scale_d3d11, >> which performs scaling and format conversion using Direct3D 11. The >> filt