Skip to content
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

feat: cmaf investigation #31

Merged
merged 4 commits into from
May 30, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion packager/live_packager_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1201,7 +1201,22 @@ INSTANTIATE_TEST_CASE_P(
LivePackagerTestCase{
5, "audio/en/init.mp4", LiveConfig::EncryptionScheme::SAMPLE_AES,
LiveConfig::OutputFormat::TS, LiveConfig::TrackType::AUDIO,
"audio/en/%05d.m4s", false}));
"audio/en/%05d.m4s", false},
lfordyce marked this conversation as resolved.
Show resolved Hide resolved
// Verify packaging of CMAF Video segments, no encryption
LivePackagerTestCase{
10, "cmaf/video/init.mp4", LiveConfig::EncryptionScheme::NONE,
LiveConfig::OutputFormat::FMP4, LiveConfig::TrackType::VIDEO,
"cmaf/video/seg_34313817%01d.m4s", false},
// Verify packaging of CMAF Audio segments
LivePackagerTestCase{
10, "cmaf/audio/init.mp4", LiveConfig::EncryptionScheme::NONE,
LiveConfig::OutputFormat::FMP4, LiveConfig::TrackType::AUDIO,
"cmaf/audio/seg_34313817%01d.m4s", false},
// Verify packaging of CMAF Video segments, with encryption
LivePackagerTestCase{
10, "audio/en/init.mp4", LiveConfig::EncryptionScheme::CENC,
LiveConfig::OutputFormat::FMP4, LiveConfig::TrackType::AUDIO,
lfordyce marked this conversation as resolved.
Show resolved Hide resolved
"cmaf/video/seg_34313817%01d.m4s", false}));

struct LivePackagerReEncryptCase {
unsigned int num_segments;
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading