Re: [FFmpeg-devel] [PATCH 09/13] avformat: add an LCEVC stream group

2024-09-11 Thread James Almer
On 9/9/2024 8:33 AM, Anton Khirnov wrote: Quoting James Almer (2024-09-08 15:26:51) On 9/6/2024 8:44 AM, Anton Khirnov wrote: Quoting James Almer (2024-08-31 18:31:10) +typedef struct AVStreamGroupLCEVC { +const AVClass *av_class; + +/** + * Width of the final stream for presentati

Re: [FFmpeg-devel] [PATCH 09/13] avformat: add an LCEVC stream group

2024-09-09 Thread Anton Khirnov
Quoting James Almer (2024-09-08 15:26:51) > On 9/6/2024 8:44 AM, Anton Khirnov wrote: > > Quoting James Almer (2024-08-31 18:31:10) > >> +typedef struct AVStreamGroupLCEVC { > >> +const AVClass *av_class; > >> + > >> +/** > >> + * Width of the final stream for presentation. > >> + *

Re: [FFmpeg-devel] [PATCH 09/13] avformat: add an LCEVC stream group

2024-09-08 Thread James Almer
On 9/6/2024 8:44 AM, Anton Khirnov wrote: Quoting James Almer (2024-08-31 18:31:10) +typedef struct AVStreamGroupLCEVC { +const AVClass *av_class; + +/** + * Width of the final stream for presentation. + */ +int width; +/** + * Height of the final image for presentati

Re: [FFmpeg-devel] [PATCH 09/13] avformat: add an LCEVC stream group

2024-09-06 Thread Anton Khirnov
Quoting James Almer (2024-08-31 18:31:10) > +typedef struct AVStreamGroupLCEVC { > +const AVClass *av_class; > + > +/** > + * Width of the final stream for presentation. > + */ > +int width; > +/** > + * Height of the final image for presentation. > + */ > +int h

[FFmpeg-devel] [PATCH 09/13] avformat: add an LCEVC stream group

2024-08-31 Thread James Almer
Signed-off-by: James Almer --- libavformat/avformat.c | 5 + libavformat/avformat.h | 15 +++ libavformat/dump.c | 27 +++ libavformat/options.c | 29 - 4 files changed, 75 insertions(+), 1 deletion(-) diff --git a/libavfo