-
-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
14 changed files
with
613 additions
and
25 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
22 changes: 22 additions & 0 deletions
22
src/Service/MediaConvert/src/Enum/H264EndOfStreamMarkers.php
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,22 @@ | ||
<?php | ||
|
||
namespace AsyncAws\MediaConvert\Enum; | ||
|
||
/** | ||
* Optionally include or suppress markers at the end of your output that signal the end of the video stream. To include | ||
* end of stream markers: Leave blank or keep the default value, Include. To not include end of stream markers: Choose | ||
* Suppress. This is useful when your output will be inserted into another stream. | ||
*/ | ||
final class H264EndOfStreamMarkers | ||
{ | ||
public const INCLUDE = 'INCLUDE'; | ||
public const SUPPRESS = 'SUPPRESS'; | ||
|
||
public static function exists(string $value): bool | ||
{ | ||
return isset([ | ||
self::INCLUDE => true, | ||
self::SUPPRESS => true, | ||
][$value]); | ||
} | ||
} |
22 changes: 22 additions & 0 deletions
22
src/Service/MediaConvert/src/Enum/H265EndOfStreamMarkers.php
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,22 @@ | ||
<?php | ||
|
||
namespace AsyncAws\MediaConvert\Enum; | ||
|
||
/** | ||
* Optionally include or suppress markers at the end of your output that signal the end of the video stream. To include | ||
* end of stream markers: Leave blank or keep the default value, Include. To not include end of stream markers: Choose | ||
* Suppress. This is useful when your output will be inserted into another stream. | ||
*/ | ||
final class H265EndOfStreamMarkers | ||
{ | ||
public const INCLUDE = 'INCLUDE'; | ||
public const SUPPRESS = 'SUPPRESS'; | ||
|
||
public static function exists(string $value): bool | ||
{ | ||
return isset([ | ||
self::INCLUDE => true, | ||
self::SUPPRESS => 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
Oops, something went wrong.