From patchwork Mon May 1 08:37:51 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Carl Eugen Hoyos X-Patchwork-Id: 3532 Delivered-To: ffmpegpatchwork@gmail.com Received: by 10.103.3.129 with SMTP id 123csp1316529vsd; Mon, 1 May 2017 01:38:08 -0700 (PDT) X-Received: by 10.28.182.69 with SMTP id g66mr34067wmf.112.1493627887949; Mon, 01 May 2017 01:38:07 -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 j125si8706887wmj.50.2017.05.01.01.38.07; Mon, 01 May 2017 01:38:07 -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; 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 91506688392; Mon, 1 May 2017 11:38:01 +0300 (EEST) X-Original-To: ffmpeg-devel@ffmpeg.org Delivered-To: ffmpeg-devel@ffmpeg.org Received: from vie01a-qmta-pe01-3.mx.upcmail.net (vie01a-qmta-pe01-3.mx.upcmail.net [62.179.121.180]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 185576805A0 for ; Mon, 1 May 2017 11:37:55 +0300 (EEST) Received: from [172.31.218.38] (helo=vie01a-dmta-pe03-2.mx.upcmail.net) by vie01a-pqmta-pe01.mx.upcmail.net with esmtp (Exim 4.88) (envelope-from ) id 1d56qE-0006US-6L for ffmpeg-devel@ffmpeg.org; Mon, 01 May 2017 10:37:58 +0200 Received: from [172.31.216.43] (helo=vie01a-pemc-psmtp-pe01) by vie01a-dmta-pe03.mx.upcmail.net with esmtp (Exim 4.88) (envelope-from ) id 1d56q8-0005Sh-BQ for ffmpeg-devel@ffmpeg.org; Mon, 01 May 2017 10:37:52 +0200 Received: from [192.168.1.3] ([80.110.80.139]) by vie01a-pemc-psmtp-pe01 with SMTP @ mailcloud.upcmail.net id Ewdr1v00E30Lr9401wds3t; Mon, 01 May 2017 10:37:52 +0200 X-SourceIP: 80.110.80.139 From: Carl Eugen Hoyos To: FFmpeg development discussions and patches Date: Mon, 1 May 2017 10:37:51 +0200 User-Agent: KMail/1.9.10 MIME-Version: 1.0 Message-Id: <201705011037.51188.cehoyos@ag.or.at> Subject: [FFmpeg-devel] [PATCH]lavc/mips/iirfilter_mips: Include config.h 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 Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Hi! Attached patch fixes a warning when compiling for mips, I suspect it also fixes usage of inline asm. Please comment, Carl Eugen From bbb8a20926b679d05af3b668a2822e6e1a97efa7 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Mon, 1 May 2017 10:35:28 +0200 Subject: [PATCH] lavc/mips/iirfilter_mips: Include config.h. Fixes the following warning: libavcodec/mips/iirfilter_mips.c:57:5: warning: "HAVE_INLINE_ASM" is not defined --- libavcodec/mips/iirfilter_mips.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavcodec/mips/iirfilter_mips.c b/libavcodec/mips/iirfilter_mips.c index 74f036f..3a1352a 100644 --- a/libavcodec/mips/iirfilter_mips.c +++ b/libavcodec/mips/iirfilter_mips.c @@ -52,6 +52,7 @@ * Reference: libavcodec/iirfilter.c */ +#include "config.h" #include "libavcodec/iirfilter.h" #if HAVE_INLINE_ASM