-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update generated code * Update src/Service/Comprehend/CHANGELOG.md --------- Co-authored-by: Jérémy Derussé <[email protected]>
- Loading branch information
1 parent
951cb96
commit df5abb5
Showing
6 changed files
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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 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,24 @@ | ||
<?php | ||
|
||
namespace AsyncAws\MediaConvert\Enum; | ||
|
||
/** | ||
* Specify how SPS and PPS NAL units are written in your output MP4 container, according to ISO/IEC 14496-15. If the | ||
* location of these parameters doesn't matter in your workflow: Keep the default value, AVC1. MediaConvert writes SPS | ||
* and PPS NAL units in the sample description ('stsd') box (but not into samples directly). To write SPS and PPS NAL | ||
* units directly into samples (but not in the 'stsd' box): Choose AVC3. When you do, note that your output might not | ||
* play properly with some downstream systems or players. | ||
*/ | ||
final class H264WriteMp4PackagingType | ||
{ | ||
public const AVC1 = 'AVC1'; | ||
public const AVC3 = 'AVC3'; | ||
|
||
public static function exists(string $value): bool | ||
{ | ||
return isset([ | ||
self::AVC1 => true, | ||
self::AVC3 => true, | ||
][$value]); | ||
} | ||
} |
This file contains 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 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 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 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