Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
 help / color / mirror / Atom feed
From: James Almer <jamrial@gmail.com>
To: ffmpeg-devel@ffmpeg.org
Subject: Re: [FFmpeg-devel] [PATCH] Make Immersive Audio Model optional for MOV demuxing
Date: Wed, 27 Mar 2024 20:58:58 -0300
Message-ID: <cf7b4c23-be59-4797-a547-8455359d5ed2@gmail.com> (raw)
In-Reply-To: <20240327235548.1062119-1-ezemtsov@google.com>

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".

  reply	other threads:[~2024-03-27 23:59 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 [this message]
2024-03-28  0:43   ` Eugene Zemtsov via ffmpeg-devel
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=cf7b4c23-be59-4797-a547-8455359d5ed2@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