All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jitsi.impl.neomedia.control.ImgStreamingControl Maven / Gradle / Ivy

Go to download

libjitsi is an advanced Java media library for secure real-time audio/video communication

The newest version!
/*
 * Copyright @ 2015 Atlassian Pty Ltd
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.jitsi.impl.neomedia.control;

import javax.media.*;

/**
 * Defines the interface for controlling
 * CaptureDevices/DataSources associated with the
 * imgstreaming FMJ/JMF protocol.
 *
 * @author Lyubomir Marinov
 */
public interface ImgStreamingControl
    extends Control
{
    /**
     * Set the display index and the origin of the stream associated with a
     * specific index in the DataSource of this Control.
     *
     * @param streamIndex the index in the associated DataSource of the
     * stream to set the display index and the origin of
     * @param displayIndex the display index to set on the specified stream
     * @param x the x coordinate of the origin to set on the specified stream
     * @param y the y coordinate of the origin to set on the specified stream
     */
    public void setOrigin(int streamIndex, int displayIndex, int x, int y);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy