MCPcopy Create free account
hub / github.com/dirkvdb/ffmpegthumbnailer / MovieDecoder

Method MovieDecoder

libffmpegthumbnailer/moviedecoder.cpp:41–56  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

39namespace ffmpegthumbnailer {
40
41MovieDecoder::MovieDecoder(AVFormatContext* pavContext)
42: m_VideoStream(-1)
43, m_pFormatContext(pavContext)
44, m_pVideoCodecContext(nullptr)
45, m_pVideoCodec(nullptr)
46, m_pFilterGraph(nullptr)
47, m_pFilterSource(nullptr)
48, m_pFilterSink(nullptr)
49, m_pVideoStream(nullptr)
50, m_pFrame(nullptr)
51, m_pPacket(nullptr)
52, m_FormatContextWasGiven(pavContext != nullptr)
53, m_AllowSeek(true)
54, m_UseEmbeddedData(false)
55{
56}
57
58MovieDecoder::~MovieDecoder()
59{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected