Re: [FFmpeg-devel] [RFC] 5 year plan & Inovation

2024-04-18 Thread Aidan
> > On date Wednesday 2024-04-17 19:21:39 -0700, Aidan wrote: > > I submitted a patch for a TTML decoder because I thought it would be > great. > > It was completely ignored. > Please ping the patch or send a new one > I should probably redo my patch at this point. It&#

Re: [FFmpeg-devel] [RFC] 5 year plan & Inovation

2024-04-17 Thread Aidan
rtant part: the web server. I submitted a patch for a TTML decoder because I thought it would be great. It was completely ignored. If my patch was seriously bad, then fine. But seriously *no one cared*. Y'all can disagree with me. You are slowly digging a pit.

[FFmpeg-devel] [PATCH] avfilter/vf_xfade: Update to support transition between two points in single video stream.

2024-01-16 Thread Aidan O Connor
This patch replaces my previous patch from Jan. 4 2024, which had bugs. Signed-off-by: Aidan O'Connor --- libavfilter/vf_xfade.c | 260 - 1 file changed, 207 insertions(+), 53 deletions(-) diff --git a/libavfilter/vf_xfade.c b/libavfilter/vf_xf

[FFmpeg-devel] [PATCH] Update xfade filter to support transition between two points in single video stream.

2024-01-03 Thread Aidan O Connor
Signed-off-by: Aidan O'Connor --- libavfilter/vf_xfade.c | 266 + 1 file changed, 213 insertions(+), 53 deletions(-) diff --git a/libavfilter/vf_xfade.c b/libavfilter/vf_xfade.c index 890995a608..65611beeb5 100644 --- a/libavfilter/vf_xfade.c

[FFmpeg-devel] fix for avcodec/dvdsub_parser

2022-10-30 Thread Aidan MacDonald
Hi, I was wondering if anyone has picked up this fix for DVD subtitles: https://patchwork.ffmpeg.org/project/ffmpeg/patch/20220930142009.5862-1-aidanmacdonald@gmail.com/ Regards, Aidan ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https

[FFmpeg-devel] [PATCH] avcodec/dvdsub_parser: Fix length check for short packets

2022-09-30 Thread Aidan MacDonald
r. The subtitle stream is not correctly decoded after this point due to the garbage packet_len. Fixing this is pretty simple: fix the length check so packets less than 6 bytes long will not be mistakenly parsed as HD-DVD packets. Signed-off-by: Aidan MacDonald --- libavcodec/dvdsub_parser.c

Re: [FFmpeg-devel] [PATCH 1/2] avformat/westwood_audenc: Check for, not assert on invalid data

2021-04-26 Thread Aidan Richmond
well as the new encoder both also assume they are handling 16bit samples. -- Aidan Richmond ___ 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] [PATCH v5 3/3] avcodec/adpcm: Fixes output from Westwood ADPCM.

2021-04-26 Thread Aidan R
From: ffmpeg-devel on behalf of Zane van Iperen Sent: 26 April 2021 01:46 To: ffmpeg-devel@ffmpeg.org Subject: Re: [FFmpeg-devel] [PATCH v5 3/3] avcodec/adpcm: Fixes output from Westwood ADPCM. On 26/4/21 6:00 am, Aidan Richmond wrote: Patch 1/3: lgtm Patch 2/3: > +static

[FFmpeg-devel] [PATCH v5 3/3] avcodec/adpcm: Fixes output from Westwood ADPCM.

2021-04-25 Thread Aidan Richmond
Fixes bug #9198 Signed-off-by: Aidan Richmond --- libavcodec/adpcm.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libavcodec/adpcm.c b/libavcodec/adpcm.c index be14607eac..5ec9691001 100644 --- a/libavcodec/adpcm.c +++ b/libavcodec/adpcm.c @@ -1400,16 +1400,16

[FFmpeg-devel] [PATCH v5 2/3] avformat/westwoodaudenc: Adds muxer for Westwood AUD format.

