From patchwork Fri Mar 20 15:53:32 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zane van Iperen X-Patchwork-Id: 18309 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 0616744B05D for ; Fri, 20 Mar 2020 17:53:52 +0200 (EET) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id D626668B5F3; Fri, 20 Mar 2020 17:53:51 +0200 (EET) X-Original-To: ffmpeg-devel@ffmpeg.org Delivered-To: ffmpeg-devel@ffmpeg.org Received: from mail1.protonmail.ch (mail1.protonmail.ch [185.70.40.18]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id D4B4768B5F3 for ; Fri, 20 Mar 2020 17:53:44 +0200 (EET) Date: Fri, 20 Mar 2020 15:53:32 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=zanevaniperen.com; s=protonmail; t=1584719624; bh=h1TkZE6oaXbA30Z387VIIGO3CHD0xLz8KgeXiTForh4=; h=Date:To:From:Cc:Reply-To:Subject:From; b=T9jgKKZK6dxcxlxgJS5HVtEwtn+5fM7TrLdatTKEHAwm6Kiof+KeAfzsFJtC88WrD 4XETCymhgGLxPekz+i+5c8wZ4EE4N0Evebby+qTcRkSdDVNBVkNDtusd+8LOOar00m hMExt36CFurggQjXxdbb4OrxyXRWvOEZNEfqEjtY= To: ffmpeg-devel@ffmpeg.org From: Zane van Iperen Message-ID: <20200320155322.17777-1-zane@zanevaniperen.com> MIME-Version: 1.0 X-Spam-Status: No, score=-1.2 required=7.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF shortcircuit=no autolearn=disabled version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on mail.protonmail.ch Subject: [FFmpeg-devel] [PATCH] avformat/argo_asf: add missing #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 Cc: Zane van Iperen Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Fixes the use of the implicit declaration of avpriv_request_sample(). Signed-off-by: Zane van Iperen --- libavformat/argo_asf.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavformat/argo_asf.c b/libavformat/argo_asf.c index 3339425244..cf1c7472c1 100644 --- a/libavformat/argo_asf.c +++ b/libavformat/argo_asf.c @@ -23,6 +23,7 @@ #include "internal.h" #include "libavutil/intreadwrite.h" #include "libavutil/avassert.h" +#include "libavutil/internal.h" #define ASF_TAG MKTAG('A', 'S', 'F', '\0') #define ASF_FILE_HEADER_SIZE 24