| 91 | }; |
| 92 | |
| 93 | AvFFmpegDecoder::AvFFmpegDecoder(QObject* parent) |
| 94 | :QThread(parent), |
| 95 | pAvdictionary(nullptr), |
| 96 | pAVFormatContext(nullptr), |
| 97 | pSwsContext(nullptr), |
| 98 | pAVFrame(nullptr), |
| 99 | pAVPacket(nullptr), |
| 100 | pAVCodecContext(nullptr) |
| 101 | { |
| 102 | //av_log_set_level(AV_LOG_FATAL); |
| 103 | } |
| 104 | |
| 105 | AvFFmpegDecoder::~AvFFmpegDecoder() |
| 106 | { |
nothing calls this directly
no outgoing calls
no test coverage detected