* [FFmpeg-devel] [PATCH] avdevice/dshow: Don't skip audio devices if no video device is present
@ 2024-07-15 6:51 patches via ffmpeg-devel
2024-07-17 1:02 ` Roger Pack
0 siblings, 1 reply; 10+ messages in thread
From: patches via ffmpeg-devel @ 2024-07-15 6:51 UTC (permalink / raw)
To: ffmpeg-devel; +Cc: patches
The search of the current DirectShow device list has been customized so
that audio devices are always found even if no video device is connected.
Signed-off-by: Jens Frederich <jens.frederich@vector.com>
---
libavdevice/dshow.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavdevice/dshow.c b/libavdevice/dshow.c
index 403e56fe13..57d8e1c0af 100644
--- a/libavdevice/dshow.c
+++ b/libavdevice/dshow.c
@@ -645,7 +645,7 @@ static int dshow_get_device_list(AVFormatContext *avctx, AVDeviceInfoList *devic
}
ret = dshow_cycle_devices(avctx, devenum, VideoDevice, VideoSourceDevice, NULL, NULL, &device_list);
- if (ret < S_OK)
+ if (ret < S_OK && ret != AVERROR(EIO))
goto error;
ret = dshow_cycle_devices(avctx, devenum, AudioDevice, AudioSourceDevice, NULL, NULL, &device_list);
--
2.43.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-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [FFmpeg-devel] [PATCH] avdevice/dshow: Don't skip audio devices if no video device is present
2024-07-15 6:51 [FFmpeg-devel] [PATCH] avdevice/dshow: Don't skip audio devices if no video device is present patches via ffmpeg-devel
@ 2024-07-17 1:02 ` Roger Pack
2024-07-17 7:43 ` patches via ffmpeg-devel
2024-07-22 5:27 ` patches via ffmpeg-devel
0 siblings, 2 replies; 10+ messages in thread
From: Roger Pack @ 2024-07-17 1:02 UTC (permalink / raw)
To: FFmpeg development discussions and patches
LGTM
On Mon, Jul 15, 2024 at 12:51 AM patches via ffmpeg-devel
<ffmpeg-devel@ffmpeg.org> wrote:
>
> The search of the current DirectShow device list has been customized so
> that audio devices are always found even if no video device is connected.
>
> Signed-off-by: Jens Frederich <jens.frederich@vector.com>
> ---
> libavdevice/dshow.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/libavdevice/dshow.c b/libavdevice/dshow.c
> index 403e56fe13..57d8e1c0af 100644
> --- a/libavdevice/dshow.c
> +++ b/libavdevice/dshow.c
> @@ -645,7 +645,7 @@ static int dshow_get_device_list(AVFormatContext *avctx, AVDeviceInfoList *devic
> }
>
> ret = dshow_cycle_devices(avctx, devenum, VideoDevice, VideoSourceDevice, NULL, NULL, &device_list);
> - if (ret < S_OK)
> + if (ret < S_OK && ret != AVERROR(EIO))
> goto error;
> ret = dshow_cycle_devices(avctx, devenum, AudioDevice, AudioSourceDevice, NULL, NULL, &device_list);
>
> --
> 2.43.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-request@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-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [FFmpeg-devel] [PATCH] avdevice/dshow: Don't skip audio devices if no video device is present
2024-07-17 1:02 ` Roger Pack
@ 2024-07-17 7:43 ` patches via ffmpeg-devel
2024-07-22 15:51 ` Roger Pack
2024-07-22 5:27 ` patches via ffmpeg-devel
1 sibling, 1 reply; 10+ messages in thread
From: patches via ffmpeg-devel @ 2024-07-17 7:43 UTC (permalink / raw)
To: FFmpeg development discussions and patches; +Cc: patches, rogerdpack2
-----Original Message-----
From: ffmpeg-devel <ffmpeg-devel-bounces@ffmpeg.org> On Behalf Of Roger Pack
Sent: Wednesday, July 17, 2024 3:03 AM
To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org>
Subject: Re: [FFmpeg-devel] [PATCH] avdevice/dshow: Don't skip audio devices if no video device is present
> LGTM
I also need this fix in 5.1 release branch, is this possible?
Jens
On Mon, Jul 15, 2024 at 12:51 AM patches via ffmpeg-devel <ffmpeg-devel@ffmpeg.org> wrote:
>
> The search of the current DirectShow device list has been customized
> so that audio devices are always found even if no video device is connected.
>
> Signed-off-by: Jens Frederich <jens.frederich@vector.com>
> ---
> libavdevice/dshow.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/libavdevice/dshow.c b/libavdevice/dshow.c index
> 403e56fe13..57d8e1c0af 100644
> --- a/libavdevice/dshow.c
> +++ b/libavdevice/dshow.c
> @@ -645,7 +645,7 @@ static int dshow_get_device_list(AVFormatContext *avctx, AVDeviceInfoList *devic
> }
>
> ret = dshow_cycle_devices(avctx, devenum, VideoDevice, VideoSourceDevice, NULL, NULL, &device_list);
> - if (ret < S_OK)
> + if (ret < S_OK && ret != AVERROR(EIO))
> goto error;
> ret = dshow_cycle_devices(avctx, devenum, AudioDevice,
> AudioSourceDevice, NULL, NULL, &device_list);
>
> --
> 2.43.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-request@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-request@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-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [FFmpeg-devel] [PATCH] avdevice/dshow: Don't skip audio devices if no video device is present
2024-07-17 1:02 ` Roger Pack
2024-07-17 7:43 ` patches via ffmpeg-devel
@ 2024-07-22 5:27 ` patches via ffmpeg-devel
1 sibling, 0 replies; 10+ messages in thread
From: patches via ffmpeg-devel @ 2024-07-22 5:27 UTC (permalink / raw)
To: FFmpeg development discussions and patches; +Cc: patches, rogerdpack2
Good morning,
can someone merge this little fix?
Best
Jens
-----Original Message-----
From: ffmpeg-devel <ffmpeg-devel-bounces@ffmpeg.org> On Behalf Of Roger Pack
Sent: Wednesday, July 17, 2024 3:03 AM
To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org>
Subject: Re: [FFmpeg-devel] [PATCH] avdevice/dshow: Don't skip audio devices if no video device is present
[You don't often get email from rogerdpack2@gmail.com. Learn why this is important at https://aka.ms/LearnAboutSenderIdentification ]
LGTM
On Mon, Jul 15, 2024 at 12:51 AM patches via ffmpeg-devel <ffmpeg-devel@ffmpeg.org> wrote:
>
> The search of the current DirectShow device list has been customized
> so that audio devices are always found even if no video device is connected.
>
> Signed-off-by: Jens Frederich <jens.frederich@vector.com>
> ---
> libavdevice/dshow.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/libavdevice/dshow.c b/libavdevice/dshow.c index
> 403e56fe13..57d8e1c0af 100644
> --- a/libavdevice/dshow.c
> +++ b/libavdevice/dshow.c
> @@ -645,7 +645,7 @@ static int dshow_get_device_list(AVFormatContext *avctx, AVDeviceInfoList *devic
> }
>
> ret = dshow_cycle_devices(avctx, devenum, VideoDevice, VideoSourceDevice, NULL, NULL, &device_list);
> - if (ret < S_OK)
> + if (ret < S_OK && ret != AVERROR(EIO))
> goto error;
> ret = dshow_cycle_devices(avctx, devenum, AudioDevice,
> AudioSourceDevice, NULL, NULL, &device_list);
>
> --
> 2.43.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-request@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-request@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-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [FFmpeg-devel] [PATCH] avdevice/dshow: Don't skip audio devices if no video device is present
2024-07-17 7:43 ` patches via ffmpeg-devel
@ 2024-07-22 15:51 ` Roger Pack
2024-07-23 8:15 ` patches via ffmpeg-devel
2024-07-23 8:21 ` patches via ffmpeg-devel
0 siblings, 2 replies; 10+ messages in thread
From: Roger Pack @ 2024-07-22 15:51 UTC (permalink / raw)
To: patches; +Cc: FFmpeg development discussions and patches
On Wed, Jul 17, 2024 at 1:43 AM patches <patches@vector.com> wrote:
>
> -----Original Message-----
> From: ffmpeg-devel <ffmpeg-devel-bounces@ffmpeg.org> On Behalf Of Roger Pack
> Sent: Wednesday, July 17, 2024 3:03 AM
> To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org>
> Subject: Re: [FFmpeg-devel] [PATCH] avdevice/dshow: Don't skip audio devices if no video device is present
>
> > LGTM
>
> I also need this fix in 5.1 release branch, is this possible?
Not sure how backports work, but you could make your own fork with it in it?
>
>
> On Mon, Jul 15, 2024 at 12:51 AM patches via ffmpeg-devel <ffmpeg-devel@ffmpeg.org> wrote:
> >
> > The search of the current DirectShow device list has been customized
> > so that audio devices are always found even if no video device is connected.
> >
> > Signed-off-by: Jens Frederich <jens.frederich@vector.com>
> > ---
> > libavdevice/dshow.c | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/libavdevice/dshow.c b/libavdevice/dshow.c index
> > 403e56fe13..57d8e1c0af 100644
> > --- a/libavdevice/dshow.c
> > +++ b/libavdevice/dshow.c
> > @@ -645,7 +645,7 @@ static int dshow_get_device_list(AVFormatContext *avctx, AVDeviceInfoList *devic
> > }
> >
> > ret = dshow_cycle_devices(avctx, devenum, VideoDevice, VideoSourceDevice, NULL, NULL, &device_list);
> > - if (ret < S_OK)
> > + if (ret < S_OK && ret != AVERROR(EIO))
> > goto error;
> > ret = dshow_cycle_devices(avctx, devenum, AudioDevice,
> > AudioSourceDevice, NULL, NULL, &device_list);
> >
> > --
> > 2.43.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-request@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-request@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-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [FFmpeg-devel] [PATCH] avdevice/dshow: Don't skip audio devices if no video device is present
2024-07-22 15:51 ` Roger Pack
@ 2024-07-23 8:15 ` patches via ffmpeg-devel
2024-07-23 8:21 ` patches via ffmpeg-devel
1 sibling, 0 replies; 10+ messages in thread
From: patches via ffmpeg-devel @ 2024-07-23 8:15 UTC (permalink / raw)
To: Roger Pack, patches; +Cc: patches, FFmpeg development discussions and patches
-----Original Message-----
From: Roger Pack <rogerdpack2@gmail.com>
Sent: Monday, July 22, 2024 5:52 PM
To: patches <patches@vector.com>
Cc: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org>
Subject: Re: [FFmpeg-devel] [PATCH] avdevice/dshow: Don't skip audio devices if no video device is present
On Wed, Jul 17, 2024 at 1:43 AM patches <patches@vector.com> wrote:
>
> -----Original Message-----
> From: ffmpeg-devel <ffmpeg-devel-bounces@ffmpeg.org> On Behalf Of
> Roger Pack
> Sent: Wednesday, July 17, 2024 3:03 AM
> To: FFmpeg development discussions and patches
> <ffmpeg-devel@ffmpeg.org>
> Subject: Re: [FFmpeg-devel] [PATCH] avdevice/dshow: Don't skip audio
> devices if no video device is present
>
> > LGTM
>
> I also need this fix in 5.1 release branch, is this possible?
> Not sure how backports work, but you could make your own fork with it in it?
No, that's why we are submitting the fix, so that we don't have to do 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-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [FFmpeg-devel] [PATCH] avdevice/dshow: Don't skip audio devices if no video device is present
2024-07-22 15:51 ` Roger Pack
2024-07-23 8:15 ` patches via ffmpeg-devel
@ 2024-07-23 8:21 ` patches via ffmpeg-devel
2024-07-23 20:21 ` Michael Niedermayer
1 sibling, 1 reply; 10+ messages in thread
From: patches via ffmpeg-devel @ 2024-07-23 8:21 UTC (permalink / raw)
To: Roger Pack, patches; +Cc: patches, FFmpeg development discussions and patches
-----Original Message-----
From: Roger Pack <rogerdpack2@gmail.com>
Sent: Monday, July 22, 2024 5:52 PM
To: patches <patches@vector.com>
Cc: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org>
Subject: Re: [FFmpeg-devel] [PATCH] avdevice/dshow: Don't skip audio devices if no video device is present
On Wed, Jul 17, 2024 at 1:43 AM patches <patches@vector.com> wrote:
>
> -----Original Message-----
> From: ffmpeg-devel <ffmpeg-devel-bounces@ffmpeg.org> On Behalf Of
> Roger Pack
> Sent: Wednesday, July 17, 2024 3:03 AM
> To: FFmpeg development discussions and patches
> <ffmpeg-devel@ffmpeg.org>
> Subject: Re: [FFmpeg-devel] [PATCH] avdevice/dshow: Don't skip audio
> devices if no video device is present
>
> > LGTM
>
> I also need this fix in 5.1 release branch, is this possible?
> Not sure how backports work, but you could make your own fork with it in it?
Can someone at least commit the fix on the main line?
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [FFmpeg-devel] [PATCH] avdevice/dshow: Don't skip audio devices if no video device is present
2024-07-23 8:21 ` patches via ffmpeg-devel
@ 2024-07-23 20:21 ` Michael Niedermayer
2024-07-24 7:09 ` patches via ffmpeg-devel
0 siblings, 1 reply; 10+ messages in thread
From: Michael Niedermayer @ 2024-07-23 20:21 UTC (permalink / raw)
To: FFmpeg development discussions and patches; +Cc: patches
[-- Attachment #1.1: Type: text/plain, Size: 1504 bytes --]
On Tue, Jul 23, 2024 at 08:21:31AM +0000, patches via ffmpeg-devel wrote:
>
> -----Original Message-----
> From: Roger Pack <rogerdpack2@gmail.com>
> Sent: Monday, July 22, 2024 5:52 PM
> To: patches <patches@vector.com>
> Cc: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org>
> Subject: Re: [FFmpeg-devel] [PATCH] avdevice/dshow: Don't skip audio devices if no video device is present
>
> On Wed, Jul 17, 2024 at 1:43 AM patches <patches@vector.com> wrote:
> >
> > -----Original Message-----
> > From: ffmpeg-devel <ffmpeg-devel-bounces@ffmpeg.org> On Behalf Of
> > Roger Pack
> > Sent: Wednesday, July 17, 2024 3:03 AM
> > To: FFmpeg development discussions and patches
> > <ffmpeg-devel@ffmpeg.org>
> > Subject: Re: [FFmpeg-devel] [PATCH] avdevice/dshow: Don't skip audio
> > devices if no video device is present
> >
> > > LGTM
> >
> > I also need this fix in 5.1 release branch, is this possible?
>
> > Not sure how backports work, but you could make your own fork with it in it?
>
> Can someone at least commit the fix on the main line?
What should be put in the "Author" metadata for this ?
I can put "patches <patches@vector.com>" in it if thats really intended but it
looks like it may be unintended, so iam asking
thx
[...]
--
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB
it is not once nor twice but times without number that the same ideas make
their appearance in the world. -- Aristotle
[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 195 bytes --]
[-- Attachment #2: Type: text/plain, Size: 251 bytes --]
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [FFmpeg-devel] [PATCH] avdevice/dshow: Don't skip audio devices if no video device is present
2024-07-23 20:21 ` Michael Niedermayer
@ 2024-07-24 7:09 ` patches via ffmpeg-devel
2024-07-24 12:33 ` Michael Niedermayer
0 siblings, 1 reply; 10+ messages in thread
From: patches via ffmpeg-devel @ 2024-07-24 7:09 UTC (permalink / raw)
To: Michael Niedermayer, FFmpeg development discussions and patches; +Cc: patches
-----Original Message-----
From: Michael Niedermayer <michael@niedermayer.cc>
Sent: Tuesday, July 23, 2024 10:22 PM
To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org>
Cc: patches <patches@vector.com>
Subject: Re: [FFmpeg-devel] [PATCH] avdevice/dshow: Don't skip audio devices if no video device is present
On Tue, Jul 23, 2024 at 08:21:31AM +0000, patches via ffmpeg-devel wrote:
>
> -----Original Message-----
> From: Roger Pack <rogerdpack2@gmail.com>
> Sent: Monday, July 22, 2024 5:52 PM
> To: patches <patches@vector.com>
> Cc: FFmpeg development discussions and patches
> <ffmpeg-devel@ffmpeg.org>
> Subject: Re: [FFmpeg-devel] [PATCH] avdevice/dshow: Don't skip audio
> devices if no video device is present
>
> On Wed, Jul 17, 2024 at 1:43 AM patches <patches@vector.com> wrote:
> >
> > -----Original Message-----
> > From: ffmpeg-devel <ffmpeg-devel-bounces@ffmpeg.org> On Behalf Of
> > Roger Pack
> > Sent: Wednesday, July 17, 2024 3:03 AM
> > To: FFmpeg development discussions and patches
> > <ffmpeg-devel@ffmpeg.org>
> > Subject: Re: [FFmpeg-devel] [PATCH] avdevice/dshow: Don't skip audio
> > devices if no video device is present
> >
> > > LGTM
> >
> > I also need this fix in 5.1 release branch, is this possible?
>
> > Not sure how backports work, but you could make your own fork with it in it?
>
> Can someone at least commit the fix on the main line?
> What should be put in the "Author" metadata for this ?
> I can put "patches <patches@vector.com>" in it if thats really intended but it looks like it may be unintended, so iam asking
Please use "Jens Frederich". We have a general mailbox for patches at Vector and I can't put a name there, I'll see if I can do better next time when I create a patch.
Michael, will there be another 5.x release? If so, is it possible to apply the patch there? We are currently using 5.1 and the changeover to 6.x or 7.x is not foreseeable.
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [FFmpeg-devel] [PATCH] avdevice/dshow: Don't skip audio devices if no video device is present
2024-07-24 7:09 ` patches via ffmpeg-devel
@ 2024-07-24 12:33 ` Michael Niedermayer
0 siblings, 0 replies; 10+ messages in thread
From: Michael Niedermayer @ 2024-07-24 12:33 UTC (permalink / raw)
To: FFmpeg development discussions and patches
[-- Attachment #1.1: Type: text/plain, Size: 2297 bytes --]
On Wed, Jul 24, 2024 at 07:09:45AM +0000, patches via ffmpeg-devel wrote:
>
>
> -----Original Message-----
> From: Michael Niedermayer <michael@niedermayer.cc>
> Sent: Tuesday, July 23, 2024 10:22 PM
> To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org>
> Cc: patches <patches@vector.com>
> Subject: Re: [FFmpeg-devel] [PATCH] avdevice/dshow: Don't skip audio devices if no video device is present
>
> On Tue, Jul 23, 2024 at 08:21:31AM +0000, patches via ffmpeg-devel wrote:
> >
> > -----Original Message-----
> > From: Roger Pack <rogerdpack2@gmail.com>
> > Sent: Monday, July 22, 2024 5:52 PM
> > To: patches <patches@vector.com>
> > Cc: FFmpeg development discussions and patches
> > <ffmpeg-devel@ffmpeg.org>
> > Subject: Re: [FFmpeg-devel] [PATCH] avdevice/dshow: Don't skip audio
> > devices if no video device is present
> >
> > On Wed, Jul 17, 2024 at 1:43 AM patches <patches@vector.com> wrote:
> > >
> > > -----Original Message-----
> > > From: ffmpeg-devel <ffmpeg-devel-bounces@ffmpeg.org> On Behalf Of
> > > Roger Pack
> > > Sent: Wednesday, July 17, 2024 3:03 AM
> > > To: FFmpeg development discussions and patches
> > > <ffmpeg-devel@ffmpeg.org>
> > > Subject: Re: [FFmpeg-devel] [PATCH] avdevice/dshow: Don't skip audio
> > > devices if no video device is present
> > >
> > > > LGTM
> > >
> > > I also need this fix in 5.1 release branch, is this possible?
> >
> > > Not sure how backports work, but you could make your own fork with it in it?
> >
> > Can someone at least commit the fix on the main line?
>
> > What should be put in the "Author" metadata for this ?
>
> > I can put "patches <patches@vector.com>" in it if thats really intended but it looks like it may be unintended, so iam asking
>
> Please use "Jens Frederich". We have a general mailbox for patches at Vector and I can't put a name there, I'll see if I can do better next time when I create a patch.
will do
>
> Michael, will there be another 5.x release?
yes
> If so, is it possible to apply the patch there?
ill try
thx
--
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB
The educated differ from the uneducated as much as the living from the
dead. -- Aristotle
[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 195 bytes --]
[-- Attachment #2: Type: text/plain, Size: 251 bytes --]
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2024-07-24 12:33 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-07-15 6:51 [FFmpeg-devel] [PATCH] avdevice/dshow: Don't skip audio devices if no video device is present patches via ffmpeg-devel
2024-07-17 1:02 ` Roger Pack
2024-07-17 7:43 ` patches via ffmpeg-devel
2024-07-22 15:51 ` Roger Pack
2024-07-23 8:15 ` patches via ffmpeg-devel
2024-07-23 8:21 ` patches via ffmpeg-devel
2024-07-23 20:21 ` Michael Niedermayer
2024-07-24 7:09 ` patches via ffmpeg-devel
2024-07-24 12:33 ` Michael Niedermayer
2024-07-22 5:27 ` patches via ffmpeg-devel
Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
This inbox may be cloned and mirrored by anyone:
git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \
ffmpegdev@gitmailbox.com
public-inbox-index ffmpegdev
Example config snippet for mirrors.
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git