Re: [FFmpeg-devel] [PATCH 4/8] fftools/ffmpeg_demux: set options on codec parameters rather than decoder

2024-01-16 Thread James Almer
On 1/16/2024 4:49 PM, Anton Khirnov wrote: Quoting James Almer (2024-01-06 15:22:10) This does not fix the issue of the guessed channel layout not being present on the output stream, Well, it wasn't supposed to fix anything. This patch exists as a prerequisite for the next one. I know,

Re: [FFmpeg-devel] [PATCH 4/8] fftools/ffmpeg_demux: set options on codec parameters rather than decoder

2024-01-16 Thread Anton Khirnov
Quoting James Almer (2024-01-06 15:22:10) > This does not fix the issue of the guessed channel layout not being > present on the output stream, Well, it wasn't supposed to fix anything. This patch exists as a prerequisite for the next one. -- Anton Khirnov

Re: [FFmpeg-devel] [PATCH 4/8] fftools/ffmpeg_demux: set options on codec parameters rather than decoder

2024-01-06 Thread James Almer
On 1/5/2024 1:42 PM, Anton Khirnov wrote: This avoids the requirement to always have a decoder context. --- fftools/ffmpeg_demux.c | 43 +- 1 file changed, 21 insertions(+), 22 deletions(-) diff --git a/fftools/ffmpeg_demux.c b/fftools/ffmpeg_demux.c

Re: [FFmpeg-devel] [PATCH 4/8] fftools/ffmpeg_demux: set options on codec parameters rather than decoder

2024-01-06 Thread Stefano Sabatini
On date Friday 2024-01-05 17:42:47 +0100, Anton Khirnov wrote: > This avoids the requirement to always have a decoder context. > --- > fftools/ffmpeg_demux.c | 43 +- > 1 file changed, 21 insertions(+), 22 deletions(-) > > diff --git

[FFmpeg-devel] [PATCH 4/8] fftools/ffmpeg_demux: set options on codec parameters rather than decoder

2024-01-05 Thread Anton Khirnov
This avoids the requirement to always have a decoder context. --- fftools/ffmpeg_demux.c | 43 +- 1 file changed, 21 insertions(+), 22 deletions(-) diff --git a/fftools/ffmpeg_demux.c b/fftools/ffmpeg_demux.c index cacdc76a71..892094c512 100644 ---