From patchwork Fri Oct 25 18:07:45 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andreas Rheinhardt X-Patchwork-Id: 15963 Return-Path: X-Original-To: patchwork@ffaux-bg.ffmpeg.org Delivered-To: patchwork@ffaux-bg.ffmpeg.org Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by ffaux.localdomain (Postfix) with ESMTP id A68DC447C60 for ; Fri, 25 Oct 2019 21:08:57 +0300 (EEST) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 8DF6568B4DF; Fri, 25 Oct 2019 21:08:57 +0300 (EEST) X-Original-To: ffmpeg-devel@ffmpeg.org Delivered-To: ffmpeg-devel@ffmpeg.org Received: from mail-wm1-f67.google.com (mail-wm1-f67.google.com [209.85.128.67]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 4469F68B4AC for ; Fri, 25 Oct 2019 21:08:53 +0300 (EEST) Received: by mail-wm1-f67.google.com with SMTP id g7so3119417wmk.4 for ; Fri, 25 Oct 2019 11:08:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=SfskSibw0r3j2eq9+FnIddWKr1prh+jGykhpvBQlO5I=; b=BZQFuxpj0rwIdF9G4rX4U5Iq1qrw8YDf68fi54t3WSIZtvs/Foh9ml3Fej9jOlyZzJ MyIA3lD8n/AHm12g5iSvJu+Qz0uZGZ92ozE+z4wnxYhpwJfMtIIyFHWB7ElRNk4BeBQp I1Ktn+JCaJGnw5MqMO1lFqHdXTI1+gSWtdFSP6AmGqTB6C6DQpJiV0nhv/i2uag7Lul4 YoCPaA7p2ov4i3WILoSVcfKlS29mlgN+HhMAWIicLOuMhuAB5yIfBUUchJQFGoc1NlNQ AsbykmRRTAMK5UklkfFF1oaubiOvlmkPpWCxc+6XQcYCBEh78WhDxPxOl5eAlzeQcntk HrRw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=SfskSibw0r3j2eq9+FnIddWKr1prh+jGykhpvBQlO5I=; b=jxydbkgFZ/qmbHooUYB6zWZd9m+LqMTumOACzdTCTHgs/bsIySPCzzPlt1Yg4lvTfd t+fwLDT6uwQjozzJBVlVN96vqYPC7YHfw/ZaVZozn9/sQTitYqT1jVdBJmCLNVw5+r+l S8DbmkaO1/WsbM+5PIwZOAuiTcj6Jbfu6AkzmQVoBhp0lE17UCEjyGUN0CxCZW0v8TUh Y8D/uoUZvdRObpaKswdlfXZY4xYFD74LU8HwVpr31t/Sn2w1xlg1A3feHNlqgrRX60Z/ rmldDpGJkdIeTwYalJWEHlUXn9LaQnwBuxgAi6uD9q9YOezRJ6hOAf4UApp1zE1WaJ92 G/2Q== X-Gm-Message-State: APjAAAV4EJ04VSFz05P2fz+R0MbF6+0B6QxOOTvDYyj0eU0A2Sr2g34f cEajpxPxkbybhjlCYlUEDQIHl998 X-Google-Smtp-Source: APXvYqz336dB/wpD49fjm3Onwgr3A8J9hoxpGK2y3cdrpxtZb5OtdrCIw4W3/a0nx5D/dyprulE1QQ== X-Received: by 2002:a7b:ce0c:: with SMTP id m12mr4759071wmc.38.1572026932638; Fri, 25 Oct 2019 11:08:52 -0700 (PDT) Received: from sblaptop.fritz.box (ipbcc08937.dynamic.kabel-deutschland.de. [188.192.137.55]) by smtp.gmail.com with ESMTPSA id a17sm3743747wrx.84.2019.10.25.11.08.51 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 25 Oct 2019 11:08:52 -0700 (PDT) From: Andreas Rheinhardt To: ffmpeg-devel@ffmpeg.org Date: Fri, 25 Oct 2019 20:07:45 +0200 Message-Id: <20191025180746.13725-13-andreas.rheinhardt@gmail.com> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20191025180746.13725-1-andreas.rheinhardt@gmail.com> References: <20191025180746.13725-1-andreas.rheinhardt@gmail.com> MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH 13/14] iavformat/apetag: Remove superfluous header 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 Cc: Andreas Rheinhardt Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" When the APE tag parsing code was moved into its own file in 191e34cd, intreadwrite.h was included despite not being used for parsing APE tags. Signed-off-by: Andreas Rheinhardt --- libavformat/apetag.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libavformat/apetag.c b/libavformat/apetag.c index 8cb3f4a23a..9fb12b9826 100644 --- a/libavformat/apetag.c +++ b/libavformat/apetag.c @@ -22,7 +22,6 @@ #include -#include "libavutil/intreadwrite.h" #include "libavutil/dict.h" #include "avformat.h" #include "avio_internal.h"