From patchwork Sun Sep 25 12:28:56 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Josh Dekker X-Patchwork-Id: 713 Delivered-To: ffmpegpatchwork@gmail.com Received: by 10.103.140.66 with SMTP id o63csp1437351vsd; Sun, 25 Sep 2016 05:29:11 -0700 (PDT) X-Received: by 10.28.216.211 with SMTP id p202mr9542186wmg.85.1474806551823; Sun, 25 Sep 2016 05:29:11 -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 b5si4350547wmh.38.2016.09.25.05.29.10; Sun, 25 Sep 2016 05:29:11 -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 E8B89689E09; Sun, 25 Sep 2016 15:28:51 +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 EF7DD689BEA for ; Sun, 25 Sep 2016 15:28:45 +0300 (EEST) Received: from compute7.internal (compute7.nyi.internal [10.202.2.47]) by mailout.nyi.internal (Postfix) with ESMTP id E181020597 for ; Sun, 25 Sep 2016 08:29:01 -0400 (EDT) Received: from frontend1 ([10.202.2.160]) by compute7.internal (MEProxy); Sun, 25 Sep 2016 08:29:01 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=itanimul.li; h= date:from:in-reply-to:message-id:references:subject:to :x-sasl-enc:x-sasl-enc; s=mesmtp; bh=3jwNzbPKoEeVqFVDiQ5emGDo0Jo =; b=rm/w+Kpf354i9lETxD5sdjtaXjJZfvZw3TtXD0G9qYEG8or/aXJVqvrlrzS nyQoWZLDH/i1WKtIEAuGAkecGm/HLVbL9kWPwQnbGUtbFark+bOREj1RMq5vusi6 9noTzRb3AueA3A1efH1evhBzBOUzXA2IawKB4bd8I7uSFqvI= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=date:from:in-reply-to:message-id :references:subject:to:x-sasl-enc:x-sasl-enc; s=smtpout; bh=3jwN zbPKoEeVqFVDiQ5emGDo0Jo=; b=VIe+TL9LljebcjuCoAUddpx8/6La3dM6bB+t e7MJ17qMSS+VD1QWMY5qsLsWMmQGfMa0O7bdz5tQqfo9lpuUwrsJVqNuIrsY4JA8 nItcHQO1IEAjEdAZf+4hi0suG8Pqa0cZAfsjWWVcOpoTb4I1HrON8zL4VDBPOQAD tT02Ga4= X-Sasl-enc: G+H54ND26ZUZRGIzDEe7gJpcYjb8wBLSbUMCv2Vz/Hl4 1474806541 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 6B451F29CC for ; Sun, 25 Sep 2016 08:29:01 -0400 (EDT) From: Josh de Kock To: ffmpeg-devel@ffmpeg.org Date: Sun, 25 Sep 2016 13:28:56 +0100 Message-Id: <20160925122856.952-1-josh@itanimul.li> X-Mailer: git-send-email 2.8.4 (Apple Git-73) In-Reply-To: <20160925120019.GA24554@kimiko.pkh.me> References: <20160925120019.GA24554@kimiko.pkh.me> Subject: [FFmpeg-devel] [PATCH] lavd/sdl2: add sdl alias 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" Signed-off-by: Josh de Kock --- The --enable-sdl2 option is not being renamed because it's a fairly big change and sdl2 is incompatible with sdl. libavdevice/sdl2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavdevice/sdl2.c b/libavdevice/sdl2.c index 217ccc0..5d9e91e 100644 --- a/libavdevice/sdl2.c +++ b/libavdevice/sdl2.c @@ -352,7 +352,7 @@ static const AVClass sdl2_class = { }; AVOutputFormat ff_sdl2_muxer = { - .name = "sdl2", + .name = "sdl,sdl2", .long_name = NULL_IF_CONFIG_SMALL("SDL2 output device"), .priv_data_size = sizeof(SDLContext), .audio_codec = AV_CODEC_ID_NONE,