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] fate/audio: add ADX demux and decode test
@ 2024-01-11 22:01 Marth64
  2024-01-12 13:10 ` Paul B Mahol
  2024-01-14 13:53 ` Stefano Sabatini
  0 siblings, 2 replies; 5+ messages in thread
From: Marth64 @ 2024-01-11 22:01 UTC (permalink / raw)
  To: ffmpeg-devel; +Cc: Marth64

Necessary samples to fate-samples/adx :
https://ufile.io/f/v306q

Samples are re-encodes of luckynight from FATE suite.
d3a67e1d21bbaa7afc8e3bd089545ad44685e0c7a4212a75f7d115b0b8d656eb  luckynight.adx
f994367773da8cadc5a41d7eab680a3f24685211d3564d8a806857cab47bdf25  luckynight.pcm

Signed-off-by: Marth64 <marth64@proxyid.net>
---
 tests/fate/audio.mak | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/tests/fate/audio.mak b/tests/fate/audio.mak
index 65317c8d45..1c0f48ae0d 100644
--- a/tests/fate/audio.mak
+++ b/tests/fate/audio.mak
@@ -1,3 +1,8 @@
+FATE_SAMPLES_AUDIO-$(call DEMDEC, ADX, ADPCM_ADX) += fate-adx
+fate-adx: CMD = pcm -i $(TARGET_SAMPLES)/adx/luckynight.adx
+fate-adx: CMP = oneoff
+fate-adx: REF = $(SAMPLES)/adx/luckynight.pcm
+
 FATE_SAMPLES_AUDIO-$(call TRANSCODE, APTX, APTX, WAV_DEMUXER PCM_S16LE_DECODER ARESAMPLE_FILTER) += fate-aptx
 fate-aptx: CMD = transcode wav $(TARGET_SAMPLES)/audio-reference/luckynight_2ch_44kHz_s16.wav aptx "-af aresample -c aptx" "-af aresample -c:a pcm_s16le -t 0.25" "" "" "-f aptx -sample_rate 44100"
 
-- 
2.34.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] fate/audio: add ADX demux and decode test
  2024-01-11 22:01 [FFmpeg-devel] [PATCH] fate/audio: add ADX demux and decode test Marth64
@ 2024-01-12 13:10 ` Paul B Mahol
  2024-01-12 15:26   ` Marth64
  2024-01-14 13:53 ` Stefano Sabatini
  1 sibling, 1 reply; 5+ messages in thread
From: Paul B Mahol @ 2024-01-12 13:10 UTC (permalink / raw)
  To: FFmpeg development discussions and patches; +Cc: Marth64

http://coverage.ffmpeg.org/

*Is this really needed? Does it improves coverage at all?*

On Thu, Jan 11, 2024 at 11:02 PM Marth64 <marth64@proxyid.net> wrote:

> Necessary samples to fate-samples/adx :
> https://ufile.io/f/v306q
>
> Samples are re-encodes of luckynight from FATE suite.
> d3a67e1d21bbaa7afc8e3bd089545ad44685e0c7a4212a75f7d115b0b8d656eb
> luckynight.adx
> f994367773da8cadc5a41d7eab680a3f24685211d3564d8a806857cab47bdf25
> luckynight.pcm
>
> Signed-off-by: Marth64 <marth64@proxyid.net>
> ---
>  tests/fate/audio.mak | 5 +++++
>  1 file changed, 5 insertions(+)
>
> diff --git a/tests/fate/audio.mak b/tests/fate/audio.mak
> index 65317c8d45..1c0f48ae0d 100644
> --- a/tests/fate/audio.mak
> +++ b/tests/fate/audio.mak
> @@ -1,3 +1,8 @@
> +FATE_SAMPLES_AUDIO-$(call DEMDEC, ADX, ADPCM_ADX) += fate-adx
> +fate-adx: CMD = pcm -i $(TARGET_SAMPLES)/adx/luckynight.adx
> +fate-adx: CMP = oneoff
> +fate-adx: REF = $(SAMPLES)/adx/luckynight.pcm
> +
>  FATE_SAMPLES_AUDIO-$(call TRANSCODE, APTX, APTX, WAV_DEMUXER
> PCM_S16LE_DECODER ARESAMPLE_FILTER) += fate-aptx
>  fate-aptx: CMD = transcode wav
> $(TARGET_SAMPLES)/audio-reference/luckynight_2ch_44kHz_s16.wav aptx "-af
> aresample -c aptx" "-af aresample -c:a pcm_s16le -t 0.25" "" "" "-f aptx
> -sample_rate 44100"
>
> --
> 2.34.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".
>
_______________________________________________
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] fate/audio: add ADX demux and decode test
  2024-01-12 13:10 ` Paul B Mahol