2021-04-25 Thread Aidan Richmond
Format is still used by modders of these old games. Signed-off-by: Aidan Richmond --- libavformat/Makefile | 1 + libavformat/allformats.c | 1 + libavformat/westwood_audenc.c | 141 ++ 3 files changed, 143 insertions(+) create mode

[FFmpeg-devel] [PATCH v5 1/3] avcodec/adpcmenc: Adds encoder for Westwood ADPCM.

2021-04-25 Thread Aidan Richmond
Signed-off-by: Aidan Richmond --- libavcodec/Makefile| 1 + libavcodec/adpcmenc.c | 32 ++-- libavcodec/allcodecs.c | 1 + 3 files changed, 32 insertions(+), 2 deletions(-) diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 4a597f727a..fcddde459d

[FFmpeg-devel] [PATCH v4 3/3] avcodec/adpcm: Fixes output from Westwood ADPCM.

2021-04-24 Thread Aidan Richmond
Fixes bug #9198 Signed-off-by: Aidan Richmond --- libavcodec/adpcm.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libavcodec/adpcm.c b/libavcodec/adpcm.c index be14607eac..5ec9691001 100644 --- a/libavcodec/adpcm.c +++ b/libavcodec/adpcm.c @@ -1400,16 +1400,16

[FFmpeg-devel] [PATCH v4 2/3] avformat/westwoodaudenc: Adds muxer for Westwood AUD format.

2021-04-24 Thread Aidan Richmond
Format is still used by modders of these old games. Signed-off-by: Aidan Richmond --- libavformat/Makefile | 1 + libavformat/allformats.c | 1 + libavformat/westwood_audenc.c | 145 ++ 3 files changed, 147 insertions(+) create mode

[FFmpeg-devel] [PATCH v4 1/3] avcodec/adpcmenc: Adds encoder for Westwood ADPCM.

2021-04-24 Thread Aidan Richmond
Signed-off-by: Aidan Richmond --- Apologies, I messed up a variable name in westwood_audenc.c in the v3 version of this patch series. libavcodec/Makefile| 1 + libavcodec/adpcmenc.c | 32 ++-- libavcodec/allcodecs.c | 1 + 3 files changed, 32 insertions(+), 2

[FFmpeg-devel] [PATCH v3 3/3] avcodec/adpcm: Fixes output from Westwood ADPCM.

2021-04-24 Thread Aidan Richmond
Fixes bug #9198 Signed-off-by: Aidan Richmond --- libavcodec/adpcm.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libavcodec/adpcm.c b/libavcodec/adpcm.c index be14607eac..5ec9691001 100644 --- a/libavcodec/adpcm.c +++ b/libavcodec/adpcm.c @@ -1400,16 +1400,16

[FFmpeg-devel] [PATCH v3 2/3] avformat/westwoodaudenc: Adds muxer for Westwood AUD format.

2021-04-24 Thread Aidan Richmond
Format is still used by modders of these old games. Signed-off-by: Aidan Richmond --- libavformat/Makefile | 1 + libavformat/allformats.c | 1 + libavformat/westwood_audenc.c | 145 ++ 3 files changed, 147 insertions(+) create mode

[FFmpeg-devel] [PATCH v3 1/3] avcodec/adpcmenc: Adds encoder for Westwood ADPCM.

2021-04-24 Thread Aidan Richmond
Signed-off-by: Aidan Richmond --- libavcodec/Makefile| 1 + libavcodec/adpcmenc.c | 32 ++-- libavcodec/allcodecs.c | 1 + 3 files changed, 32 insertions(+), 2 deletions(-) diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 4a597f727a..fcddde459d

Re: [FFmpeg-devel] [PATCH v2 1/2] avcodec/adpcmenc: Adds encoder for Westwood ADPCM.

2021-04-24 Thread Aidan R
t that the decoder is wrong. I had submitted a bug to the tracker as I couldn't work out what was wrong with it, I didn't consider it might be reading the nibbles in the wrong order, My next round of updates to the patch will contain a fixed decoder too. Aidan _

