Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
 help / color / mirror / Atom feed
* [FFmpeg-devel] [PATCH] configure: add libplacebo to help message
@ 2022-01-27  4:28 Zhao Zhili
  2022-01-27  4:44 ` Gyan Doshi
  0 siblings, 1 reply; 5+ messages in thread
From: Zhao Zhili @ 2022-01-27  4:28 UTC (permalink / raw)
  To: ffmpeg-devel; +Cc: Zhao Zhili

---
 configure | 1 +
 1 file changed, 1 insertion(+)

diff --git a/configure b/configure
index 493493b4c5..23c5837e9b 100755
--- a/configure
+++ b/configure
@@ -255,6 +255,7 @@ External library support:
   --enable-libopenvino     enable OpenVINO as a DNN module backend
                            for DNN based filters like dnn_processing [no]
   --enable-libopus         enable Opus de/encoding via libopus [no]
+  --enable-libplacebo      enable libplacebo filter [no]
   --enable-libpulse        enable Pulseaudio input via libpulse [no]
   --enable-librabbitmq     enable RabbitMQ library [no]
   --enable-librav1e        enable AV1 encoding via rav1e [no]
-- 
2.31.1

_______________________________________________
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] 5+ messages in thread

* Re: [FFmpeg-devel] [PATCH] configure: add libplacebo to help message
  2022-01-27  4:28 [FFmpeg-devel] [PATCH] configure: add libplacebo to help message Zhao Zhili
@ 2022-01-27  4:44 ` Gyan Doshi
  2022-01-27  5:01   ` [FFmpeg-devel] [PATCH v2] " Zhao Zhili
  0 siblings, 1 reply; 5+ messages in thread
From: Gyan Doshi @ 2022-01-27  4:44 UTC (permalink / raw)
  To: ffmpeg-devel



On 2022-01-27 09:58 am, Zhao Zhili wrote:
> ---
>   configure | 1 +
>   1 file changed, 1 insertion(+)
>
> diff --git a/configure b/configure
> index 493493b4c5..23c5837e9b 100755
> --- a/configure
> +++ b/configure
> @@ -255,6 +255,7 @@ External library support:
>     --enable-libopenvino     enable OpenVINO as a DNN module backend
>                              for DNN based filters like dnn_processing [no]
>     --enable-libopus         enable Opus de/encoding via libopus [no]
> +  --enable-libplacebo      enable libplacebo filter [no]

filter --> library.

The filter i.e. the native component can still be disabled manually 
(usually in error).

Regards,
Gyan
_______________________________________________
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] 5+ messages in thread

* [FFmpeg-devel] [PATCH v2] configure: add libplacebo to help message
  2022-01-27  4:44 ` Gyan Doshi
@ 2022-01-27  5:01   ` Zhao Zhili
  2022-01-27  8:43     ` Gyan Doshi
  0 siblings, 1 reply; 5+ messages in thread
From: Zhao Zhili @ 2022-01-27  5:01 UTC (permalink / raw)
  To: ffmpeg-devel; +Cc: Zhao Zhili

---
 configure | 1 +
 1 file changed, 1 insertion(+)

diff --git a/configure b/configure
index 493493b4c5..5b19a35f59 100755
--- a/configure
+++ b/configure
@@ -255,6 +255,7 @@ External library support:
   --enable-libopenvino     enable OpenVINO as a DNN module backend
                            for DNN based filters like dnn_processing [no]
   --enable-libopus         enable Opus de/encoding via libopus [no]
+  --enable-libplacebo      enable libplacebo library [no]
   --enable-libpulse        enable Pulseaudio input via libpulse [no]
   --enable-librabbitmq     enable RabbitMQ library [no]
   --enable-librav1e        enable AV1 encoding via rav1e [no]
-- 
2.31.1

_______________________________________________
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] 5+ messages in thread

* Re: [FFmpeg-devel] [PATCH v2] configure: add libplacebo to help message
  2022-01-27  5:01   ` [FFmpeg-devel] [PATCH v2] " Zhao Zhili
@ 2022-01-27  8:43     ` Gyan Doshi
  2022-01-27  9:06       ` Lynne
  0 siblings, 1 reply; 5+ messages in thread
From: Gyan Doshi @ 2022-01-27  8:43 UTC (permalink / raw)
  To: ffmpeg-devel



On 2022-01-27 10:31 am, Zhao Zhili wrote:
> ---
>   configure | 1 +
>   1 file changed, 1 insertion(+)
>
> diff --git a/configure b/configure
> index 493493b4c5..5b19a35f59 100755
> --- a/configure
> +++ b/configure
> @@ -255,6 +255,7 @@ External library support:
>     --enable-libopenvino     enable OpenVINO as a DNN module backend
>                              for DNN based filters like dnn_processing [no]
>     --enable-libopus         enable Opus de/encoding via libopus [no]
> +  --enable-libplacebo      enable libplacebo library [no]
>     --enable-libpulse        enable Pulseaudio input via libpulse [no]
>     --enable-librabbitmq     enable RabbitMQ library [no]
>     --enable-librav1e        enable AV1 encoding via rav1e [no]

LGTM.
_______________________________________________
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] 5+ messages in thread

* Re: [FFmpeg-devel] [PATCH v2] configure: add libplacebo to help message
  2022-01-27  8:43     ` Gyan Doshi
@ 2022-01-27  9:06       ` Lynne
  0 siblings, 0 replies; 5+ messages in thread
From: Lynne @ 2022-01-27  9:06 UTC (permalink / raw)
  To: FFmpeg development discussions and patches

27 Jan 2022, 09:43 by ffmpeg@gyani.pro:

>
>
> On 2022-01-27 10:31 am, Zhao Zhili wrote:
>
>> ---
>>  configure | 1 +
>>  1 file changed, 1 insertion(+)
>>
>> diff --git a/configure b/configure
>> index 493493b4c5..5b19a35f59 100755
>> --- a/configure
>> +++ b/configure
>> @@ -255,6 +255,7 @@ External library support:
>>  --enable-libopenvino     enable OpenVINO as a DNN module backend
>>  for DNN based filters like dnn_processing [no]
>>  --enable-libopus         enable Opus de/encoding via libopus [no]
>> +  --enable-libplacebo      enable libplacebo library [no]
>>  --enable-libpulse        enable Pulseaudio input via libpulse [no]
>>  --enable-librabbitmq     enable RabbitMQ library [no]
>>  --enable-librav1e        enable AV1 encoding via rav1e [no]
>>
>
> LGTM.
>

Pushed
_______________________________________________
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] 5+ messages in thread

end of thread, other threads:[~2022-01-27  9:06 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-27  4:28 [FFmpeg-devel] [PATCH] configure: add libplacebo to help message Zhao Zhili
2022-01-27  4:44 ` Gyan Doshi
2022-01-27  5:01   ` [FFmpeg-devel] [PATCH v2] " Zhao Zhili
2022-01-27  8:43     ` Gyan Doshi
2022-01-27  9:06       ` Lynne

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