@ 2024-01-12 15:26   ` Marth64
  2024-01-12 18:29     ` Marth64
  0 siblings, 1 reply; 5+ messages in thread
From: Marth64 @ 2024-01-12 15:26 UTC (permalink / raw)
  To: Paul B Mahol; +Cc: Marth64, FFmpeg development discussions and patches

I didn’t know about that website until now. Thanks

On Fri, Jan 12, 2024 at 07:10 Paul B Mahol <onemda@gmail.com> wrote:

> http://coverage.ffmpeg.org/
>
> *Is this really needed? Does it improves coverage at all?*
>
> On Thu, Jan 11, 2024 at 11:02 PM Marth64 <marth64@proxyid.net> wrote:
>
>> Necessary samples to fate-samples/adx :
>> https://ufile.io/f/v306q
>>
>> Samples are re-encodes of luckynight from FATE suite.
>> d3a67e1d21bbaa7afc8e3bd089545ad44685e0c7a4212a75f7d115b0b8d656eb
>> luckynight.adx
>> f994367773da8cadc5a41d7eab680a3f24685211d3564d8a806857cab47bdf25
>> luckynight.pcm
>>
>> Signed-off-by: Marth64 <marth64@proxyid.net>
>> ---
>>  tests/fate/audio.mak | 5 +++++
>>  1 file changed, 5 insertions(+)
>>
>> diff --git a/tests/fate/audio.mak b/tests/fate/audio.mak
>> index 65317c8d45..1c0f48ae0d 100644
>> --- a/tests/fate/audio.mak
>> +++ b/tests/fate/audio.mak
>> @@ -1,3 +1,8 @@
>> +FATE_SAMPLES_AUDIO-$(call DEMDEC, ADX, ADPCM_ADX) += fate-adx
>> +fate-adx: CMD = pcm -i $(TARGET_SAMPLES)/adx/luckynight.adx
>> +fate-adx: CMP = oneoff
>> +fate-adx: REF = $(SAMPLES)/adx/luckynight.pcm
>> +
>>  FATE_SAMPLES_AUDIO-$(call TRANSCODE, APTX, APTX, WAV_DEMUXER
>> PCM_S16LE_DECODER ARESAMPLE_FILTER) += fate-aptx
>>  fate-aptx: CMD = transcode wav
>> $(TARGET_SAMPLES)/audio-reference/luckynight_2ch_44kHz_s16.wav aptx "-af
>> aresample -c aptx" "-af aresample -c:a pcm_s16le -t 0.25" "" "" "-f aptx
>> -sample_rate 44100"
>>
>> --
>> 2.34.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".
>>
>
_______________________________________________
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] fate/audio: add ADX demux and decode test
  2024-01-12 15:26   ` Marth64
@ 2024-01-12 18:29     ` Marth64
  0 siblings, 0 replies; 5+ messages in thread
From: Marth64 @ 2024-01-12 18:29 UTC (permalink / raw)
  To: Marth64; +Cc: Paul B Mahol, FFmpeg development discussions and patches

It’s not a critical work. But for future contribution I will reference that
website to see what makes more sense to do. Thank you for letting me know!

On Fri, Jan 12, 2024 at 09:26 Marth64 <marth64@proxyid.net> wrote:

