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

org.gstreamer.event.FlushStartEvent Maven / Gradle / Ivy

There is a newer version: 1.6
Show newest version
/* 
 * Copyright (c) 2008 Wayne Meissner
 * Copyright (C) 1999,2000 Erik Walthinsen 
 *                    2000 Wim Taymans 
 *                    2005 Wim Taymans 
 * 
 * This file is part of gstreamer-java.
 *
 * This code is free software: you can redistribute it and/or modify it under
 * the terms of the GNU Lesser General Public License version 3 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
 * version 3 for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * version 3 along with this work.  If not, see .
 */


package org.gstreamer.event;

import org.gstreamer.Event;
import org.gstreamer.Pad;
import org.gstreamer.lowlevel.GstNative;

import com.sun.jna.Pointer;

/**
 * Start a flush operation.
 * 

* The flush start event can be sent * upstream and downstream and travels out-of-bounds with the dataflow. *

* It marks pads as being flushing and will make them return * {@link org.gstreamer.FlowReturn#WRONG_STATE} when used for data flow with {@link Pad#pushEvent}, * {@link Pad#chain}, Pad#allocBuffer, {@link Pad#getRange} and * {@link Pad#pullRange}. Any event (except a {@link FlushStopEvent}) received * on a flushing pad will return {@code false} immediately. *

* Elements should unlock any blocking functions and exit their streaming * functions as fast as possible when this event is received. *

* This event is typically generated after a seek to flush out all queued data * in the pipeline so that the new media is played as soon as possible. * */ public class FlushStartEvent extends Event { private static interface API extends com.sun.jna.Library { Pointer ptr_gst_event_new_flush_start(); } private static final API gst = GstNative.load(API.class); /** * This constructor is for internal use only. * @param init initialization data. */ public FlushStartEvent(Initializer init) { super(init); } /** * Creates a new flush start event. */ public FlushStartEvent() { super(initializer(gst.ptr_gst_event_new_flush_start())); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy