mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-27 23:44:47 +00:00
whitespace fixes
Original commit message from CVS: whitespace fixes
This commit is contained in:
parent
cb64b2a586
commit
c6f9c38da2
1 changed files with 29 additions and 24 deletions
|
@ -34,7 +34,7 @@
|
|||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
/* bitmaks defining the direction */
|
||||
/* bitmasks defining the direction */
|
||||
#define GST_EVDIR_US (1 << 0)
|
||||
#define GST_EVDIR_DS (1 << 1)
|
||||
#define GST_EVDIR_BOTH GST_EVDIR_US | GST_EVDIR_DS
|
||||
|
@ -51,26 +51,31 @@ G_BEGIN_DECLS
|
|||
* @GST_EVENT_UNKNOWN: unknown event.
|
||||
* @GST_EVENT_FLUSH_START: Start a flush operation
|
||||
* @GST_EVENT_FLUSH_STOP: Stop a flush operation
|
||||
* @GST_EVENT_EOS: End-Of-Stream. No more data is to be expected to follow without
|
||||
* a NEWSEGMENT event.
|
||||
* @GST_EVENT_EOS: End-Of-Stream. No more data is to be expected to follow
|
||||
* without a NEWSEGMENT event.
|
||||
* @GST_EVENT_NEWSEGMENT: A new media segment follows in the dataflow.
|
||||
* @GST_EVENT_TAG: A new set of metadata tags has been found in the stream.
|
||||
* @GST_EVENT_FILLER: Filler for sparse data streams.
|
||||
* @GST_EVENT_QOS: A quality message. Used to indicate to upstream elements that the downstream elements
|
||||
* are being starved of or flooded with data.
|
||||
* @GST_EVENT_QOS: A quality message. Used to indicate to upstream elements
|
||||
* that the downstream elements are being starved of or
|
||||
* flooded with data.
|
||||
* @GST_EVENT_SEEK: A request for a new playback position and rate.
|
||||
* @GST_EVENT_NAVIGATION: Navigation events are usually used for communicating user
|
||||
* requests, such as mouse or keyboard movements, to upstream elements.
|
||||
* @GST_EVENT_NAVIGATION: Navigation events are usually used for communicating
|
||||
user requests, such as mouse or keyboard movements,
|
||||
* to upstream elements.
|
||||
* @GST_EVENT_CUSTOM_UP: Upstream custom event
|
||||
* @GST_EVENT_CUSTOM_DS: Downstream custom event that travels in the data flow.
|
||||
* @GST_EVENT_CUSTOM_DS_OOB: Custom out-of-band downstream event.
|
||||
* @GST_EVENT_CUSTOM_BOTH: Custom upstream or downstream event. In-band when travelling downstream.
|
||||
* @GST_EVENT_CUSTOM_BOTH: Custom upstream or downstream event.
|
||||
* In-band when travelling downstream.
|
||||
* @GST_EVENT_CUSTOM_BOTH_OOB: Custom upstream or downstream out-of-band event.
|
||||
*
|
||||
* GstEventType lists the standard event types that can be sent in a pipeline.
|
||||
*
|
||||
* The custom event types can be used for private messages between elements that can't be expressed using normal
|
||||
* GStreamer buffer passing semantics. Custom events carry an arbitrary GstStructure.
|
||||
* The custom event types can be used for private messages between elements
|
||||
* that can't be expressed using normal
|
||||
* GStreamer buffer passing semantics. Custom events carry an arbitrary
|
||||
* GstStructure.
|
||||
* Specific custom events are distinguished by the name of the structure.
|
||||
*/
|
||||
typedef enum {
|
||||
|
@ -168,7 +173,7 @@ typedef enum {
|
|||
* @GST_SEEK_FLAG_ACCURATE: accurate position is requested, this might
|
||||
* be slower for some formats.
|
||||
* @GST_SEEK_FLAG_KEY_UNIT: seek to the nearest keyframe. This might be
|
||||
* faster but less accurate.
|
||||
* faster but less accurate.
|
||||
* @GST_SEEK_FLAG_SEGMENT: perform a segment seek. After the playback
|
||||
* of the segment completes, no EOS will be emmited but a
|
||||
* SEGMENT_DONE message will be posted on the bus.
|
||||
|
@ -237,7 +242,7 @@ GType gst_event_get_type (void);
|
|||
GstEvent* gst_event_new_custom (GstEventType type, GstStructure *structure);
|
||||
|
||||
const GstStructure *
|
||||
gst_event_get_structure (GstEvent *event);
|
||||
gst_event_get_structure (GstEvent *event);
|
||||
|
||||
/* flush events */
|
||||
GstEvent * gst_event_new_flush_start (void);
|
||||
|
|
Loading…
Reference in a new issue