-
Notifications
You must be signed in to change notification settings - Fork 0
⚡ Optimize parse_mp4 to avoid allocation #7
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
Draft
kira1928
wants to merge
2
commits into
main
Choose a base branch
from
perf/optimize-mp4-allocation-8890887406864034663
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.
Draft
Changes from all commits
Commits
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
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,44 @@ | ||
| use video_analyzer::container::{Mp4Container, ContainerReader}; | ||
| use std::time::Instant; | ||
|
|
||
| fn generate_data(size: usize) -> Vec<u8> { | ||
| vec![0u8; size] | ||
| } | ||
|
|
||
| #[test] | ||
| #[ignore] | ||
| fn benchmark_allocation() { | ||
| let size = 50 * 1024 * 1024; // 50MB | ||
| let data = generate_data(size); | ||
| let data_slice = &data[..]; | ||
|
|
||
| println!("Benchmarking with {} MB data...", size / 1024 / 1024); | ||
|
|
||
| // Baseline: Allocation (Old way) | ||
| let start = Instant::now(); | ||
| for _ in 0..10 { | ||
| let data_vec = data_slice.to_vec(); | ||
| let _container = Mp4Container::from_bytes(data_vec); | ||
| } | ||
| let duration_baseline = start.elapsed(); | ||
| println!("Baseline (to_vec) (10 iterations): {:?}", duration_baseline); | ||
| println!("Baseline average: {:?}", duration_baseline / 10); | ||
|
|
||
| // Optimized: No allocation (New way) | ||
| let start = Instant::now(); | ||
| for _ in 0..10 { | ||
| let _container = Mp4Container::from_slice(data_slice); | ||
| } | ||
| let duration_optimized = start.elapsed(); | ||
| println!("Optimized (from_slice) (10 iterations): {:?}", duration_optimized); | ||
| println!("Optimized average: {:?}", duration_optimized / 10); | ||
|
|
||
| if duration_optimized < duration_baseline { | ||
| println!("Improvement: {:.2}x faster", duration_baseline.as_nanos() as f64 / duration_optimized.as_nanos() as f64); | ||
| } | ||
|
|
||
| // Verify trait usage compiles | ||
| let mut container = Mp4Container::from_slice(data_slice); | ||
| // This will error at runtime (invalid mp4), but compiles, proving the optimization works for the intended use case. | ||
| let _ = container.read_info(); | ||
| } | ||
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To avoid running this performance benchmark on every
cargo test(which can be slow), it's a good practice to add the#[ignore]attribute. This way, it will only run when explicitly requested withcargo test -- --ignored.This helps separate long-running performance tests from regular unit tests.