On Fri, Dec 15, 2023 at 3:12 PM Vittorio Giovara <[email protected]> wrote:
> > > On Fri, Dec 15, 2023 at 12:34 PM Andreas Rheinhardt < > [email protected]> wrote: > >> > +static int list_add_frame(FrameList **list, size_t *size, AVFrame >> > *frame) >> > +{ >> > + FrameList *element = av_mallocz(sizeof(FrameList)); >> >> The overhead of this FrameList is unnecessary: You can simply use >> AVFrame.opaque as your next pointer. >> > > Good tip! Attached an edited version, with all the other suggestions too. > -- > Vittorio > If there are no more comments, I'll push this today or tomorrow. Thanks -- Vittorio _______________________________________________ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
