FileDocCategorySizeDatePackage
ProgressControl.javaAPI DocJMF 2.1.1e985Mon May 12 12:20:56 BST 2003com.sun.media.controls

ProgressControl.java

/*
 * @(#)ProgressControl.java	1.2 02/08/21
 *
 * Copyright (c) 1996-2002 Sun Microsystems, Inc.  All rights reserved.
 */

package com.sun.media.controls;

import com.sun.media.*;

public interface ProgressControl extends GroupControl {

    /**
     * A StringControl that displays the instantaneous frame rate, if video
     * is present.
     */
    StringControl getFrameRate();

    /**
     * A StringControl that displays the instantaneous bandwidth of the
     * input stream.
     */
    StringControl getBitRate();

    /**
     * Displays the video properties such as size, compression type, etc.
     * which are specific to the incoming video stream.
     */
    StringControl getVideoProperties();

    StringControl getVideoCodec();

    StringControl getAudioCodec();

    /**
     * Displays the audio properties such as sampling rate, resolution,
     * compression type, etc. specific to the incoming audio stream.
     */
    StringControl getAudioProperties();
}