From patchwork Fri Oct 25 18:07:42 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andreas Rheinhardt X-Patchwork-Id: 15967 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 2BB85447C60 for ; Fri, 25 Oct 2019 21:09:00 +0300 (EEST) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 12A1268B4D5; Fri, 25 Oct 2019 21:09:00 +0300 (EEST) X-Original-To: ffmpeg-devel@ffmpeg.org Delivered-To: ffmpeg-devel@ffmpeg.org Received: from mail-wm1-f66.google.com (mail-wm1-f66.google.com [209.85.128.66]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id B308968B47D for ; Fri, 25 Oct 2019 21:08:50 +0300 (EEST) Received: by mail-wm1-f66.google.com with SMTP id r141so2909631wme.4 for ; Fri, 25 Oct 2019 11:08:50 -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=hG72AJMNhgfelCuKwce2Y8VvpwUUQcg2pGlg47zhF50=; b=GxYKzHqVRGqihDt88Eeq3OOFW9RnY3TWJJ1U7GhlfP3rs3ov9oAOJhcTDizananIhe XWN+qWVt2xZ0/GT6EuEyyywmBKgfzL0sn49mli/GGmcd5nlTe46peBOahedyWQQoeAgx rB4KUKSDe25rAX0se5jLZcxE8ELp23mglmb3VCDVqLZArZPBR0WZb/3Wkdm4A33kS9dc TCc+ZqdJ55+jSw4ML80YvwkSM7iYK+1hSbHwrIIfKo6Rlm3yrOZkjq0TIZOvTRilQFe/ gdmZ50g8uTh9YLSu0hiNLwsxChEmufNO/zQqSniixmBFB3KADAq4dZVquYNMIrCFQ96k eAZA== 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=hG72AJMNhgfelCuKwce2Y8VvpwUUQcg2pGlg47zhF50=; b=s7TcxlgJFn3DDpX1lLG3E+uKqh8SI92N6c9Q1w/rX4qLYV4MZfiVcmbmx9UFZMLr5Z 5ZXDhcBUVsfYOA9txju5b/pBE4id9og7dYR4f2nxnvU81P1Goo/KUvwa1IGgTPFlSNvv kWo7VlHKeN4+Pr4E8X7rlAKFHxkJ9fV6JWAT2up9b/AJDg/RnV6pRRPa8D8Vk4nWZ/kR FsUP0mspNNUAxekbmIy9z4ZI/hozAigvcACZFury4ed5CSR1X1mgB4C2eo+TUrw7x+TR F5w61myWnIpF83XqzAbWaDO6jV4thONZnC2P8Eyk2HNlCpqR533Fb+Yyai4s9aRLENJZ JJrg== X-Gm-Message-State: APjAAAVIwkNF0Hx9qUa+sMzcTzoE3ajykx0RHAF7E3Q5rV7FsuKyulfA hdCMsJhcW0btfFX7X+lOzQHA3qMo X-Google-Smtp-Source: APXvYqyF5PaRA2cgyTt3fwFYvluzxGXZWKi2fMFMczMYvzfd5mp2t0J7+8j85QU0s25DSuSILOtScw== X-Received: by 2002:a7b:c924:: with SMTP id h4mr4833729wml.46.1572026930168; Fri, 25 Oct 2019 11:08:50 -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.49 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 25 Oct 2019 11:08:49 -0700 (PDT) From: Andreas Rheinhardt To: ffmpeg-devel@ffmpeg.org Date: Fri, 25 Oct 2019 20:07:42 +0200 Message-Id: <20191025180746.13725-10-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 10/14] avformat/dvenc: 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" 75af0e6a added opt.h to dvenc.c for an option; 6b35f1a2 removed said option, yet forgot to remove the header as well. Signed-off-by: Andreas Rheinhardt --- libavformat/dvenc.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libavformat/dvenc.c b/libavformat/dvenc.c index 93c103b316..8eb58cf43a 100644 --- a/libavformat/dvenc.c +++ b/libavformat/dvenc.c @@ -39,7 +39,6 @@ #include "libavutil/fifo.h" #include "libavutil/mathematics.h" #include "libavutil/intreadwrite.h" -#include "libavutil/opt.h" #include "libavutil/timecode.h" #define MAX_AUDIO_FRAME_SIZE 192000 // 1 second of 48khz 32-bit audio