Skip to content

Commit

Permalink
Fix ffmpeg feature flag
Browse files Browse the repository at this point in the history
  • Loading branch information
emilk committed Oct 10, 2024
1 parent b2b842b commit 26f4834
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
3 changes: 3 additions & 0 deletions crates/store/re_video/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ features = ["all"]
[features]
default = ["av1", "ffmpeg"]

## Native AV1 decoding.
av1 = ["dep:dav1d"]

## Decode H.264 using ffmpeg over CLI.
ffmpeg = ["dep:ffmpeg-sidecar"]

Expand Down
7 changes: 0 additions & 7 deletions crates/viewer/re_renderer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,6 @@ default = ["import-obj", "import-gltf", "import-stl"]
## Support for Arrow datatypes for end-to-end zero-copy.
arrow = ["dep:arrow2"]

<<<<<<< HEAD
=======
## Support for native AV1 video decoding.
## You need to install [nasm](https://nasm.us/) to compile with this feature.
video_av1 = ["re_video/av1"] # TODO: remove

>>>>>>> 4ced5f84a4 (Actual H.264 video playback inside of Rerun viewer)
## Support importing .obj files
import-obj = ["dep:tobj"]

Expand Down

0 comments on commit 26f4834

Please sign in to comment.