Re: [FFmpeg-devel] [PATCH v2] avformat: introduce AVStreamGroup

2023-10-30 Thread Tomas Härdin
ons 2023-10-25 klockan 16:40 -0300 skrev James Almer: > On 10/25/2023 4:25 PM, Tomas Härdin wrote: > > >   > > > +enum AVStreamGroupParamsType { > > > +    AV_STREAM_GROUP_PARAMS_NONE, > > > > Maybe AV_STREAM_GROUP_PARAMS_NUM on the end? > > For what purpose? Usually, when we add those values

Re: [FFmpeg-devel] [PATCH v2] avformat: introduce AVStreamGroup

2023-10-25 Thread James Almer
On 10/25/2023 4:25 PM, Tomas Härdin wrote: +enum AVStreamGroupParamsType { +    AV_STREAM_GROUP_PARAMS_NONE, Maybe AV_STREAM_GROUP_PARAMS_NUM on the end? For what purpose? Usually, when we add those values they are not part of the API and exist for some internal iteration.

Re: [FFmpeg-devel] [PATCH v2] avformat: introduce AVStreamGroup

2023-10-25 Thread Tomas Härdin
>   > +enum AVStreamGroupParamsType { > +    AV_STREAM_GROUP_PARAMS_NONE, Maybe AV_STREAM_GROUP_PARAMS_NUM on the end? /Tomas ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit

[FFmpeg-devel] [PATCH v2] avformat: introduce AVStreamGroup

2023-10-23 Thread James Almer
Signed-off-by: James Almer --- Changes since the first version: - The union will now hold pointers to Group type specific structs - The array of elements in the group is now of pointers to the streams rather than index values. - Simplified the helpers - Changed field type for idx and id -