mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-09-16 13:32:44 +00:00
57 lines
1.3 KiB
C++
57 lines
1.3 KiB
C++
#ifndef AVVIDEODECODER_HPP
|
|
#define AVVIDEODECODER_HPP
|
|
|
|
#include "Printer/BambuTunnel.h"
|
|
|
|
extern "C" {
|
|
#include <libavcodec/avcodec.h>
|
|
#include <libswscale/swscale.h>
|
|
}
|
|
#include <vector>
|
|
#include <wx/bitmap.h>
|
|
#include <wx/gdicmn.h>
|
|
#include <wx/image.h>
|
|
|
|
class wxBitmap;
|
|
|
|
class AVVideoDecoder
|
|
{
|
|
public:
|
|
AVVideoDecoder();
|
|
|
|
~AVVideoDecoder();
|
|
|
|
public:
|
|
int open(Bambu_StreamInfo const &info);
|
|
int open(AVCodecParameters const ¶meters);
|
|
|
|
int decode(Bambu_Sample const &sample);
|
|
int decode(AVPacket const &packet);
|
|
|
|
int flush();
|
|
|
|
void close();
|
|
|
|
bool toWxImage(wxImage &image, wxSize const &size);
|
|
|
|
bool toWxBitmap(wxBitmap &bitmap, wxSize const & size);
|
|
|
|
// Native size of the most recently decoded frame, or an unspecified size if
|
|
// nothing has decoded yet. Lets a caller learn the video dimensions when the
|
|
// container/probe could not report them up front.
|
|
wxSize decoded_frame_size() const
|
|
{
|
|
return got_frame_ && frame_ ? wxSize{frame_->width, frame_->height} : wxSize{};
|
|
}
|
|
|
|
private:
|
|
AVCodecContext *codec_ctx_ = nullptr;
|
|
AVFrame * frame_ = nullptr;
|
|
SwsContext * sws_ctx_ = nullptr;
|
|
bool got_frame_ = false;
|
|
int width_ { 0 }; // scale result width
|
|
std::vector<uint8_t> bits_;
|
|
};
|
|
|
|
#endif // AVVIDEODECODER_HPP
|