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 0E5BB44589 for ; Fri, 16 Sep 2022 18:20:18 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id AC3BD68BC04; Fri, 16 Sep 2022 21:20:15 +0300 (EEST) Received: from mail-qk1-f173.google.com (mail-qk1-f173.google.com [209.85.222.173]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id C1A1668BAEB for ; Fri, 16 Sep 2022 21:20:09 +0300 (EEST) Received: by mail-qk1-f173.google.com with SMTP id o7so12663436qkj.10 for ; Fri, 16 Sep 2022 11:20:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:to:from:from:to:cc:subject:date; bh=gY1tUC5bNMiBnfabEpr0E+7Sbkl1uwkJZz8Xb922oe8=; b=nnsUWJNULQ6JzTWySxk+IGqA/psPEDV6nWRCEWkFLUJoGfX7aAGKn2OsrKjejykMZ3 DrvMiACkGXFKW5BhzImDnidlEi2GBaE2mLV9odK4uarI1y0NUCmQiGLAk9HNrGjNB29U zDF7xg4UAvIl6vZmUqlMjuWb7GbzDOfqrQ4s9p0RJZ7er1/FOfMph1YuWBi+zg1xkHBL nX9n+K5P/xxH1BwtMjA00/Y/ZdbyJ5YM0gt5GJVxf9VgF3ffLIjYLUoahbDEj6cgaqHh voOdAetNtuQbzh4M5zpuyMd0p1Ltf+x+zpQtUJmjN/XMlWAUiK+aYxecWMrfk2w/X/Gq +qDQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:to:from:x-gm-message-state:from:to:cc :subject:date; bh=gY1tUC5bNMiBnfabEpr0E+7Sbkl1uwkJZz8Xb922oe8=; b=qAt4mVEOmFHHSQWF+253SdrgpjV9lcLuFSWi0oMf4pkRUmfrYPjrlqx6PEL8f9Bxsw f/Rou0/Tc7Kmi28l+g+JoqDQdpSaELrcV0Ykqb/IV+8lx18Y2Bo8ByqmECO+uo0buUhc nWdVnsHC0eBdf+yfuk+aF1yXZYFYN0CtpWzrhbkJxixbbOcRz6R0gscXXfMxeQjnihDH 8J1/zwA8JXaQ+KtFHT4LvWmW0KBi849PzmdF1UByT24Bo5rBa8DQne9+caHUCJz1sX8F LUwf2ZO0JVe7D6GR2OKfDoVi5OvO34lkVVrILtoY0B0OXLT3Y4vj175aSnNw1e5d4UPF 9Lng== X-Gm-Message-State: ACrzQf3oNHesQl1zfY7FCm0e+2eVWNCkSity0p4+1ERm1O6Sa7uljz2v hcfjr2ITIaNrsZy+/ydlpBGqdlODKzQ= X-Google-Smtp-Source: AMsMyM5z96aaYfaQbohAuslYH6dE4iN2Sdqajah1s6gJ5eVUE3gfaT+kR2msXYXvmuM1Ge/rZP2n/g== X-Received: by 2002:a05:620a:4691:b0:6ce:5121:dac0 with SMTP id bq17-20020a05620a469100b006ce5121dac0mr4841006qkb.317.1663352407489; Fri, 16 Sep 2022 11:20:07 -0700 (PDT) Received: from scott-desktop.. (pool-71-114-80-52.washdc.fios.verizon.net. [71.114.80.52]) by smtp.gmail.com with ESMTPSA id l10-20020ac8724a000000b0035cb9531851sm5148098qtp.65.2022.09.16.11.20.06 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 16 Sep 2022 11:20:06 -0700 (PDT) From: Scott Theisen To: ffmpeg-devel@ffmpeg.org Date: Fri, 16 Sep 2022 14:19:54 -0400 Message-Id: <20220916182002.122699-1-scott.the.elm@gmail.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20220201212056.29712-1-scott.the.elm@gmail.com> References: <20220201212056.29712-1-scott.the.elm@gmail.com> MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH v4 0/8] rewrite avpriv_find_start_code() for clarity 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-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: My modified versions of avpriv_find_start_code were accepted into MythTV, which caused clang-tidy to raise a bugprone-branch-clone warning. The for loop's if statement has therefore been modified to not duplicate the branch payload. There are no other changes from v3. Regards, Scott Theisen _______________________________________________ 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".