Re: [FFmpeg-devel] [PATCH] Allow enabling SVC in libaomenc

2024-06-25 Thread Anton Khirnov
Quoting Chun-Min Chang (2024-06-24 20:50:59) > +const AVDictionaryEntry *en = NULL; > +while ((en = av_dict_iterate(ctx->svc_parameters, en))) { > +if (!strlen(en->value)) > +return AVERROR(EINVAL); > + > +if (!strcmp(en->key, "number_spatial_

[FFmpeg-devel] [PATCH] Allow enabling SVC in libaomenc

2024-06-24 Thread Chun-Min Chang
This patch updates libaomenc.c to accept parameters for SVC (Scalable Video Coding) settings via the FFmpeg API `av_opt_set`. The SVC configuration is applied based on the provided parameters. As libaom's SVC functionality only operates with constant bitrate encoding [1], these parameters will only

Re: [FFmpeg-devel] [PATCH] Allow enabling SVC in libaomenc

2024-06-11 Thread Chun-Min Chang
It looks like the command ``` git format-patch -s -o "outputfolder" --add-header "X-Unsent: 1" --suffix .eml --to ffmpeg-devel@ffmpeg.org -1 1a2b3c4d ``` doesn't work for me. I'll see if I can find another way to submit the patch. On Tue, Jun 11, 2024 at 1:22 PM Chun-Min Chang wrote: > This pa

[FFmpeg-devel] [PATCH] Allow enabling SVC in libaomenc

2024-06-11 Thread Chun-Min Chang
This patch updates libaomenc.c to accept parameters for SVC (Scalable Video Coding) settings via the FFmpeg API `av_opt_set`. The SVC configuration is applied based on the provided parameters. As libaom's SVC functionality only operates with constant bitrate encoding [1], these parameters will onl

Re: [FFmpeg-devel] [PATCH] Allow enabling SVC in libaomenc

2024-06-05 Thread Michael Niedermayer
On Wed, Jun 05, 2024 at 02:34:07PM -0700, Chun-Min Chang wrote: > This patch updates libaomenc.c to accept parameters for SVC (Scalable > Video Coding) settings via the FFmpeg API `av_opt_set`. The SVC > configuration is applied based on the provided parameters. As libaom's > SVC functionality only

[FFmpeg-devel] [PATCH] Allow enabling SVC in libaomenc

2024-06-05 Thread Chun-Min Chang
This patch updates libaomenc.c to accept parameters for SVC (Scalable Video Coding) settings via the FFmpeg API `av_opt_set`. The SVC configuration is applied based on the provided parameters. As libaom's SVC functionality only operates with constant bitrate encoding [1], these parameters will onl