MCPcopy Create free account
hub / github.com/IENT/YUView / decodeNextFrame

Method decodeNextFrame

YUViewLib/src/decoder/decoderLibde265.cpp:310–324  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

308}
309
310bool decoderLibde265::decodeNextFrame()
311{
312 if (this->decoderState != DecoderState::RetrieveFrames)
313 {
314 DEBUG_LIBDE265("decoderLibde265::decodeNextFrame: Wrong decoder state.");
315 return false;
316 }
317 if (this->decodedFrameWaiting)
318 {
319 this->decodedFrameWaiting = false;
320 return true;
321 }
322
323 return this->decodeFrame();
324}
325
326bool decoderLibde265::decodeFrame()
327{

Callers

nothing calls this directly

Calls 1

decodeFrameMethod · 0.95

Tested by

no test coverage detected