From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTP id 57F3B40B6B for ; Fri, 4 Feb 2022 19:05:29 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id D5BA768B28A; Fri, 4 Feb 2022 21:05:27 +0200 (EET) Received: from mail-qv1-f51.google.com (mail-qv1-f51.google.com [209.85.219.51]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id A752968B0E6 for ; Fri, 4 Feb 2022 21:05:21 +0200 (EET) Received: by mail-qv1-f51.google.com with SMTP id i19so6062950qvx.12 for ; Fri, 04 Feb 2022 11:05:21 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=message-id:date:mime-version:user-agent:subject:content-language:to :references:from:in-reply-to:content-transfer-encoding; bh=rwSGBrUris5dymVYBmwotVERUvz4Lwp85fWoUZrY3AM=; b=Q9X7Gyj1haDtGnauEu7SRa/g5L6rxG+NxtoP7Unpol1ODWHGtWLo1urPe0WYUc5xXe Yyxl5oPbDbBvBBugVf/eluCXPLotve9iUCiGzMYW59Bx5RYUZV6xG4Ayg3LUnslqhsB/ akyvTQTkmZ5sZ6UEkcmDA1g6CLIuEudpYD5ews6Jz7rmSAUHDmbbgbdXAa7Uu/QV3bTG GgERYOengUHhAnHSRbxy/xZ6+snEqor5NozUnf3jcGBQvMNJ6A9yqgSYx9cOfyp7i5AF Z16SsoNuZsz3x9B83v/qT6IncNpdu6a+kK42MbgFGevTssCvbg2O7Dh9SSatjQ5r/H+o RGKw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:message-id:date:mime-version:user-agent:subject :content-language:to:references:from:in-reply-to :content-transfer-encoding; bh=rwSGBrUris5dymVYBmwotVERUvz4Lwp85fWoUZrY3AM=; b=fdAR5aNlmmVE5OJWb3NliRTYY8EqrNWXdbmAdwMuoFchqTdEkA8vjQnS48OWG2uZmB WlmAg7Z59DnBSATMMlT6VpFpPuYUEs1u6XsXNIsWWGWaEFlo3T/aMrVUp+QN9NejR+B6 IXYqeGHpCi2fKKjg6/Zeptuw1bJfk1k6ZEgRnJVyF/UYcnFKi1gVUVwiSEoWqjWKcqIJ r0n59vf/PYxh/BnoLzQzXykB2U+PAlZu9aI9Cpj/KBnGXgDNrjLFbtc4b91042+yHNzR /dshWpLPqYm2jxAQWm/btA14hG6p+Da+g4NRI5d2h2XbmnE5/haOl1l19CmNmuvXM89i hgHA== X-Gm-Message-State: AOAM531LA7K1+MTCtjXn08HEe71jRKUU6mBaYEZWFIp2fWTjX1JiSmZ+ hFReQVieVq97a0KAcslZxc+3lAVjSD12YQ== X-Google-Smtp-Source: ABdhPJzDmAa9f+zYthUD0JVmcB5C3R0qzq7n58gxT2rDDd/jEz5LewZ9/7JmkC5ul3KT72UnAtvhhA== X-Received: by 2002:a05:6214:2aad:: with SMTP id js13mr2999190qvb.82.1644001519789; Fri, 04 Feb 2022 11:05:19 -0800 (PST) Received: from [192.168.1.64] ([151.200.235.219]) by smtp.gmail.com with ESMTPSA id g20sm1577736qko.27.2022.02.04.11.05.19 for (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Fri, 04 Feb 2022 11:05:19 -0800 (PST) Message-ID: <1bc94f6b-9d13-4773-944d-940ebd3f29e5@gmail.com> Date: Fri, 4 Feb 2022 14:05:18 -0500 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.5.0 Content-Language: en-US To: ffmpeg-devel@ffmpeg.org References: From: Scott Theisen In-Reply-To: Subject: Re: [FFmpeg-devel] [PATCH 6/7] avcodec/internal.h: Move avpriv_find_start_code() to startcode.h X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 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 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="us-ascii"; Format="flowed" Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: On 2/4/22 10:16, Andreas Rheinhardt wrote: > This is by definition the appropriate place for it. > Remove all the now unnecessary libavcodec/internal.h inclusions; > also remove other unnecessary headers from the affected files. > > Signed-off-by: Andreas Rheinhardt > --- > > diff --git a/libavcodec/utils.c b/libavcodec/utils.c > index b19befef21..c7c7323351 100644 > --- a/libavcodec/utils.c > +++ b/libavcodec/utils.c > @@ -27,7 +27,6 @@ > > #include "config.h" > #include "libavutil/avassert.h" > -#include "libavutil/avstring.h" > #include "libavutil/channel_layout.h" > #include "libavutil/intreadwrite.h" > #include "libavutil/mem.h" > @@ -40,12 +39,9 @@ > #include "thread.h" > #include "internal.h" > #include "put_bits.h" > -#include "raw.h" > +#include "startcode.h" > #include > -#include > -#include > #include > -#include > > void av_fast_padded_malloc(void *ptr, unsigned int *size, size_t min_size) > { Shouldn't you also move the definition to startcode.c as well? Then utils.c doesn't need startcode.h. _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".