summaryrefslogtreecommitdiff
path: root/src/ipa/simple/ipa_context.h
diff options
context:
space:
mode:
authorMilan Zamazal <mzamazal@redhat.com>2024-11-28 13:52:22 +0100
committerKieran Bingham <kieran.bingham@ideasonboard.com>2024-12-06 12:34:48 +0000
commitd2234560f844ba37440e565bd3b4b0c8d8266d02 (patch)
treea625946d8ac4de2a516dace1de4a8c5fb4329590 /src/ipa/simple/ipa_context.h
parent737fb452fc3bb8a8513ddbf527f4836b9d32d2a5 (diff)
ipa: software_isp: Add constructor to the IPA context
Let's have a constructor that takes just the non-default argument, without the need to specify the defaults. Signed-off-by: Milan Zamazal <mzamazal@redhat.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'src/ipa/simple/ipa_context.h')
-rw-r--r--src/ipa/simple/ipa_context.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ipa/simple/ipa_context.h b/src/ipa/simple/ipa_context.h
index 2885a851..03cccd19 100644
--- a/src/ipa/simple/ipa_context.h
+++ b/src/ipa/simple/ipa_context.h
@@ -54,6 +54,11 @@ struct IPAFrameContext : public FrameContext {
};
struct IPAContext {
+ IPAContext(unsigned int frameContextSize)
+ : frameContexts(frameContextSize)
+ {
+ }
+
IPASessionConfiguration configuration;
IPAActiveState activeState;
FCQueue<IPAFrameContext> frameContexts;