Add experimental entropy field to stats response

This commit is contained in:
Lovell Fuller
2018-08-06 15:41:27 +01:00
parent 532de4ecab
commit 25bd2cea3e
5 changed files with 32 additions and 9 deletions

View File

@@ -51,12 +51,14 @@ struct StatsBaton {
// Output
std::vector<ChannelStats> channelStats;
bool isOpaque;
double entropy;
std::string err;
StatsBaton():
input(nullptr),
isOpaque(true)
isOpaque(true),
entropy(0.0)
{}
};