| 127 | } |
| 128 | |
| 129 | void decoderFFmpeg::resetDecoder() |
| 130 | { |
| 131 | if (this->decoderState == DecoderState::Error) |
| 132 | return; |
| 133 | |
| 134 | DEBUG_FFMPEG("decoderFFmpeg::resetDecoder"); |
| 135 | this->ff.flush_buffers(this->decCtx); |
| 136 | this->flushing = false; |
| 137 | decoderBase::resetDecoder(); |
| 138 | } |
| 139 | |
| 140 | bool decoderFFmpeg::decodeNextFrame() |
| 141 | { |
nothing calls this directly
no test coverage detected