> I didn’t know about that website until now. Thanks
>
> On Fri, Jan 12, 2024 at 07:10 Paul B Mahol <onemda@gmail.com> wrote:
>
>> http://coverage.ffmpeg.org/
>>
>> *Is this really needed? Does it improves coverage at all?*
>>
>> On Thu, Jan 11, 2024 at 11:02 PM Marth64 <marth64@proxyid.net> wrote:
>>
>>> Necessary samples to fate-samples/adx :
>>> https://ufile.io/f/v306q
>>>
>>> Samples are re-encodes of luckynight from FATE suite.
>>> d3a67e1d21bbaa7afc8e3bd089545ad44685e0c7a4212a75f7d115b0b8d656eb
>>> luckynight.adx
>>> f994367773da8cadc5a41d7eab680a3f24685211d3564d8a806857cab47bdf25
>>> luckynight.pcm
>>>
>>> Signed-off-by: Marth64 <marth64@proxyid.net>
>>> ---
>>>  tests/fate/audio.mak | 5 +++++
>>>  1 file changed, 5 insertions(+)
>>>
>>> diff --git a/tests/fate/audio.mak b/tests/fate/audio.mak
>>> index 65317c8d45..1c0f48ae0d 100644
>>> --- a/tests/fate/audio.mak
>>> +++ b/tests/fate/audio.mak
>>> @@ -1,3 +1,8 @@
>>> +FATE_SAMPLES_AUDIO-$(call DEMDEC, ADX, ADPCM_ADX) += fate-adx
>>> +fate-adx: CMD = pcm -i $(TARGET_SAMPLES)/adx/luckynight.adx
>>> +fate-adx: CMP = oneoff
>>> +fate-adx: REF = $(SAMPLES)/adx/luckynight.pcm
>>> +
>>>  FATE_SAMPLES_AUDIO-$(call TRANSCODE, APTX, APTX, WAV_DEMUXER
>>> PCM_S16LE_DECODER ARESAMPLE_FILTER) += fate-aptx
>>>  fate-aptx: CMD = transcode wav
>>> $(TARGET_SAMPLES)/audio-reference/luckynight_2ch_44kHz_s16.wav aptx "-af
>>> aresample -c aptx" "-af aresample -c:a pcm_s16le -t 0.25" "" "" "-f aptx
>>> -sample_rate 44100"
>>>
>>> --
>>> 2.34.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".
>>>
>>
_______________________________________________
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] fate/audio: add ADX demux and decode test
  2024-01-11 22:01 [FFmpeg-devel] [PATCH] fate/audio: add ADX demux and decode test Marth64
  2024-01-12 13:10 ` Paul B Mahol
@ 2024-01-14 13:53 ` Stefano Sabatini
  1 sibling, 0 replies; 5+ messages in thread
From: Stefano Sabatini @ 2024-01-14 13:53 UTC (permalink / raw)
  To: FFmpeg development discussions and patches; +Cc: Marth64

On date Thursday 2024-01-11 16:01:57 -0600, Marth64 wrote:
> Necessary samples to fate-samples/adx :
> https://ufile.io/f/v306q
> 
> Samples are re-encodes of luckynight from FATE suite.
> d3a67e1d21bbaa7afc8e3bd089545ad44685e0c7a4212a75f7d115b0b8d656eb  luckynight.adx
> f994367773da8cadc5a41d7eab680a3f24685211d3564d8a806857cab47bdf25  luckynight.pcm
> 
> Signed-off-by: Marth64 <marth64@proxyid.net>
> ---
>  tests/fate/audio.mak | 5 +++++
>  1 file changed, 5 insertions(+)

Not sure if this needs a fate upload to be committed.
_______________________________________________
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:[~2024-01-14 13:53 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-11 22:01 [FFmpeg-devel] [PATCH] fate/audio: add ADX demux and decode test Marth64
2024-01-12 13:10 ` Paul B Mahol
2024-01-12 15:26   ` Marth64
2024-01-12 18:29     ` Marth64
2024-01-14 13:53 ` Stefano Sabatini

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