diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2024-12-03 15:05:51 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2024-12-03 15:05:51 +0100 |
commit | 2d79c8b23bdee866af53be9418c99b20419a397c (patch) | |
tree | 2aa2314bc55c928e111f0869c3f07aecf99d705f /src/Outputs.h | |
parent | 3f382a56da220fbd39fdeb9ce4212629036686cb (diff) | |
download | ODR-AudioEnc-2d79c8b23bdee866af53be9418c99b20419a397c.tar.gz ODR-AudioEnc-2d79c8b23bdee866af53be9418c99b20419a397c.tar.bz2 ODR-AudioEnc-2d79c8b23bdee866af53be9418c99b20419a397c.zip |
Add --edi-verbose option
Diffstat (limited to 'src/Outputs.h')
-rw-r--r-- | src/Outputs.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/Outputs.h b/src/Outputs.h index 20932d6..3987ca3 100644 --- a/src/Outputs.h +++ b/src/Outputs.h @@ -1,6 +1,6 @@ /* ------------------------------------------------------------------ * Copyright (C) 2011 Martin Storsjo - * Copyright (C) 2020 Matthias P. Braendli + * Copyright (C) 2024 Matthias P. Braendli * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -19,8 +19,6 @@ #pragma once #include <vector> -#include <chrono> -#include <deque> #include <cstdint> #include <cstddef> #include <cstdio> @@ -41,7 +39,6 @@ namespace Output { * * Declaration of all outputs */ - class Base { public: virtual ~Base() {}; @@ -133,6 +130,8 @@ class EDI: public Base { EDI& operator=(const EDI&) = delete; virtual ~EDI() override; + void set_verbose(bool verbose); + void set_odr_version_tag(const std::string& odr_version_tag); void add_udp_destination(const std::string& host, unsigned int port); |