| 48 | } |
| 49 | |
| 50 | std::string Abyss::Streams::AudioStream::AvErrorCodeToString(const int avError) { |
| 51 | char str[2048] = {}; |
| 52 | av_make_error_string(str, 2048, avError); |
| 53 | return {std::string(str)}; |
| 54 | } |
| 55 | |
| 56 | void Abyss::Streams::AudioStream::update() { |
| 57 | if (_avFormatContext == nullptr) |
nothing calls this directly
no outgoing calls
no test coverage detected