Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
 help / color / mirror / Atom feed
From: Steven Liu <lingjiujianke@gmail.com>
To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org>
Subject: Re: [FFmpeg-devel] [PATCH 7/9] MAINTAINERS: Update the entries for the release maintainer for FFmpeg
Date: Tue, 18 Jun 2024 17:56:53 +0800
Message-ID: <CADxeRwmY-54QFvp2+mf4wY3TSqxmPHo_4RrhQvHig-AnK2CFWA@mail.gmail.com> (raw)
In-Reply-To: <CADxeRwmpq=SQSZqZzMzqe8Q_PSbgyRcaqVbgX7UYQVw4+p2Pgw@mail.gmail.com>

Steven Liu <lingjiujianke@gmail.com> 于2024年6月18日周二 17:53写道:
>
> Michael Niedermayer <michael@niedermayer.cc> 于2024年6月17日周一 07:09写道:
> >
> > Ive been told that someone at the BCN video tech meetup claimed to be the
> > "release maintainer for FFmpeg".
> >
> > If you have any doubt who maintains releases, just do something like the following and look at the output:
> > VER=5.1
> > echo commiters ; git shortlog  --group=committer -s  n$VER..release/$VER -n ;\
> > echo authors   ; git shortlog                    -s  n$VER..release/$VER -n
>
> (base) MacBook-Pro:ffmpeg StevenLiu$ VER=5.1
> (base) MacBook-Pro:ffmpeg StevenLiu$ echo committers ; git shortlog
> --group=committer -s  n$VER..release/$VER -n ;echo authors   ; git
> shortlog                    -s  n$VER..release/$VER -n
> committers
> fatal: ambiguous argument 'n5.1..release/5.1': unknown revision or
> path not in the working tree.
> Use '--' to separate paths from revisions, like this:
> 'git <command> [<revision>...] -- [<file>...]'
> authors
> fatal: ambiguous argument 'n5.1..release/5.1': unknown revision or
> path not in the working tree.
> Use '--' to separate paths from revisions, like this:
> 'git <command> [<revision>...] -- [<file>...]'
> (base) MacBook-Pro:ffmpeg StevenLiu$

This can fix the error message. not sure if this is right operation :D
echo committers ; git shortlog  --group=committer -s
n$VER..remotes/origin/release/$VER -n ;echo authors   ; git shortlog
                 -s  n$VER..remotes/origin/release/$VER -n


>
>
>
> >
> > Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
> > ---
> >  MAINTAINERS | 8 +++++---
> >  1 file changed, 5 insertions(+), 3 deletions(-)
> >
> > diff --git a/MAINTAINERS b/MAINTAINERS
> > index 41a98744adf..a82fa58c69f 100644
> > --- a/MAINTAINERS
> > +++ b/MAINTAINERS
> > @@ -536,10 +536,12 @@ wm4
> >  Releases
> >  ========
> >
> > +7.0                                     Michael Niedermayer
> > +6.1                                     Michael Niedermayer
> > +5.1                                     Michael Niedermayer
> > +4.4                                     Michael Niedermayer
> > +3.4                                     Michael Niedermayer
> >  2.8                                     Michael Niedermayer
> > -2.7                                     Michael Niedermayer
> > -2.6                                     Michael Niedermayer
> > -2.5                                     Michael Niedermayer
> >
> >  If you want to maintain an older release, please contact us
> >
> > --
> > 2.45.2
> >
> > _______________________________________________
> > 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".

  reply	other threads:[~2024-06-18  9:57 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-16 23:08 [FFmpeg-devel] [PATCH 1/9] avcodec/targaenc: Allocate space for the palette Michael Niedermayer
2024-06-16 23:08 ` [FFmpeg-devel] [PATCH 2/9] avcodec/mpeg4audio: Check that there is enough space for the first 3 elements in ff_mpeg4audio_get_config_gb() Michael Niedermayer
2024-06-17  5:27   ` Andreas Rheinhardt
2024-06-18 22:00     ` Michael Niedermayer
2024-06-16 23:08 ` [FFmpeg-devel] [PATCH 3/9] avformat/iamf_parse: Try to use less space after the array Michael Niedermayer
2024-06-18  0:35   ` James Almer
2024-06-19 10:54     ` Michael Niedermayer
2024-06-16 23:08 ` [FFmpeg-devel] [PATCH 4/9] avformat/iamf_parse: Layer, thou shalt not be 0 Michael Niedermayer
2024-06-18  0:33   ` James Almer
2024-06-19 10:57     ` Michael Niedermayer
2024-06-16 23:08 ` [FFmpeg-devel] [PATCH 5/9] avformat/mov: Check extend and base offset Michael Niedermayer
2024-06-18  0:41   ` James Almer
2024-06-18  7:07   ` Rémi Denis-Courmont
2024-06-18  7:10     ` Andreas Rheinhardt
2024-06-19 12:34     ` James Almer
2024-06-19 13:08       ` Rémi Denis-Courmont
2024-06-20 22:54         ` Michael Niedermayer
2024-06-20 22:58           ` James Almer
2024-06-16 23:08 ` [FFmpeg-devel] [PATCH 6/9] avcodec/libvpxenc: Cleanup on error Michael Niedermayer
2024-06-17 17:10   ` James Zern via ffmpeg-devel
2024-06-19 10:59     ` Michael Niedermayer
2024-06-16 23:08 ` [FFmpeg-devel] [PATCH 7/9] MAINTAINERS: Update the entries for the release maintainer for FFmpeg Michael Niedermayer
2024-06-17  7:07   ` Anton Khirnov
2024-06-17 23:48     ` Michael Niedermayer
2024-06-18 10:09       ` Anton Khirnov
2024-06-19 11:22         ` Michael Niedermayer
2024-06-17  7:26   ` Paul B Mahol
2024-06-18  7:02   ` Rémi Denis-Courmont
2024-06-18  9:53   ` Steven Liu
2024-06-18  9:56     ` Steven Liu [this message]
2024-06-16 23:08 ` [FFmpeg-devel] [PATCH 8/9] avcodec/smcenc: width < 4 is unsupported Michael Niedermayer
2024-06-17  7:50   ` Paul B Mahol
2024-06-17 23:52     ` Michael Niedermayer
2024-06-18  7:42       ` Paul B Mahol
2024-06-25 19:56         ` Michael Niedermayer
2024-06-16 23:08 ` [FFmpeg-devel] [PATCH 9/9] avcodec/r210enc: Use av_rescale for bitrate Michael Niedermayer
2024-06-25 19:54   ` Michael Niedermayer
2024-06-25 19:55 ` [FFmpeg-devel] [PATCH 1/9] avcodec/targaenc: Allocate space for the palette Michael Niedermayer

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=CADxeRwmY-54QFvp2+mf4wY3TSqxmPHo_4RrhQvHig-AnK2CFWA@mail.gmail.com \
    --to=lingjiujianke@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