[FFmpeg-devel] [PATCH v2 2/2] avformat/westwoodaudenc: Adds muxer for Westwood AUD format.

2021-04-23 Thread Aidan Richmond
/westwood_audenc.c b/libavformat/westwood_audenc.c new file mode 100644 index 00..e381aa9a1a --- /dev/null +++ b/libavformat/westwood_audenc.c @@ -0,0 +1,129 @@ +/* + * Copyright (c) 2021 Aidan Richmond + * + * This file is part of FFmpeg. + * + * FFmpeg is free software; you can redistribute it and

[FFmpeg-devel] [PATCH v2 1/2] avcodec/adpcmenc: Adds encoder for Westwood ADPCM.

2021-04-23 Thread Aidan Richmond
--- libavcodec/Makefile| 1 + libavcodec/adpcmenc.c | 32 ++-- libavcodec/allcodecs.c | 1 + 3 files changed, 32 insertions(+), 2 deletions(-) diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 4a597f727a..fcddde459d 100644 --- a/libavcodec/Makefile ++

[FFmpeg-devel] [PATCH 2/2] avformat/westwoodaudenc Adds muxer for Westwood AUD format.

2021-04-23 Thread Aidan Richmond
/westwood_audenc.c b/libavformat/westwood_audenc.c new file mode 100644 index 00..49310a47c8 --- /dev/null +++ b/libavformat/westwood_audenc.c @@ -0,0 +1,120 @@ +/* + * Copyright (c) 2021 Aidan Richmond + * + * This file is part of FFmpeg. + * + * FFmpeg is free software; you can redistribute it and

[FFmpeg-devel] [PATCH 1/2] avcodec/adpcmenc Adds encoder for Westwood ADPCM.

2021-04-23 Thread Aidan Richmond
--- libavcodec/Makefile| 1 + libavcodec/adpcmenc.c | 32 ++-- libavcodec/allcodecs.c | 1 + 3 files changed, 32 insertions(+), 2 deletions(-) diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 4a597f727a..fcddde459d 100644 --- a/libavcodec/Makefile ++

Re: [FFmpeg-devel] [PATCH v2] avformat/westwood_aud: Adds PCM format demux.

2019-03-20 Thread Aidan R
e=2048 What is the appropriate way to resolve this if the format doesn't provide enough information to identify it uniquely? Return AVPROBE_SCORE_RETRY when we know we can't identify a file with a high enough confidence? -- Aidan Richmond __

Re: [FFmpeg-devel] [PATCH v2] avformat/westwood_aud: Adds PCM format demux.

2019-03-20 Thread Aidan R
tis 2019-03-19 klockan 22:53 + skrev Aidan R: > @@ -69,13 +75,25 @@ static int wsaud_probe(AVProbeData *p) >> if (p->buf[10] & 0xFC) >> return 0; >> >> -if (p->buf[11] != 99 && p->buf[11] != 1) >> +/* valid

[FFmpeg-devel] [PATCH v2] avformat/westwood_aud: Adds PCM format demux.

2019-03-19 Thread Aidan R
PCM format AUD files are found in Westwood's Blade Runner game. --- libavformat/westwood_aud.c | 83 -- 1 file changed, 66 insertions(+), 17 deletions(-) diff --git a/libavformat/westwood_aud.c b/libavformat/westwood_aud.c index 9c2d35cb8a..b25d299bf0 1

[FFmpeg-devel] [PATCH] avformat/westwood_aud: Adds PCM format demux.

2019-02-27 Thread Aidan R
PCM format AUD files are found in Westwood's Blade Runner game. --- libavformat/westwood_aud.c | 80 -- 1 file changed, 63 insertions(+), 17 deletions(-) diff --git a/libavformat/westwood_aud.c b/libavformat/westwood_aud.c index 9c2d35cb8a..5d7e827bc1 1