| 6 | namespace Abyss::Streams { |
| 7 | |
| 8 | std::string VideoStream::avErrorCodeToString(const int avError) { |
| 9 | char str[2048] = {}; |
| 10 | |
| 11 | av_make_error_string(str, 2048, avError); |
| 12 | |
| 13 | return {std::string(str)}; |
| 14 | } |
| 15 | |
| 16 | int VideoStream::videoStreamRead(uint8_t *buffer, int size) { |
| 17 | if (!_isPlaying) |
nothing calls this directly
no outgoing calls
no test coverage detected