From patchwork Fri Mar 31 05:32:55 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: shivraj.patil@imgtec.com X-Patchwork-Id: 3214 Delivered-To: ffmpegpatchwork@gmail.com Received: by 10.103.44.195 with SMTP id s186csp1883856vss; Thu, 30 Mar 2017 22:33:11 -0700 (PDT) X-Received: by 10.223.150.168 with SMTP id u37mr1058617wrb.184.1490938390962; Thu, 30 Mar 2017 22:33: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 l5si1826067wma.162.2017.03.30.22.33.10; Thu, 30 Mar 2017 22:33: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; 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 0572B688372; Fri, 31 Mar 2017 08:33:07 +0300 (EEST) X-Original-To: ffmpeg-devel@ffmpeg.org Delivered-To: ffmpeg-devel@ffmpeg.org Received: from mailapp01.imgtec.com (mailapp01.imgtec.com [195.59.15.196]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 1DAD168832A for ; Fri, 31 Mar 2017 08:33:00 +0300 (EEST) Received: from hhmail02.hh.imgtec.org (unknown [10.100.10.20]) by Forcepoint Email with ESMTPS id 0966E38D0AD02; Fri, 31 Mar 2017 06:32:57 +0100 (IST) Received: from HHMAIL-X.hh.imgtec.org (10.100.10.113) by hhmail02.hh.imgtec.org (10.100.10.20) with Microsoft SMTP Server (TLS) id 14.3.294.0; Fri, 31 Mar 2017 06:32:59 +0100 Received: from PUMAIL01.pu.imgtec.org (192.168.91.250) by HHMAIL-X.hh.imgtec.org (10.100.10.113) with Microsoft SMTP Server (TLS) id 14.3.294.0; Fri, 31 Mar 2017 06:32:59 +0100 Received: from PUMAIL01.pu.imgtec.org ([::1]) by PUMAIL01.pu.imgtec.org ([::1]) with mapi id 14.03.0266.001; Fri, 31 Mar 2017 11:02:56 +0530 From: Shivraj Patil To: "Ronald S. Bultje" , "FFmpeg development discussions and patches" Thread-Topic: [FFmpeg-devel] [PATCH] Build fix for MIPS Thread-Index: AQHSqR1VeegvOZBaJ0m+vWNS/X2WCqGs6k0AgAGD4rA= Date: Fri, 31 Mar 2017 05:32:55 +0000 Message-ID: References: <1490854903-30898-1-git-send-email-shivraj.patil@imgtec.com> In-Reply-To: Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [192.168.93.59] MIME-Version: 1.0 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 Subject: Re: [FFmpeg-devel] [PATCH] Build fix for MIPS 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, On Thu, Mar 30, 2017 at 2:21 AM, > wrote: From: Shivraj Patil > Signed-off-by: Shivraj Patil > --- libavcodec/mips/hevcpred_mips.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Shivraj:- No definition of “HEVCContext” in file hevcpred.h. Hence observed error following error ./libavcodec/mips/hevcpred_mips.h:70:32: error: unknown type name HEVCContext void ff_intra_pred_8_16x16_msa(HEVCContext *s, int x0, int y0, int c_idx); Ronald diff --git a/libavcodec/mips/hevcpred_mips.h b/libavcodec/mips/hevcpred_mips.h index 12f57a2..fcd687b 100644 --- a/libavcodec/mips/hevcpred_mips.h +++ b/libavcodec/mips/hevcpred_mips.h @@ -21,7 +21,7 @@ #ifndef AVCODEC_MIPS_HEVCPRED_MIPS_H #define AVCODEC_MIPS_HEVCPRED_MIPS_H -#include "libavcodec/hevcdsp.h" +#include "libavcodec/hevcdec.h" Shouldn't this be hevcpred.h?