From: Eugene Zemtsov via ffmpeg-devel <ffmpeg-devel@ffmpeg.org> To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org> Cc: Eugene Zemtsov <ezemtsov@google.com> Subject: Re: [FFmpeg-devel] [PATCH] Make Immersive Audio Model optional for MOV demuxing Date: Wed, 27 Mar 2024 17:43:10 -0700 Message-ID: <CAK8JDrHmqf8tET4uj+0UV6Dhu=UesC5xKOs7Q2r9uYzMRsssfw@mail.gmail.com> (raw) In-Reply-To: <cf7b4c23-be59-4797-a547-8455359d5ed2@gmail.com> > Can you elaborate why you need this? In configure the mov demuxer > selects iamfdec, so it will always be present and compiled. Chromium doesn't use Immersive Audio, but the code for handling it bloats Android binaries, that's why we disabled it. I have a second patch that disables iamfdec by default for mov demuxer, but I had a feeling that maintainers will be less inclined to accept it and that's why I split it from this one. I will still try to send it if this patch is accepted. On Wed, Mar 27, 2024 at 4:59 PM James Almer <jamrial@gmail.com> wrote: > > On 3/27/2024 8:55 PM, Eugene Zemtsov via ffmpeg-devel wrote: > > From: Eugene Zemtsov <eugene@chromium.org> > > > > Signed-off-by: Eugene Zemtsov <eugene@chromium.org> > > --- > > libavformat/mov.c | 15 ++++++++++++++- > > 1 file changed, 14 insertions(+), 1 deletion(-) > > > > diff --git a/libavformat/mov.c b/libavformat/mov.c > > index c55778f3ef..662301bf67 100644 > > --- a/libavformat/mov.c > > +++ b/libavformat/mov.c > > @@ -839,6 +839,7 @@ static int mov_read_dac3(MOVContext *c, AVIOContext *pb, MOVAtom atom) > > return 0; > > } > > > > +#if CONFIG_IAMFDEC > > static int mov_read_iacb(MOVContext *c, AVIOContext *pb, MOVAtom atom) > > { > > AVStream *st; > > @@ -1015,6 +1016,7 @@ fail: > > > > return ret; > > } > > +#endif > > > > static int mov_read_dec3(MOVContext *c, AVIOContext *pb, MOVAtom atom) > > { > > @@ -4797,6 +4799,7 @@ static void fix_timescale(MOVContext *c, MOVStreamContext *sc) > > } > > } > > > > +#if CONFIG_IAMFDEC > > static int mov_update_iamf_streams(MOVContext *c, const AVStream *st) > > { > > const MOVStreamContext *sc = st->priv_data; > > @@ -4840,6 +4843,7 @@ static int mov_update_iamf_streams(MOVContext *c, const AVStream *st) > > > > return 0; > > } > > +#endif > > > > static int mov_read_trak(MOVContext *c, AVIOContext *pb, MOVAtom atom) > > { > > @@ -4921,11 +4925,13 @@ static int mov_read_trak(MOVContext *c, AVIOContext *pb, MOVAtom atom) > > > > mov_build_index(c, st); > > > > +#if CONFIG_IAMFDEC > > if (sc->iamf) { > > ret = mov_update_iamf_streams(c, st); > > if (ret < 0) > > return ret; > > } > > +#endif > > > > if (sc->dref_id-1 < sc->drefs_count && sc->drefs[sc->dref_id-1].path) { > > MOVDref *dref = &sc->drefs[sc->dref_id - 1]; > > @@ -8457,7 +8463,9 @@ static const MOVParseTableEntry mov_default_parse_table[] = { > > { MKTAG('i','p','r','p'), mov_read_iprp }, > > { MKTAG('i','i','n','f'), mov_read_iinf }, > > { MKTAG('a','m','v','e'), mov_read_amve }, /* ambient viewing environment box */ > > +#if CONFIG_IAMFDEC > > { MKTAG('i','a','c','b'), mov_read_iacb }, > > +#endif > > { 0, NULL } > > }; > > > > @@ -8929,8 +8937,10 @@ static void mov_free_stream_context(AVFormatContext *s, AVStream *st) > > av_freep(&sc->coll); > > av_freep(&sc->ambient); > > > > +#if CONFIG_IAMFDEC > > if (sc->iamf) > > ff_iamf_read_deinit(sc->iamf); > > +#endif > > av_freep(&sc->iamf); > > } > > > > @@ -9570,6 +9580,7 @@ static int mov_read_packet(AVFormatContext *s, AVPacket *pkt) > > > > if (st->codecpar->codec_id == AV_CODEC_ID_EIA_608 && sample->size > 8) > > ret = get_eia608_packet(sc->pb, pkt, sample->size); > > +#if CONFIG_IAMFDEC > > else if (sc->iamf) { > > int64_t pts, dts, pos, duration; > > int flags, size = sample->size; > > @@ -9592,7 +9603,9 @@ static int mov_read_packet(AVFormatContext *s, AVPacket *pkt) > > } > > if (!ret) > > return FFERROR_REDO; > > - } else > > + } > > +#endif > > + else > > ret = av_get_packet(sc->pb, pkt, sample->size); > > if (ret < 0) { > > if (should_retry(sc->pb, ret)) { > > Can you elaborate why you need this? In configure the mov demuxer > selects iamfdec, so it will always be present and compiled. > _______________________________________________ > 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". -- Thanks, Eugene Zemtsov. _______________________________________________ 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:[~2024-03-28 0:43 UTC|newest] Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top 2024-03-27 23:55 Eugene Zemtsov via ffmpeg-devel 2024-03-27 23:58 ` James Almer 2024-03-28 0:43 ` Eugene Zemtsov via ffmpeg-devel [this message] 2024-04-02 22:50 ` Eugene Zemtsov via ffmpeg-devel 2024-04-02 22:59 ` James Almer
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='CAK8JDrHmqf8tET4uj+0UV6Dhu=UesC5xKOs7Q2r9uYzMRsssfw@mail.gmail.com' \ --to=ffmpeg-devel@ffmpeg.org \ --cc=ezemtsov@google.com \ /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