Package ws.schild.jave.encode.enums
Enum VsyncMethod
- All Implemented Interfaces:
Serializable,Comparable<VsyncMethod>,java.lang.constant.Constable
Add VSYNC methods described in the FFMPEG Documentation.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionChooses between CFR and VFR depending on muxer capabilities.Frames will be duplicated and dropped to achieve exactly the requested constant frame rate.As passthrough but destroys all timestamps, making the muxer generate fresh timestamps based on frame-rate.Each frame is passed with its timestamp from the demuxer to the muxer.Frames are passed through with their timestamp or dropped so as to prevent 2 frames from having the same timestamp. -
Method Summary
Modifier and TypeMethodDescriptionstatic VsyncMethodReturns the enum constant of this type with the specified name.static VsyncMethod[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
PASSTHROUGH
Each frame is passed with its timestamp from the demuxer to the muxer. -
CFR
Frames will be duplicated and dropped to achieve exactly the requested constant frame rate. -
VFR
Frames are passed through with their timestamp or dropped so as to prevent 2 frames from having the same timestamp. -
DROP
As passthrough but destroys all timestamps, making the muxer generate fresh timestamps based on frame-rate. -
AUTO
Chooses between CFR and VFR depending on muxer capabilities. This is the default method.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getMethodName
-