summaryrefslogtreecommitdiffstats
path: root/src/VLCInput.h
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2022-09-06 13:48:40 +0200
committerMatthias P. Braendli <matthias.braendli@mpb.li>2022-09-06 13:48:40 +0200
commitf828749c289bad5978ff3e7a8100c9a5c65b8970 (patch)
treef4c1ab0c788f940b0422dabb5b95d535de299837 /src/VLCInput.h
parent7544d1eca9f33f450d2bf3e36b9df298cd7c23d9 (diff)
downloadODR-AudioEnc-f828749c289bad5978ff3e7a8100c9a5c65b8970.tar.gz
ODR-AudioEnc-f828749c289bad5978ff3e7a8100c9a5c65b8970.tar.bz2
ODR-AudioEnc-f828749c289bad5978ff3e7a8100c9a5c65b8970.zip
Replace libvlc compressor gain by internal gain calculation
Diffstat (limited to 'src/VLCInput.h')
-rw-r--r--src/VLCInput.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/VLCInput.h b/src/VLCInput.h
index 47a9cdd..ed1a682 100644
--- a/src/VLCInput.h
+++ b/src/VLCInput.h
@@ -1,5 +1,5 @@
/* ------------------------------------------------------------------
- * Copyright (C) 2017 Matthias P. Braendli
+ * Copyright (C) 2022 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.
@@ -54,7 +54,6 @@ class VLCInput : public InputInterface
int rate,
unsigned channels,
unsigned verbosity,
- std::string& gain,
std::string& cache,
std::vector<std::string>& additional_opts,
SampleQueue<uint8_t>& queue) :
@@ -64,7 +63,6 @@ class VLCInput : public InputInterface
m_rate(rate),
m_cache(cache),
m_additional_opts(additional_opts),
- m_gain(gain),
m_vlc(nullptr),
m_mp(nullptr),
m_fault(false),
@@ -136,11 +134,6 @@ class VLCInput : public InputInterface
//! Given as-is to libvlc, useful for additional arguments
std::vector<std::string> m_additional_opts;
- /*! value for the VLC compressor filter --compressor-makeup
- * setting. Many more compressor settings could be set.
- */
- std::string m_gain;
-
/*! VLC can give us the ICY-Text from an Icecast stream,
* which we optionally write into a text file for ODR-PadEnc
*/