From patchwork Fri Jul 29 01:10:08 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Josh Dekker X-Patchwork-Id: 24 Delivered-To: ffmpegpatchwork@gmail.com Received: by 10.103.140.67 with SMTP id o64csp1079050vsd; Thu, 28 Jul 2016 18:10:56 -0700 (PDT) X-Received: by 10.28.155.212 with SMTP id d203mr41428286wme.103.1469754656719; Thu, 28 Jul 2016 18:10:56 -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 v207si722783wmv.86.2016.07.28.18.10.56; Thu, 28 Jul 2016 18:10:56 -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 88E0868A16A; Fri, 29 Jul 2016 04:10:36 +0300 (EEST) X-Original-To: ffmpeg-devel@ffmpeg.org Delivered-To: ffmpeg-devel@ffmpeg.org Received: from out5-smtp.messagingengine.com (out5-smtp.messagingengine.com [66.111.4.29]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 7D04368A166 for ; Fri, 29 Jul 2016 04:10:18 +0300 (EEST) Received: from compute7.internal (compute7.nyi.internal [10.202.2.47]) by mailout.nyi.internal (Postfix) with ESMTP id 6C56B205B2 for ; Thu, 28 Jul 2016 21:10:21 -0400 (EDT) Received: from frontend1 ([10.202.2.160]) by compute7.internal (MEProxy); Thu, 28 Jul 2016 21:10:21 -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=xjPQ4Eg/TsMipSulPafL/OSdvm4=; b=eey9O5tvvLRQE3cNmzB+TjRh/a+B Qt4p3KniQv6aAQBVy/46pem5ukPIx7V9V8PvMTcboyXIaQ3Gn22meRJvcobQJffO mfaQ6waeuP9KaBxq/oN23ra2r1ClT/mFtWyMlg+w97zd7m2+6le8pSbQBZCHvpVG 0DPDXu0aW9l/Ydg= 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=xjPQ4Eg/TsMipSulPafL/OSdvm 4=; b=I0srQB7w5ElNZqA0H+aQTpjnbqCNwVP6QVHpMcVvPzB94+zsD+NcXgnFcm VD6BeMAXyBjOIM5DjJ4abWTdLQQIs9vTc2P2ooTtwcltWH8Dot7iUxLHWn/0Nkf5 Ei7vrm8yFPHTuJy92xjJo+tUOY3+APknllIEL5SAQMbDH+yxM= X-Sasl-enc: I93J5TK+A5K+VFOOINf0NP4578DlGzjd7Qw5sSAs2WWJ 1469754621 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 16286F29F5 for ; Thu, 28 Jul 2016 21:10:20 -0400 (EDT) From: Josh de Kock To: ffmpeg-devel@ffmpeg.org Date: Fri, 29 Jul 2016 02:10:08 +0100 Message-Id: <1469754608-85489-1-git-send-email-josh@itanimul.li> X-Mailer: git-send-email 2.7.4 (Apple Git-66) Subject: [FFmpeg-devel] [PATCH] hapdec: remove unused memory.h include 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" Most systems have this, so it isn't really a problem to include it even if it's not used, but some do not have memory.h as it is non-standard. Since it's unused just remove it anyway. --- libavcodec/hapdec.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libavcodec/hapdec.c b/libavcodec/hapdec.c index 5a399dc..f1d44cd 100644 --- a/libavcodec/hapdec.c +++ b/libavcodec/hapdec.c @@ -37,7 +37,6 @@ #include "bytestream.h" #include "hap.h" #include "internal.h" -#include "memory.h" #include "snappy.h" #include "texturedsp.h" #include "thread.h"