Interface

GstVideo-1.0GstVideoVideoOrientationInterface

Interface for implementing VideoOrientation. Contains only the virtual methods that need to be implemented.

interface Interface {
    vfunc_get_hcenter(): [boolean, number];
    vfunc_get_hflip(): [boolean, boolean];
    vfunc_get_vcenter(): [boolean, number];
    vfunc_get_vflip(): [boolean, boolean];
    vfunc_set_hcenter(center: number): boolean;
    vfunc_set_hflip(flip: boolean): boolean;
    vfunc_set_vcenter(center: number): boolean;
    vfunc_set_vflip(flip: boolean): boolean;
}

Hierarchy (View Summary)

Index

Methods

  • Get the horizontal flipping state (true for flipped) from the given object.

    Returns [boolean, boolean]

  • Get the vertical flipping state (true for flipped) from the given object.

    Returns [boolean, boolean]

  • Set the horizontal centering offset for the given object.

    Parameters

    • center: number

      centering offset

    Returns boolean

  • Set the horizontal flipping state (true for flipped) for the given object.

    Parameters

    • flip: boolean

      use flipping

    Returns boolean

  • Set the vertical centering offset for the given object.

    Parameters

    • center: number

      centering offset

    Returns boolean

  • Set the vertical flipping state (true for flipped) for the given object.

    Parameters

    • flip: boolean

      use flipping

    Returns boolean