package net.knarcraft.ffmpegconverter.streams; /** * An object representation of a video stream in a media file */ public class VideoStream extends AbstractStream implements StreamObject { private final int width; private final int height; /** * Instantiates a new video stream * * @param codec

The name of the codec for the video stream.

* @param absoluteIndex

The index of the video stream.

* @param relativeIndex

The index of the video stream relative to other video streams.

* @param width

The width of the video stream.

* @param height

The height of the video stream.

*/ public VideoStream(String codec, int absoluteIndex, int relativeIndex, int width, int height) { this.codecName = codec; this.absoluteIndex = absoluteIndex; this.relativeIndex = relativeIndex; this.width = width; this.height = height; } /** * Gets the width of the video stream * * @return

The width of the video steam in pixels.

*/ public int getWidth() { return this.width; } /** * Gets the height of the video stream * * @return

The height of the video stream in pixels.

*/ public int getHeight() { return this.height; } }