| 308 | } |
| 309 | |
| 310 | bool 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 | |
| 326 | bool decoderLibde265::decodeFrame() |
| 327 | { |
nothing calls this directly
no test coverage detected