Package ejmf.toolkit.media.content.video.multi_image

Source Code of ejmf.toolkit.media.content.video.multi_image.JMFMultiImageRenderer

package ejmf.toolkit.media.content.video.multi_image;

import javax.media.ClockStoppedException;
import javax.media.InternalErrorEvent;

import ejmf.toolkit.gui.multiimage.MultiImageRenderer;

/**
* This class allows a sparation between JMF and the
* MultiImageRenderer class.  When the media has completed, an
* EndOfMediaEvent will be posted by the given Handler.
*
* @author     Steve Talley
*/
public class JMFMultiImageRenderer extends MultiImageRenderer {
    private Handler player;

    /**
     * Construct a JMFMultiImageRenderer with the given
     * Handler.  When the media has completed, an
     * EndOfMediaEvent will be posted by this Handler.
     */
    public JMFMultiImageRenderer(Handler player) {
        super();
        this.player = player;
    }

    /**
     * Calls super.run() and then calls player.endOfMedia().  If the
     * thread is stopped, player.endOfMedia() will not be called.
     */
    public void run() {
        super.run();
       
        //  Indicate that the end of media has been reached.  The
        //  Controller should still be in the Started state at
        //  this point.  If it is not, an InternalErrorEvent is
        //  posted.

        try {
            player.endOfMedia();
        } catch(ClockStoppedException e) {
            player.postEvent(
                new InternalErrorEvent(player,
                    "Controller not in Started state at EOM") );
        }
    }
}
TOP

Related Classes of ejmf.toolkit.media.content.video.multi_image.JMFMultiImageRenderer

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.