From: "\"zhilizhao(赵志立)\"" <quinkblack@foxmail.com> To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org> Cc: Vignesh Venkatasubramanian <vigneshv@google.com> Subject: Re: [FFmpeg-devel] [PATCH 1/2] avformat/movenc: Add movie_timescale option to AVIF Date: Thu, 5 Jan 2023 17:34:29 +0800 Message-ID: <tencent_2462ABBD4E1170452DD49A83402F9A789F08@qq.com> (raw) In-Reply-To: <20230104221619.919110-1-vigneshv@google.com> > On Jan 5, 2023, at 06:16, Vignesh Venkatasubramanian <vigneshv-at-google.com@ffmpeg.org> wrote: > > Allow specifying the movie_timescale options to AVIF ouptut. > > This also makes sure that when movie_timescale is not specified, > the default value of 1000 is used instead of 0. Animated AVIF > files which don't specify the movie_timescale will have the > correct duration written in the track and movie headers after this > change (instead of writing 0). > > Signed-off-by: Vignesh Venkatasubramanian <vigneshv@google.com> > --- > libavformat/movenc.c | 6 ++++++ > 1 file changed, 6 insertions(+) > > diff --git a/libavformat/movenc.c b/libavformat/movenc.c > index 7d49892283..36c76f7f60 100644 > --- a/libavformat/movenc.c > +++ b/libavformat/movenc.c > @@ -7758,6 +7758,11 @@ static const AVCodecTag codec_f4v_tags[] = { > }; > > #if CONFIG_AVIF_MUXER > + > +static const AVOption avif_options[] = { > + { "movie_timescale", "set movie timescale", offsetof(MOVMuxContext, movie_timescale), AV_OPT_TYPE_INT, {.i64 = MOV_TIMESCALE}, 1, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM}, > + { NULL }, > +}; If there is a chance to add more options which is shared with mov_isobmff_muxer_class, define a common option to avoid duplication. Otherwise keep it as this. > static const AVCodecTag codec_avif_tags[] = { > { AV_CODEC_ID_AV1, MKTAG('a','v','0','1') }, > { AV_CODEC_ID_NONE, 0 }, > @@ -7767,6 +7772,7 @@ static const AVCodecTag *const codec_avif_tags_list[] = { codec_avif_tags, NULL > static const AVClass mov_avif_muxer_class = { > .class_name = "avif muxer", > .item_name = av_default_item_name, > + .option = avif_options, > .version = LIBAVUTIL_VERSION_INT, > }; > #endif > -- > 2.39.0.314.g84b9a713c41-goog > > _______________________________________________ > 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:[~2023-01-05 9:34 UTC|newest] Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top 2023-01-04 22:16 Vignesh Venkatasubramanian 2023-01-04 22:16 ` [FFmpeg-devel] [PATCH 2/2] avformat/movenc: Add loop parameter to animated AVIF Vignesh Venkatasubramanian 2023-01-05 9:45 ` "zhilizhao(赵志立)" 2023-01-05 17:34 ` Vignesh Venkatasubramanian 2023-01-06 9:45 ` "zhilizhao(赵志立)" 2023-01-12 19:30 ` Vignesh Venkatasubramanian 2023-01-12 20:45 ` Vignesh Venkatasubramanian 2023-01-13 4:40 ` "zhilizhao(赵志立)" 2023-01-13 22:14 ` Vignesh Venkatasubramanian 2023-01-05 9:34 ` "zhilizhao(赵志立)" [this message] 2023-01-05 17:26 ` [FFmpeg-devel] [PATCH 1/2] avformat/movenc: Add movie_timescale option to AVIF Vignesh Venkatasubramanian
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=tencent_2462ABBD4E1170452DD49A83402F9A789F08@qq.com \ --to=quinkblack@foxmail.com \ --cc=ffmpeg-devel@ffmpeg.org \ --cc=vigneshv@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