[FFmpeg-cvslog] isom: map xalg and avlg to h264, fixes ticket #6099
ffmpeg | branch: master | compn | Tue Jan 24 23:46:38 2017 -0500| [5316ed899f35e2f8c99720ad27516edac0e00d6b] | committer: compn isom: map xalg and avlg to h264, fixes ticket #6099 > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=5316ed899f35e2f8c99720ad27516edac0e00d6b --- libavformat/isom.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavformat/isom.c b/libavformat/isom.c index 13ceef0..af69e8e 100644 --- a/libavformat/isom.c +++ b/libavformat/isom.c @@ -182,6 +182,8 @@ const AVCodecTag ff_codec_movvideo_tags[] = { { AV_CODEC_ID_H264, MKTAG('A', 'V', 'i', 'n') }, /* AVC-Intra with implicit SPS/PPS */ { AV_CODEC_ID_H264, MKTAG('a', 'i', 'v', 'x') }, /* XAVC 10-bit 4:2:2 */ { AV_CODEC_ID_H264, MKTAG('r', 'v', '6', '4') }, /* X-Com Radvision */ +{ AV_CODEC_ID_H264, MKTAG('x', 'a', 'l', 'g') }, /* XAVC-L HD422 produced by FCP */ +{ AV_CODEC_ID_H264, MKTAG('a', 'v', 'l', 'g') }, /* Panasonic P2 AVC-LongG */ { AV_CODEC_ID_VP9, MKTAG('v', 'p', '0', '9') }, /* VP9 */ ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
Re: [FFmpeg-cvslog] mov: Support prores with multiple stsd
On Wed, 13 Jul 2016 17:06:43 +0200 (CEST) g...@videolan.org (Vittorio Giovara) wrote: > ffmpeg | branch: master | Vittorio Giovara > | Thu Jun 9 18:55:19 2016 -0400| > [846a3e78a535f05ee61bb23a160f3378f041f751] | committer: Vittorio > Giovara > > mov: Support prores with multiple stsd > > This function needs to return false, or data in the additional tables > will be skipped, and the decoder will not be able to decode frames > associated with them. > > > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=846a3e78a535f05ee61bb23a160f3378f041f751 > --- > > libavformat/mov.c |2 ++ > + // prores is allowed to have differing data format and > codec tag > + codec_tag != AV_RL32("apcn") && codec_tag != > AV_RL32("apch") && (c->fc->video_codec_id ? video_codec_id != arent there more than just apch / apcn isom tags? libavformat/isom.c lists a few: { AV_CODEC_ID_PRORES, MKTAG('a', 'p', 'c', 'h') }, /* Apple ProRes 422 High Quality */ { AV_CODEC_ID_PRORES, MKTAG('a', 'p', 'c', 'n') }, /* Apple ProRes 422 Standard Definition */ { AV_CODEC_ID_PRORES, MKTAG('a', 'p', 'c', 's') }, /* Apple ProRes 422 LT */ { AV_CODEC_ID_PRORES, MKTAG('a', 'p', 'c', 'o') }, /* Apple ProRes 422 Proxy */ { AV_CODEC_ID_PRORES, MKTAG('a', 'p', '4', 'h') }, /* Apple ProRes */ { AV_CODEC_ID_PRORES, MKTAG('a', 'p', '4', 'x') }, /* Apple ProRes XQ */ shouldnt these other 4 tags also be added? -compn ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
Re: [FFmpeg-cvslog] xcbgrab: XCB-based screen capture
On Mon, 27 Oct 2014 21:44:59 +0100 (CET) g...@videolan.org (Luca Barbato) wrote: > ffmpeg | branch: master | Luca Barbato | Sun Aug > 24 14:18:22 2014 +0200| [a6674d2e7771dbf7a4a5556f5e126be83cadac96] | > committer: Luca Barbato > > xcbgrab: XCB-based screen capture > > Matches the x11grab screen capture by features. > 100644 --- a/libavdevice/Makefile > -OBJS-$(CONFIG_X11GRAB_INDEV) += x11grab.o > +OBJS-$(CONFIG_X11GRAB_XLIB_INDEV)+= x11grab.o > +OBJS-$(CONFIG_X11GRAB_XCB_INDEV) += xcbgrab.o so its name is changed in the makefile, but not the device name? > diff --git a/libavdevice/alldevices.c b/libavdevice/alldevices.c > REGISTER_INDEV (X11GRAB, x11grab); > +REGISTER_INDEV (X11GRAB_XCB, x11grab_xcb); > a/libavdevice/xcbgrab.c b/libavdevice/xcbgrab.c new file mode 100644 > index 000..5055fde > --- /dev/null > +++ b/libavdevice/xcbgrab.c > @@ -0,0 +1,655 @@ > +/* > + * XCB input grabber > + * Copyright (C) 2014 Luca Barbato > + * > + * This file is part of Libav. > +static const AVOption options[] = { > +{ "draw_mouse", "Draw the mouse pointer.", OFFSET(draw_mouse), > AV_OPT_TYPE_INT, { .i64 = 1 }, 0, 1, D }, > +{ "follow_mouse", "Move the grabbing region when the mouse > pointer reaches within specified amount of pixels to the edge of > region.", > + OFFSET(follow_mouse), AV_OPT_TYPE_INT, { .i64 = 0 }, > FOLLOW_CENTER, INT_MAX, D, "follow_mouse" }, > +{ "centered", "Keep the mouse pointer at the center of grabbing > region when following.", 0, AV_OPT_TYPE_CONST, { .i64 = -1 }, > INT_MIN, INT_MAX, D, "follow_mouse" }, > +{ "show_region", "Show the grabbing region.", > OFFSET(show_region), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, D }, > +{ "region_border", "Set the region border thickness.", > OFFSET(region_border), AV_OPT_TYPE_INT, { .i64 = 3 }, 1, 128, D }, > +{ NULL }, from x11grab.c: static const AVOption options[] = { { "draw_mouse", "draw the mouse pointer", OFFSET(draw_mouse), AV_OPT_TYPE_INT, {.i64 = 1}, 0, 1, DEC }, { "follow_mouse", "move the grabbing region when the mouse pointer reaches within specified amount of pixels to the edge of region", OFFSET(follow_mouse), AV_OPT_TYPE_INT, {.i64 = 0}, -1, INT_MAX, DEC, "follow_mouse" }, { "centered", "keep the mouse pointer at the center of grabbing region when following", 0, AV_OPT_TYPE_CONST, {.i64 = -1}, INT_MIN, INT_MAX, DEC, "follow_mouse" }, > +static void wait_frame(AVFormatContext *s, AVPacket *pkt) > +{ > +XCBGrabContext *c = s->priv_data; > +int64_t curtime, delay; > +int64_t frame_time = av_rescale_q(1, c->time_base, > AV_TIME_BASE_Q); + > +c->time_frame += frame_time; > + > +for (;;) { > +curtime = av_gettime(); > +delay = c->time_frame - curtime; > +if (delay <= 0) > +break; > +av_usleep(delay); > +} > + > +pkt->pts = curtime; is this file based on x11grab.c ? if so , copyrights need to be modified. from x11grab.c: int64_t curtime, delay; ... /* wait based on the frame rate */ for (;;) { curtime = av_gettime(); delay = s->time_frame * av_q2d(s->time_base) - curtime; if (delay <= 0) { if (delay < INT64_C(-100) * av_q2d(s->time_base)) s->time_frame += INT64_C(100); break; } ... pkt->pts = curtime; > +AVInputFormat ff_x11grab_xcb_demuxer = { > +.name = "x11grab", > +.long_name = NULL_IF_CONFIG_SMALL("X11 screen capture, > using XCB"), i've confused myself with x11grab x11grab_xlib and x11grab_xcb , is the name of this demuxer correct? -compn ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
Re: [FFmpeg-cvslog] xcbgrab: XCB-based screen capture
On Tue, 28 Oct 2014 10:05:29 +0100 Nicolas George wrote: > Le sextidi 6 brumaire, an CCXXIII, compn a écrit : > > from x11grab.c: > > > > AV_OPT_TYPE_INT, {.i64 = 1}, 0, 1, DEC }, { "follow_mouse", "move > > the grabbing region when the mouse pointer reaches within specified > > amount of pixels to the edge of region", OFFSET(follow_mouse), from xcbgrab.c: +{ "follow_mouse", "Move the grabbing region when the mouse pointer reaches within specified amount of pixels to the edge of region.", > Or is it just related to your next point? yes > > > is this file based on x11grab.c ? if so , copyrights need to be > > modified. > > Regarding the code itself, my understanding reading Luca's > messages is that it is a new implementation. Of course, the parts > that are far from the back-end library and straightforward are bound > to look similar. the message of follow_mouse is a direct copy (with a punctuation fix). my question is, if its a copy/paste of the option description, do we have to put some original author attribution into the copyright list at the top of xcbgrab.c ? -compn ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
Re: [FFmpeg-cvslog] Force linking against user32 if dxva2 is enabled.
On Tue, 17 Feb 2015 15:17:54 +0100 (CET) g...@videolan.org (Carl Eugen Hoyos) wrote: > Force linking against user32 if dxva2 is enabled. > enabled_all dxva2 dxva2api_cobj CoTaskMemFree && > -prepend ffmpeg_libs $($ldflags_filter "-lole32") && > +prepend ffmpeg_libs $($ldflags_filter "-lole32" "-luser32") && Why do you need user32? -compn ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
Re: [FFmpeg-cvslog] riff: Support ProRes in avi (APCH fourcc)
On Tue, 17 Feb 2015 23:51:06 +0100 (CET) g...@videolan.org (Vittorio Giovara) wrote: > riff: Support ProRes in avi (APCH fourcc) > { AV_CODEC_ID_PRORES, MKTAG('A', 'P', 'C', 'N') }, > +{ AV_CODEC_ID_PRORES, MKTAG('A', 'P', 'C', 'H') }, imo if one (or two) prores tags can be found in avi, then all of them can, might as well add them all. -compn ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
Re: [FFmpeg-cvslog] riff: Support ProRes in avi (APCH fourcc)
On Wed, 18 Feb 2015 08:26:45 -0500 compn wrote: > On Tue, 17 Feb 2015 23:51:06 +0100 (CET) > g...@videolan.org (Vittorio Giovara) wrote: > > > riff: Support ProRes in avi (APCH fourcc) > > { AV_CODEC_ID_PRORES, MKTAG('A', 'P', 'C', 'N') }, > > +{ AV_CODEC_ID_PRORES, MKTAG('A', 'P', 'C', 'H') }, > > imo if one (or two) prores tags can be found in avi, then all of them > can, might as well add them all. or add a guess feature that makes riff look at isom (and vice versa) so that on an unknown codec isom/riff, the other list is automatically checked... like no codec found for fourcc XYZZ checking isom list for XYZZ, XYZZ found. continue decoding with XYZZ codec y/n? please report sample to ffmpeg. -compn ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
Re: [FFmpeg-cvslog] Implement Snappy decompression
On Mon, 22 Jun 2015 20:56:16 +0200 (CEST) g...@videolan.org (Luca Barbato) wrote: > ffmpeg | branch: master | Luca Barbato | Sun May > 24 16:20:26 2015 +0200| [2ecfd451649c7a08cb633635df98e59f7c6e2140] | > committer: Vittorio Giovara > > Implement Snappy decompression > configure |1 + > libavcodec/Makefile |1 + > libavcodec/snappy.c | 173 > +++ > libavcodec/snappy.h | 51 +++ 4 files changed, 226 > insertions(+) what is this? algo for upcoming codec? -compn ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
Re: [FFmpeg-cvslog] lavf: Replace the ASF demuxer
On Sun, 28 Jun 2015 13:41:48 +0200 (CEST) g...@videolan.org (Alexandra Hájková) wrote: > ffmpeg | branch: master | Alexandra Hájková > | Mon Jun 15 14:54:45 2015 +0200| > [b08569a23948db107e5e6175cd4c695427d5339d] | committer: Anton Khirnov > > lavf: Replace the ASF demuxer > > The old one is the result of the reverse engineering and guesswork. > The new one has been written following the now-available > specification. the new one is still based on the old one. this commit message is deceptive. > diff --git a/libavformat/asfdec.c b/libavformat/asfdec.c > index 34e9036..8f46098 100644 > --- a/libavformat/asfdec.c > +++ b/libavformat/asfdec.c > @@ -1,6 +1,6 @@ > /* > - * ASF compatible demuxer > - * Copyright (c) 2000, 2001 Fabrice Bellard > + * Microsoft Advanced Streaming Format demuxer > + * Copyright (c) 2014 Alexandra Hájková another developer who does not respect copyright. > /* MSDN claims that this should be "compatible with the ID3 frame, > APIC", > * but in reality this is only loosely similar */ this function appears in both demuxers. -compn ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] avformat/movenc: fix mime-types in movenc.c
ffmpeg | branch: master | compn | Wed Jul 8 14:24:46 2015 -0400| [0054d5ac02eaf37d7cfa63efa6e278b5f749c0c6] | committer: Michael Niedermayer avformat/movenc: fix mime-types in movenc.c https://developer.apple.com/library/ios/documentation/AppleApplications/Reference/SafariWebContent/CreatingContentforSafarioniPhone/CreatingContentforSafarioniPhone.html says video/mp4 suggested by BBB on irc. Signed-off-by: Michael Niedermayer > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0054d5ac02eaf37d7cfa63efa6e278b5f749c0c6 --- libavformat/movenc.c |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libavformat/movenc.c b/libavformat/movenc.c index 42529ec..77905eb 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -5594,7 +5594,7 @@ MOV_CLASS(mp4) AVOutputFormat ff_mp4_muxer = { .name = "mp4", .long_name = NULL_IF_CONFIG_SMALL("MP4 (MPEG-4 Part 14)"), -.mime_type = "application/mp4", +.mime_type = "video/mp4", .extensions= "mp4", .priv_data_size= sizeof(MOVMuxContext), .audio_codec = AV_CODEC_ID_AAC, @@ -5648,7 +5648,7 @@ MOV_CLASS(ipod) AVOutputFormat ff_ipod_muxer = { .name = "ipod", .long_name = NULL_IF_CONFIG_SMALL("iPod H.264 MP4 (MPEG-4 Part 14)"), -.mime_type = "application/mp4", +.mime_type = "video/mp4", .extensions= "m4v,m4a", .priv_data_size= sizeof(MOVMuxContext), .audio_codec = AV_CODEC_ID_AAC, @@ -5666,7 +5666,7 @@ MOV_CLASS(ismv) AVOutputFormat ff_ismv_muxer = { .name = "ismv", .long_name = NULL_IF_CONFIG_SMALL("ISMV/ISMA (Smooth Streaming)"), -.mime_type = "application/mp4", +.mime_type = "video/mp4", .extensions= "ismv,isma", .priv_data_size= sizeof(MOVMuxContext), .audio_codec = AV_CODEC_ID_AAC, ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
Re: [FFmpeg-cvslog] lavf: use initial_padding instead of deprecated delay
On Tue, 14 Oct 2014 03:41:38 +0200 (CEST) g...@videolan.org (Anton Khirnov) wrote: > lavf: use initial_padding instead of deprecated delay > libavformat/matroskaenc.c |7 --- > libavformat/oggenc.c |5 - shouldnt this say 'use initial_padding instead of deprecated delay in mkv and ogg' ? are those the only two still using delay padding ? -compn ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] riff: add comment for g721,g723 codec tags
ffmpeg | branch: master | compn | Sat May 7 06:56:43 2016 -0400| [1e109bbbf13324562b6186fb0ef758c9cef5cfd3] | committer: compn riff: add comment for g721,g723 codec tags Signed-off-by: Piotr Bandurski > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1e109bbbf13324562b6186fb0ef758c9cef5cfd3 --- libavformat/riff.c |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/riff.c b/libavformat/riff.c index dd20aff..6280e90 100644 --- a/libavformat/riff.c +++ b/libavformat/riff.c @@ -450,8 +450,8 @@ const AVCodecTag ff_codec_wav_tags[] = { { AV_CODEC_ID_AMR_NB, 0x0038 }, /* rogue format number */ { AV_CODEC_ID_G723_1, 0x0042 }, { AV_CODEC_ID_ADPCM_G726, 0x0045 }, -{ AV_CODEC_ID_ADPCM_G726, 0x0014 }, -{ AV_CODEC_ID_ADPCM_G726, 0x0040 }, +{ AV_CODEC_ID_ADPCM_G726, 0x0014 }, /* g723 Antex */ +{ AV_CODEC_ID_ADPCM_G726, 0x0040 }, /* g721 Antex */ { AV_CODEC_ID_MP2, 0x0050 }, { AV_CODEC_ID_MP3, 0x0055 }, { AV_CODEC_ID_AMR_NB, 0x0057 }, ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog
[FFmpeg-cvslog] doc/infra: add reddit sub, facebook page and wikipedia
ffmpeg | branch: master | compn | Wed Nov 13 08:04:13 2024 +1000| [e35587250c3e036261ea9cfc266e74730b6f60ae] | committer: compn doc/infra: add reddit sub, facebook page and wikipedia > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e35587250c3e036261ea9cfc266e74730b6f60ae --- doc/infra.txt | 20 1 file changed, 20 insertions(+) diff --git a/doc/infra.txt b/doc/infra.txt index 23ede295e1..4ef6ccf736 100644 --- a/doc/infra.txt +++ b/doc/infra.txt @@ -119,3 +119,23 @@ https://twitter.com/FFmpeg or https://x.com/FFmpeg If you would like to post to twitter please contact twitter MAINTAINERS for access. We want more developers posting to twitter! + + + +Reddit: +~~~ +https://www.reddit.com/r/ffmpeg/ +moderated by Gyan + + + +Facebook: +~ +https://www.facebook.com/ffmpeg +??? + + + +Wikipedia entry: + +https://en.wikipedia.org/wiki/FFmpeg ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog To unsubscribe, visit link above, or email ffmpeg-cvslog-requ...@ffmpeg.org with subject "unsubscribe".
[FFmpeg-cvslog] doc/infra: add more information and accounts
ffmpeg | branch: master | compn | Mon Nov 11 10:26:15 2024 +1000| [b16102ab1c336ed3df7e43229aba4c8a9bf8cb75] | committer: compn doc/infra: add more information and accounts > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b16102ab1c336ed3df7e43229aba4c8a9bf8cb75 --- doc/infra.txt | 27 +++ 1 file changed, 27 insertions(+) diff --git a/doc/infra.txt b/doc/infra.txt index 30a85dd5ce..23ede295e1 100644 --- a/doc/infra.txt +++ b/doc/infra.txt @@ -1,8 +1,16 @@ FFmpeg Infrastructure: == +Trademark: +~~ +ffmpeg trademark registered in france by ffmpeg creator. +Domain + NS: + +ffmpeg.org domain name +avcodec.org domain name server + Servers: @@ -87,8 +95,27 @@ You need a VM, docker container for FFmpeg? contact root at ffmpeg.org +Multimedia Wiki: + +The Multimedia Wiki http://wiki.multimedia.cx is ran by Mike Melanson. +While not directly part of FFmpeg infrastructure, technical codec and format +information written by FFmpeg developers can be found within. +It is our unofficial official tech wiki. For access contact Mike. + + + IRC: irc channels are at https://libera.chat/ irc channel archives are at https://libera.irclog.whitequark.org +#ffmpeg and #ffmpeg-devel founder/admins: BtbN, Michael, Compn +#ffmpeg-meeting founder/admins: BtbN, Michael + + +Twitter aka X: +~~ +https://twitter.com/FFmpeg or https://x.com/FFmpeg + +If you would like to post to twitter please contact twitter MAINTAINERS +for access. We want more developers posting to twitter! ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog To unsubscribe, visit link above, or email ffmpeg-cvslog-requ...@ffmpeg.org with subject "unsubscribe".
[FFmpeg-cvslog] MAINTAINERS: remove arpi
ffmpeg | branch: master | compn | Wed Nov 13 02:15:36 2024 +1000| [455db6fe109cf905fe518ea2690495948937438f] | committer: compn MAINTAINERS: remove arpi > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=455db6fe109cf905fe518ea2690495948937438f --- MAINTAINERS | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index 7ac5614c18..8a1883c48c 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -50,8 +50,8 @@ Miscellaneous Areas === documentation Stefano Sabatini, Mike Melanson, Timothy Gu, Gyan Doshi -project server day to day operations(L: r...@ffmpeg.org) Árpád Gereöffy, Michael Niedermayer, Reimar Doeffinger, Alexander Strasser, Nikolay Aleksandrov, Timo Rothenpieler -project server emergencies (L: r...@ffmpeg.org) Árpád Gereöffy, Reimar Doeffinger, Alexander Strasser, Nikolay Aleksandrov, Timo Rothenpieler +project server day to day operations(L: r...@ffmpeg.org) Michael Niedermayer, Reimar Doeffinger, Alexander Strasser, Nikolay Aleksandrov, Timo Rothenpieler +project server emergencies (L: r...@ffmpeg.org) Reimar Doeffinger, Alexander Strasser, Nikolay Aleksandrov, Timo Rothenpieler presets [0] metadata subsystem Aurelien Jacobs release management Michael Niedermayer ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog To unsubscribe, visit link above, or email ffmpeg-cvslog-requ...@ffmpeg.org with subject "unsubscribe".
[FFmpeg-cvslog] doc/git-howto: remove outdated line about gitolite
ffmpeg | branch: master | compn | Fri Nov 8 15:59:13 2024 +1000| [f4ba5b083c95b618603394a210c113a24968d68f] | committer: compn doc/git-howto: remove outdated line about gitolite > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f4ba5b083c95b618603394a210c113a24968d68f --- doc/git-howto.texi | 1 - 1 file changed, 1 deletion(-) diff --git a/doc/git-howto.texi b/doc/git-howto.texi index 075b188abe..0a8d8de1d7 100644 --- a/doc/git-howto.texi +++ b/doc/git-howto.texi @@ -71,7 +71,6 @@ git clone git@@ffmpeg.org:ffmpeg-web This will put the source of the FFmpeg website into the directory @var{} and let you push back your changes to the remote repository. -(Note that @var{gil} stands for GItoLite and is not a typo of @var{git}.) If you don't have write-access to the ffmpeg-web repository, you can create patches after making a read-only ffmpeg-web clone: ___ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog To unsubscribe, visit link above, or email ffmpeg-cvslog-requ...@ffmpeg.org with subject "unsubscribe".