Class VideoCodec

  • Direct Known Subclasses:
    H264Codec, Vp8Codec, Vp9Codec

    public abstract class VideoCodec
    extends java.lang.Object
    Abstract base class for video codecs.
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      protected VideoCodec​(java.lang.String name)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getName()
      Returns the string representation of the video codec.
      java.lang.String toString()
      Returns the name of the video codec.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • VideoCodec

        protected VideoCodec​(@NonNull
                             java.lang.String name)
    • Method Detail

      • getName

        @NonNull
        public java.lang.String getName()
        Returns the string representation of the video codec.
      • toString

        @NonNull
        public java.lang.String toString()
        Returns the name of the video codec.
        Overrides:
        toString in class java.lang.Object