-
Notifications
You must be signed in to change notification settings - Fork 66
refactor metadata fallback logic #1021
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
mollyxu
wants to merge
14
commits into
meta-pytorch:main
Choose a base branch
from
mollyxu:refactor-metadata-fallback
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
8bee8d7
refactor metadata fallback logic
08c348e
fix tests and move seekmode to metadata.h
868e23e
add checks
e58cf39
add cpp tests
47ff2db
Merge branch 'meta-pytorch:main' into refactor-metadata-fallback
mollyxu 35febfb
use streametadata methods in singlestreamdecoder
20a7227
address feedback
b677863
address feedback
1478117
modify docstrings
3494331
modified fallback logic
cdabcb0
fix fallthrough error
8bf490c
modify fallback logic and add torch_checks
e3b91ea
address feedback
71f4861
address feedback
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,121 @@ | ||
| // Copyright (c) Meta Platforms, Inc. and affiliates. | ||
| // All rights reserved. | ||
| // | ||
| // This source code is licensed under the BSD-style license found in the | ||
| // LICENSE file in the root directory of this source tree. | ||
|
|
||
| #include "Metadata.h" | ||
| #include "torch/types.h" | ||
|
|
||
| namespace facebook::torchcodec { | ||
|
|
||
| std::optional<double> StreamMetadata::getDurationSeconds( | ||
| SeekMode seekMode) const { | ||
| switch (seekMode) { | ||
| case SeekMode::custom_frame_mappings: | ||
| case SeekMode::exact: | ||
| TORCH_CHECK( | ||
| endStreamPtsSecondsFromContent.has_value() && | ||
| beginStreamPtsSecondsFromContent.has_value(), | ||
| "Missing beginStreamPtsSecondsFromContent or endStreamPtsSecondsFromContent"); | ||
| return endStreamPtsSecondsFromContent.value() - | ||
| beginStreamPtsSecondsFromContent.value(); | ||
| case SeekMode::approximate: | ||
| if (durationSecondsFromHeader.has_value()) { | ||
| return durationSecondsFromHeader.value(); | ||
| } | ||
| if (numFramesFromHeader.has_value() && averageFpsFromHeader.has_value() && | ||
| averageFpsFromHeader.value() != 0.0) { | ||
| return static_cast<double>(numFramesFromHeader.value()) / | ||
| averageFpsFromHeader.value(); | ||
| } | ||
| return std::nullopt; | ||
| default: | ||
| TORCH_CHECK(false, "Unknown SeekMode"); | ||
| } | ||
| } | ||
|
|
||
| double StreamMetadata::getBeginStreamSeconds(SeekMode seekMode) const { | ||
| switch (seekMode) { | ||
| case SeekMode::custom_frame_mappings: | ||
| case SeekMode::exact: | ||
| TORCH_CHECK( | ||
| beginStreamPtsSecondsFromContent.has_value(), | ||
| "Missing beginStreamPtsSecondsFromContent"); | ||
| return beginStreamPtsSecondsFromContent.value(); | ||
| case SeekMode::approximate: | ||
| if (beginStreamPtsSecondsFromContent.has_value()) { | ||
| return beginStreamPtsSecondsFromContent.value(); | ||
| } | ||
| return 0.0; | ||
| default: | ||
| TORCH_CHECK(false, "Unknown SeekMode"); | ||
| } | ||
| } | ||
|
|
||
| std::optional<double> StreamMetadata::getEndStreamSeconds( | ||
| SeekMode seekMode) const { | ||
| switch (seekMode) { | ||
| case SeekMode::custom_frame_mappings: | ||
| case SeekMode::exact: | ||
| TORCH_CHECK( | ||
| endStreamPtsSecondsFromContent.has_value(), | ||
| "Missing endStreamPtsSecondsFromContent"); | ||
| return endStreamPtsSecondsFromContent.value(); | ||
| case SeekMode::approximate: | ||
| if (endStreamPtsSecondsFromContent.has_value()) { | ||
| return endStreamPtsSecondsFromContent.value(); | ||
| } | ||
mollyxu marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| return getDurationSeconds(seekMode); | ||
| default: | ||
| TORCH_CHECK(false, "Unknown SeekMode"); | ||
| } | ||
| } | ||
|
|
||
| std::optional<int64_t> StreamMetadata::getNumFrames(SeekMode seekMode) const { | ||
| switch (seekMode) { | ||
| case SeekMode::custom_frame_mappings: | ||
| case SeekMode::exact: | ||
| TORCH_CHECK( | ||
| numFramesFromContent.has_value(), "Missing numFramesFromContent"); | ||
| return numFramesFromContent.value(); | ||
| case SeekMode::approximate: { | ||
| if (numFramesFromHeader.has_value()) { | ||
| return numFramesFromHeader.value(); | ||
| } | ||
| if (averageFpsFromHeader.has_value() && | ||
| durationSecondsFromHeader.has_value()) { | ||
| return static_cast<int64_t>( | ||
| averageFpsFromHeader.value() * durationSecondsFromHeader.value()); | ||
| } | ||
| return std::nullopt; | ||
| } | ||
| default: | ||
| TORCH_CHECK(false, "Unknown SeekMode"); | ||
| } | ||
| } | ||
|
|
||
| std::optional<double> StreamMetadata::getAverageFps(SeekMode seekMode) const { | ||
| switch (seekMode) { | ||
| case SeekMode::custom_frame_mappings: | ||
| case SeekMode::exact: { | ||
| auto numFrames = getNumFrames(seekMode); | ||
| if (numFrames.has_value() && | ||
| beginStreamPtsSecondsFromContent.has_value() && | ||
| endStreamPtsSecondsFromContent.has_value()) { | ||
| double duration = endStreamPtsSecondsFromContent.value() - | ||
| beginStreamPtsSecondsFromContent.value(); | ||
| if (duration != 0.0) { | ||
| return static_cast<double>(numFrames.value()) / duration; | ||
| } | ||
| } | ||
| return averageFpsFromHeader; | ||
| } | ||
| case SeekMode::approximate: | ||
| return averageFpsFromHeader; | ||
| default: | ||
| TORCH_CHECK(false, "Unknown SeekMode"); | ||
| } | ||
| } | ||
|
|
||
| } // namespace facebook::torchcodec | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.