Compare commits

...

1 Commits

Author SHA1 Message Date
crueter
3c47951ccc WIP: [ffmpeg] Enable multiframe decoding
Signed-off-by: crueter <swurl@swurl.xyz>
2025-06-16 01:00:39 -04:00

View File

@@ -187,7 +187,7 @@ DecoderContext::DecoderContext(const Decoder& decoder) : m_decoder{decoder} {
av_opt_set(m_codec_context->priv_data, "preset", "veryfast", 0);
av_opt_set(m_codec_context->priv_data, "tune", "zerolatency", 0);
m_codec_context->thread_count = 0;
m_codec_context->thread_type &= ~FF_THREAD_FRAME;
// m_codec_context->thread_type &= ~FF_THREAD_FRAME;
}
DecoderContext::~DecoderContext() {