From: James Almer <jamrial@gmail.com> To: ffmpeg-devel@ffmpeg.org Subject: Re: [FFmpeg-devel] [RFC][PATCH 1/4] avutil/frame: add an internal field to store the size of AVFrame Date: Sat, 12 Feb 2022 09:33:45 -0300 Message-ID: <f090d583-6523-1a98-473c-68961086ccd1@gmail.com> (raw) In-Reply-To: <CAPYw7P7j2QcY9nrVRcQ8wzK7qvev=jfvK8WNWgJPnXxLB=MsbQ@mail.gmail.com> On 2/12/2022 9:32 AM, Paul B Mahol wrote: > On Sat, Feb 12, 2022 at 1:28 PM James Almer <jamrial@gmail.com> wrote: > >> On 2/12/2022 9:25 AM, Paul B Mahol wrote: >>> On Sat, Feb 12, 2022 at 1:14 AM James Almer <jamrial@gmail.com> wrote: >>> >>>> This is unfortunately needed to remove (or reduce the awfulness) of >> certain >>>> modules violating the AVFrame API and using sizeof(AVFrame). >>>> >>> >>> Which modules? >> >> Anything using wrapped_avframe, so wrapped_avframe decoder and encoder, >> and vapoursynth demuxer, which exports wrapped_avframe packets. >> >> I gave porting the latter into a video source filter some time ago a >> try, which would let us remove the "demuxer", but never sent a patch. I >> can dig it and do that, but it will not change the fact both the >> wrapped_avframe decoder and encoder are still using sizeof(AVFrame). >> > > There was some talk that out VS demuxer is slower than it should be. Really? It's literally a zero copy implementation. It was the entire reason why it was written using wrapped_avframe instead of the proper rawvideo. I don't see it getting any faster than it is from our side. > > >> >>> >>> >>>> With this, the sizeof(AVFrame) value of the libavutil loaded at runtime >>>> can be >>>> used instead of the compile time value of whatever library included >> frame.h >>>> >>>> Signed-off-by: James Almer <jamrial@gmail.com> >>>> --- >>>> This is sucks, but at least less so than the current situation. >>>> >>>> I don't see wrapped_avframe going away anytime soon, so something must >> be >>>> done, >>>> and last time i tried to change how the packets are generated my >> approach >>>> was >>>> shut down, so here's another attempt. >>>> >>>> libavutil/frame.c | 3 +++ >>>> libavutil/frame_internal.h | 33 +++++++++++++++++++++++++++++++++ >>>> 2 files changed, 36 insertions(+) >>>> create mode 100644 libavutil/frame_internal.h >>>> >>>> diff --git a/libavutil/frame.c b/libavutil/frame.c >>>> index 8997c85e35..a63d2979db 100644 >>>> --- a/libavutil/frame.c >>>> +++ b/libavutil/frame.c >>>> @@ -23,6 +23,7 @@ >>>> #include "cpu.h" >>>> #include "dict.h" >>>> #include "frame.h" >>>> +#include "frame_internal.h" >>>> #include "imgutils.h" >>>> #include "mem.h" >>>> #include "samplefmt.h" >>>> @@ -33,6 +34,8 @@ >>>> (frame)->channels == \ >>>> >> av_get_channel_layout_nb_channels((frame)->channel_layout)) >>>> >>>> +const size_t avpriv_avframe_size = sizeof(AVFrame); >>>> + >>>> #if FF_API_COLORSPACE_NAME >>>> const char *av_get_colorspace_name(enum AVColorSpace val) >>>> { >>>> diff --git a/libavutil/frame_internal.h b/libavutil/frame_internal.h >>>> new file mode 100644 >>>> index 0000000000..07c246f86a >>>> --- /dev/null >>>> +++ b/libavutil/frame_internal.h >>>> @@ -0,0 +1,33 @@ >>>> +/* >>>> + * This file is part of FFmpeg. >>>> + * >>>> + * FFmpeg is free software; you can redistribute it and/or >>>> + * modify it under the terms of the GNU Lesser General Public >>>> + * License as published by the Free Software Foundation; either >>>> + * version 2.1 of the License, or (at your option) any later version. >>>> + * >>>> + * FFmpeg is distributed in the hope that it will be useful, >>>> + * but WITHOUT ANY WARRANTY; without even the implied warranty of >>>> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU >>>> + * Lesser General Public License for more details. >>>> + * >>>> + * You should have received a copy of the GNU Lesser General Public >>>> + * License along with FFmpeg; if not, write to the Free Software >>>> + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA >>>> 02110-1301 USA >>>> + */ >>>> + >>>> +#ifndef AVUTIL_FRAME_INTERNAL_H >>>> +#define AVUTIL_FRAME_INTERNAL_H >>>> + >>>> +#include <stdint.h> >>>> + >>>> +#include "frame.h" >>>> + >>>> +/** >>>> + * sizeof(AVFrame). If you think you need to use it, then you need to >>>> change >>>> + * your code so you don't instead. >>>> + * Meant for exceptions like wrapped_avframe. >>>> + */ >>>> +extern const size_t avpriv_avframe_size; >>>> + >>>> +#endif /* AVUTIL_FRAME_INTERNAL_H */ >>>> -- >>>> 2.35.1 >>>> >>>> _______________________________________________ >>>> ffmpeg-devel mailing list >>>> ffmpeg-devel@ffmpeg.org >>>> https://ffmpeg.org/mailman/listinfo/ffmpeg-devel >>>> >>>> To unsubscribe, visit link above, or email >>>> ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe". >>>> >>> _______________________________________________ >>> ffmpeg-devel mailing list >>> ffmpeg-devel@ffmpeg.org >>> https://ffmpeg.org/mailman/listinfo/ffmpeg-devel >>> >>> To unsubscribe, visit link above, or email >>> ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe". >> >> _______________________________________________ >> ffmpeg-devel mailing list >> ffmpeg-devel@ffmpeg.org >> https://ffmpeg.org/mailman/listinfo/ffmpeg-devel >> >> To unsubscribe, visit link above, or email >> ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe". >> > _______________________________________________ > ffmpeg-devel mailing list > ffmpeg-devel@ffmpeg.org > https://ffmpeg.org/mailman/listinfo/ffmpeg-devel > > To unsubscribe, visit link above, or email > ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe". _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
next prev parent reply other threads:[~2022-02-12 12:33 UTC|newest] Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top 2022-02-12 0:12 James Almer 2022-02-12 0:12 ` [FFmpeg-devel] [PATCH 2/4] avcodec/wrapped_avframe: don't allocate an AVFrame twice James Almer 2022-02-12 0:13 ` [FFmpeg-devel] [PATCH 3/4] avcodec/wrapped_avframe: stop hardcoding sizeof(AVFrame) James Almer 2022-02-12 0:13 ` [FFmpeg-devel] [PATCH 4/4] avformat/vapoursynth: " James Almer 2022-02-12 5:29 ` [FFmpeg-devel] [RFC][PATCH 1/4] avutil/frame: add an internal field to store the size of AVFrame Andreas Rheinhardt 2022-02-12 11:46 ` James Almer 2022-02-12 6:45 ` Andreas Rheinhardt 2022-02-12 11:58 ` James Almer 2022-02-12 12:08 ` Michael Niedermayer 2022-02-12 12:16 ` James Almer 2022-02-13 12:08 ` Michael Niedermayer 2022-02-12 12:25 ` Paul B Mahol 2022-02-12 12:28 ` James Almer 2022-02-12 12:32 ` Paul B Mahol 2022-02-12 12:33 ` James Almer [this message] 2022-02-12 12:38 ` Paul B Mahol
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=f090d583-6523-1a98-473c-68961086ccd1@gmail.com \ --to=jamrial@gmail.com \ --cc=ffmpeg-devel@ffmpeg.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel This inbox may be cloned and mirrored by anyone: git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \ ffmpegdev@gitmailbox.com public-inbox-index ffmpegdev Example config snippet for mirrors. AGPL code for this site: git clone https://public-inbox.org/public-inbox.git