diff --git a/torchvision/csrc/cpu/decoder/stream.cpp b/torchvision/csrc/cpu/decoder/stream.cpp index 4f672697a25..d9465ceeb16 100644 --- a/torchvision/csrc/cpu/decoder/stream.cpp +++ b/torchvision/csrc/cpu/decoder/stream.cpp @@ -62,15 +62,8 @@ int Stream::openCodec(std::vector* metadata, int num_threads) { codecCtx_->thread_count = num_threads; } else { // otherwise set sensible defaults - // with the special case for the different MPEG4 codecs - // that don't have threading context functions - if (codecCtx_->codec->capabilities & AV_CODEC_CAP_INTRA_ONLY) { - codecCtx_->thread_type = FF_THREAD_FRAME; - codecCtx_->thread_count = 2; - } else { - codecCtx_->thread_count = 8; - codecCtx_->thread_type = FF_THREAD_SLICE; - } + codecCtx_->thread_count = 8; + codecCtx_->thread_type = FF_THREAD_SLICE; } // print codec type and number of threads