summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2022-08-29 01:01:43 +0000
committerMoonchild <moonchild@palemoon.org>2022-08-29 01:01:43 +0000
commit51204afc90d5dd0a66088eb3249ba9e01d3f521d (patch)
treec8546686108c3d74a6683264b4e40e3b625ab3da
parent6d0df6d506c0c8597225449d0a44f55f6bf08985 (diff)
downloaduxp-51204afc90d5dd0a66088eb3249ba9e01d3f521d.tar.gz
Issue #1956 - Fix C++ code standard conformance issue in webaudio
-rw-r--r--dom/media/webaudio/blink/DynamicsCompressor.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/dom/media/webaudio/blink/DynamicsCompressor.h b/dom/media/webaudio/blink/DynamicsCompressor.h
index f460836b49..24f4fc7f71 100644
--- a/dom/media/webaudio/blink/DynamicsCompressor.h
+++ b/dom/media/webaudio/blink/DynamicsCompressor.h
@@ -1,5 +1,6 @@
/*
- * Copyright (C) 2011 Google Inc. All rights reserved.
+ * Copyright (C) 2011 Google Inc.
+ * Copyright (C) 2022 Moonchild Productions.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -104,7 +105,7 @@ protected:
float m_lastAnchor;
float m_lastFilterStageGain;
- typedef struct {
+ typedef struct ZeroPoleFilterPack4 {
ZeroPole filters[4];
size_t sizeOfIncludingThis(mozilla::MallocSizeOf aMallocSizeOf) const
{