MCPcopy Create free account
hub / github.com/AbyssEngine/AbyssEngineOld / avErrorCodeToString

Method avErrorCodeToString

src/Abyss/Streams/VideoStream.cpp:8–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6namespace Abyss::Streams {
7
8std::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
16int VideoStream::videoStreamRead(uint8_t *buffer, int size) {
17 if (!_isPlaying)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected