* [FFmpeg-devel] [PATCH 1/2] avformat/aeadec, avcodec/atrac1: Fix 8 and 4-channel ATRAC1 support
@ 2024-07-03 14:34 asivery via ffmpeg-devel
2024-07-03 14:49 ` Andreas Rheinhardt
0 siblings, 1 reply; 4+ messages in thread
From: asivery via ffmpeg-devel @ 2024-07-03 14:34 UTC (permalink / raw)
To: FFmpeg development discussions and patches; +Cc: asivery
[-- Attachment #1: Type: text/plain, Size: 317 bytes --]
I'm sending the patch again, so that it is correctly rebased on the current master.
Here are the two sample files required by the FATE test:
https://0x0.st/Xaw2.aea/boxboy333_house_music_multitrack.aea
https://0x0.st/Xaw_.pcm/boxboy333_house_music_multitrack.pcm
Please let me know if I need to provide anything else.
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-avformat-aeadec-avcodec-atrac1-Fix-8-and-4-channel-A.patch --]
[-- Type: text/x-patch; name=0001-avformat-aeadec-avcodec-atrac1-Fix-8-and-4-channel-A.patch, Size: 2182 bytes --]
From 22b988b046c1a1eb02033416710a3f3244f8859a Mon Sep 17 00:00:00 2001
From: asivery <asivery@protonmail.com>
Date: Wed, 3 Jul 2024 16:24:41 +0200
Subject: [PATCH 1/2] avformat/aeadec, avcodec/atrac1: Fix 8 and 4-channel
ATRAC1 support
Signed-off-by: asivery <asivery@protonmail.com>
---
libavcodec/atrac1.c | 12 ++++++------
libavformat/aeadec.c | 2 +-
2 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/libavcodec/atrac1.c b/libavcodec/atrac1.c
index cdcc7a669e..448bdfc7e9 100644
--- a/libavcodec/atrac1.c
+++ b/libavcodec/atrac1.c
@@ -49,7 +49,7 @@
#define AT1_SU_SAMPLES 512 ///< number of samples in a sound unit
#define AT1_FRAME_SIZE AT1_SU_SIZE * 2
#define AT1_SU_MAX_BITS AT1_SU_SIZE * 8
-#define AT1_MAX_CHANNELS 2
+#define AT1_MAX_CHANNELS 8
#define AT1_QMF_BANDS 3
#define IDX_LOW_BAND 0
@@ -339,7 +339,7 @@ static av_cold int atrac1_decode_init(AVCodecContext *avctx)
AVFloatDSPContext *fdsp;
int channels = avctx->ch_layout.nb_channels;
float scale = -1.0 / (1 << 15);
- int ret;
+ int ret, ch;
avctx->sample_fmt = AV_SAMPLE_FMT_FLTP;
@@ -380,10 +380,10 @@ static av_cold int atrac1_decode_init(AVCodecContext *avctx)
q->bands[2] = q->high;
/* Prepare the mdct overlap buffers */
- q->SUs[0].spectrum[0] = q->SUs[0].spec1;
- q->SUs[0].spectrum[1] = q->SUs[0].spec2;
- q->SUs[1].spectrum[0] = q->SUs[1].spec1;
- q->SUs[1].spectrum[1] = q->SUs[1].spec2;
+ for (ch = 0; ch < AT1_MAX_CHANNELS; ch++) {
+ q->SUs[ch].spectrum[0] = q->SUs[ch].spec1;
+ q->SUs[ch].spectrum[1] = q->SUs[ch].spec2;
+ }
return 0;
}
diff --git a/libavformat/aeadec.c b/libavformat/aeadec.c
index be18e7b725..0a3d09a89d 100644
--- a/libavformat/aeadec.c
+++ b/libavformat/aeadec.c
@@ -84,7 +84,7 @@ static int aea_read_header(AVFormatContext *s)
st->codecpar->sample_rate = 44100;
st->codecpar->bit_rate = 146000 * channels;
- if (channels != 1 && channels != 2) {
+ if (channels < 1 || channels > 8) {
av_log(s, AV_LOG_ERROR, "Channels %d not supported!\n", channels);
return AVERROR_INVALIDDATA;
}
--
2.45.2
[-- Attachment #3: 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] 4+ messages in thread
* Re: [FFmpeg-devel] [PATCH 1/2] avformat/aeadec, avcodec/atrac1: Fix 8 and 4-channel ATRAC1 support
2024-07-03 14:34 [FFmpeg-devel] [PATCH 1/2] avformat/aeadec, avcodec/atrac1: Fix 8 and 4-channel ATRAC1 support asivery via ffmpeg-devel
@ 2024-07-03 14:49 ` Andreas Rheinhardt
2024-07-03 14:56 ` asivery via ffmpeg-devel
2024-07-05 11:08 ` Anton Khirnov
0 siblings, 2 replies; 4+ messages in thread
From: Andreas Rheinhardt @ 2024-07-03 14:49 UTC (permalink / raw)
To: ffmpeg-devel
asivery via ffmpeg-devel:
> I'm sending the patch again, so that it is correctly rebased on the current master.
> Here are the two sample files required by the FATE test:
> https://0x0.st/Xaw2.aea/boxboy333_house_music_multitrack.aea
> https://0x0.st/Xaw_.pcm/boxboy333_house_music_multitrack.pcm
> Please let me know if I need to provide anything else.
>
Why such a gigantic file? And why actually a multi-channel file given
that there are no special coding modes for multi-channel files?
- Andreas
_______________________________________________
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] 4+ messages in thread
* Re: [FFmpeg-devel] [PATCH 1/2] avformat/aeadec, avcodec/atrac1: Fix 8 and 4-channel ATRAC1 support
2024-07-03 14:49 ` Andreas Rheinhardt
@ 2024-07-03 14:56 ` asivery via ffmpeg-devel
2024-07-05 11:08 ` Anton Khirnov
1 sibling, 0 replies; 4+ messages in thread
From: asivery via ffmpeg-devel @ 2024-07-03 14:56 UTC (permalink / raw)
To: FFmpeg development discussions and patches; +Cc: asivery
On Sat, 15 Jun 2024 I was asked for samples by Anton Khirnov - this is why I wrote the test.
If the test is not necessary after all, that patch doesn't need to be applied. I can also shorten the test file, if it's required.
On Wednesday, July 3rd, 2024 at 4:49 PM, Andreas Rheinhardt <andreas.rheinhardt@outlook.com> wrote:
> asivery via ffmpeg-devel:
>
> > I'm sending the patch again, so that it is correctly rebased on the current master.
> > Here are the two sample files required by the FATE test:
> > https://0x0.st/Xaw2.aea/boxboy333_house_music_multitrack.aea
> > https://0x0.st/Xaw_.pcm/boxboy333_house_music_multitrack.pcm
> > Please let me know if I need to provide anything else.
>
>
> Why such a gigantic file? And why actually a multi-channel file given
> that there are no special coding modes for multi-channel files?
>
> - Andreas
>
> _______________________________________________
> 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] 4+ messages in thread
* Re: [FFmpeg-devel] [PATCH 1/2] avformat/aeadec, avcodec/atrac1: Fix 8 and 4-channel ATRAC1 support
2024-07-03 14:49 ` Andreas Rheinhardt
2024-07-03 14:56 ` asivery via ffmpeg-devel
@ 2024-07-05 11:08 ` Anton Khirnov
1 sibling, 0 replies; 4+ messages in thread
From: Anton Khirnov @ 2024-07-05 11:08 UTC (permalink / raw)
To: FFmpeg development discussions and patches
Quoting Andreas Rheinhardt (2024-07-03 16:49:55)
> asivery via ffmpeg-devel:
> > I'm sending the patch again, so that it is correctly rebased on the current master.
> > Here are the two sample files required by the FATE test:
> > https://0x0.st/Xaw2.aea/boxboy333_house_music_multitrack.aea
> > https://0x0.st/Xaw_.pcm/boxboy333_house_music_multitrack.pcm
> > Please let me know if I need to provide anything else.
> >
>
> Why such a gigantic file? And why actually a multi-channel file given
> that there are no special coding modes for multi-channel files?
In what world is this gigantic?
I find your obsession with FATE sample sizes to be very
counterproductive. Storage is cheap, developer time is not.
--
Anton Khirnov
_______________________________________________
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] 4+ messages in thread
end of thread, other threads:[~2024-07-05 11:08 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-07-03 14:34 [FFmpeg-devel] [PATCH 1/2] avformat/aeadec, avcodec/atrac1: Fix 8 and 4-channel ATRAC1 support asivery via ffmpeg-devel
2024-07-03 14:49 ` Andreas Rheinhardt
2024-07-03 14:56 ` asivery via ffmpeg-devel
2024-07-05 11:08 ` Anton Khirnov
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