Skip to content

Commit

Permalink
Fix build with ffmpeg 6.0 (#8096)
Browse files Browse the repository at this point in the history
Signed-off-by: Zoltán Böszörményi <zboszor@gmail.com>
Co-authored-by: Nicolas Hug <nh.nicolas.hug@gmail.com>
  • Loading branch information
zboszor and NicolasHug authored Jan 15, 2024
1 parent 87f1521 commit a00a72b
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions torchvision/csrc/io/decoder/stream.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,8 @@ int Stream::openCodec(std::vector<DecoderMetadata>* 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;
}

int ret;
Expand Down

0 comments on commit a00a72b

Please sign in to comment.