The recent change in the manpage, which was to my liking, introduces --stream=1,2 syntax. This should be implemented regardless of #4 to have something working.
Rather than making StreamTagsHandler more complex by adding std::vector<int> relevant_stream_numbers to its constructor, I'd like to add multiple TagsHandlers, each responsible for a single stream, during option parsing.
The recent change in the manpage, which was to my liking, introduces
--stream=1,2
syntax. This should be implemented regardless of #4 to have something working.Rather than making
StreamTagsHandler
more complex by addingstd::vector<int> relevant_stream_numbers
to its constructor, I'd like to add multipleTagsHandlers
, each responsible for a single stream, during option parsing.