From patchwork Sat Sep 17 23:42:52 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Josh Dekker X-Patchwork-Id: 611 Delivered-To: ffmpegpatchwork@gmail.com Received: by 10.103.140.134 with SMTP id o128csp371407vsd; Sat, 17 Sep 2016 16:43:10 -0700 (PDT) X-Received: by 10.28.208.199 with SMTP id h190mr3703365wmg.17.1474155790222; Sat, 17 Sep 2016 16:43:10 -0700 (PDT) Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org. [79.124.17.100]) by mx.google.com with ESMTP id hn1si11899270wjb.164.2016.09.17.16.43.09; Sat, 17 Sep 2016 16:43:10 -0700 (PDT) Received-SPF: pass (google.com: domain of ffmpeg-devel-bounces@ffmpeg.org designates 79.124.17.100 as permitted sender) client-ip=79.124.17.100; Authentication-Results: mx.google.com; dkim=neutral (body hash did not verify) header.i=@itanimul.li; dkim=neutral (body hash did not verify) header.i=@messagingengine.com; spf=pass (google.com: domain of ffmpeg-devel-bounces@ffmpeg.org designates 79.124.17.100 as permitted sender) smtp.mailfrom=ffmpeg-devel-bounces@ffmpeg.org Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id A1824689F4B; Sun, 18 Sep 2016 02:42:53 +0300 (EEST) X-Original-To: ffmpeg-devel@ffmpeg.org Delivered-To: ffmpeg-devel@ffmpeg.org Received: from out2-smtp.messagingengine.com (out2-smtp.messagingengine.com [66.111.4.26]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 8B1AC689C6E for ; Sun, 18 Sep 2016 02:42:47 +0300 (EEST) Received: from compute7.internal (compute7.nyi.internal [10.202.2.47]) by mailout.nyi.internal (Postfix) with ESMTP id ACE88205C4 for ; Sat, 17 Sep 2016 19:43:00 -0400 (EDT) Received: from frontend1 ([10.202.2.160]) by compute7.internal (MEProxy); Sat, 17 Sep 2016 19:43:00 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=itanimul.li; h= date:from:message-id:subject:to:x-sasl-enc:x-sasl-enc; s=mesmtp; bh=uPEB4f1j7yVhqvBbZG+Qm0ik4O8=; b=S7Ha7FiRuGRZ/rQfRbQefCtGXs+d 9i+bj0dohTS4iSJ2R3swF2QB+9vutPRacgAbIW21PfB4xkX0XJKhTYFODWAzl37q qmrUiOdIVv7hpeXP4kt/ONLz87R0qClNDpe8Wu1dkUsQ7YGFG1f6DEEuM/9u9bCP H12YnEf95vk2BmU= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=date:from:message-id:subject:to :x-sasl-enc:x-sasl-enc; s=smtpout; bh=uPEB4f1j7yVhqvBbZG+Qm0ik4O 8=; b=m1CA+gXj+w3eo3zbNFNH60VOocgRQhhU2cRTcv+DAKjU1fUaZ65L0bnKhh FC70zfwXjqq+nIQugdsW0O7uoqiZBZ49fpSjSfcg3CJEZngQ+YA68634CQZ3uA/I jYy517nwQZXg4b73+XwfR4H2OyObNecHcAwpV7wMnv2uFMpHE= X-Sasl-enc: HXW0CB3N7o1dyxHBPvk8Op15LuqOb1lcbP77y6ccr+6Y 1474155780 Received: from localhost (cpc75394-sotn16-2-0-cust168.15-1.cable.virginm.net [82.22.8.169]) by mail.messagingengine.com (Postfix) with ESMTPA id 3962CF2988 for ; Sat, 17 Sep 2016 19:43:00 -0400 (EDT) From: Josh de Kock To: ffmpeg-devel@ffmpeg.org Date: Sun, 18 Sep 2016 00:42:52 +0100 Message-Id: <20160917234252.54404-1-josh@itanimul.li> X-Mailer: git-send-email 2.8.4 (Apple Git-73) Subject: [FFmpeg-devel] [PATCH] Add CONTRIBUTING.md X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches MIME-Version: 1.0 Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" TimothyGu (https://github.com/FFmpeg/FFmpeg/pull/153#issuecomment-143274708) suggested doing this a while ago, but it was never done. As pull requests seem to be still coming through, I thought I'd send a patch to add the notice. Signed-off-by: Josh de Kock --- CONTRIBUTING.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..c2b79e4 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,4 @@ +# Note to Github users +Patches should be submitted to the [ffmpeg-devel mailing list](https://ffmpeg.org/mailman/listinfo/ffmpeg-devel) using `git format-patch` or `git send-email`. Github pull requests should be avoided because they are not part of our review process and **will be ignored**. + +See [https://ffmpeg.org/developer.html#Contributing](https://ffmpeg.org/developer.html#Contributing) for more information.