mux_demux_api_fuzzer.cc: fix -Wshadow warning

`bool mux` -> `use_mux_api` to avoid conflicting with WebPMux variable.

Bug: webp:380121350
Change-Id: Ie3f8176efc296fae804c36ee0b27bf8e3034c6e8
This commit is contained in:
James Zern 2024-12-16 15:48:02 -08:00
parent 25e17c686f
commit a027aa93de

View File

@ -24,7 +24,7 @@
namespace { namespace {
void MuxDemuxApiTest(std::string_view data_in, bool mux) { void MuxDemuxApiTest(std::string_view data_in, bool use_mux_api) {
const size_t size = data_in.size(); const size_t size = data_in.size();
WebPData webp_data; WebPData webp_data;
WebPDataInit(&webp_data); WebPDataInit(&webp_data);
@ -34,7 +34,7 @@ void MuxDemuxApiTest(std::string_view data_in, bool mux) {
// Extracted chunks and frames are not processed or decoded, // Extracted chunks and frames are not processed or decoded,
// which is already covered extensively by the other fuzz targets. // which is already covered extensively by the other fuzz targets.
if (mux) { if (use_mux_api) {
// Mux API // Mux API
WebPMux* mux = WebPMuxCreate(&webp_data, size & 2); WebPMux* mux = WebPMuxCreate(&webp_data, size & 2);
if (!mux) return; if (!mux) return;