| 119 | } |
| 120 | |
| 121 | decoderFFmpeg::~decoderFFmpeg() |
| 122 | { |
| 123 | if (this->frame) |
| 124 | this->ff.freeFrame(this->frame); |
| 125 | if (this->raw_pkt) |
| 126 | this->ff.freePacket(this->raw_pkt); |
| 127 | } |
| 128 | |
| 129 | void decoderFFmpeg::resetDecoder() |
| 130 | { |
nothing calls this directly
no test coverage detected