~ubuntu-branches/ubuntu/trusty/gstreamer1.0/trusty

« back to all changes in this revision

Viewing changes to docs/libs/html/GstBaseSink.html

  • Committer: Package Import Robot
  • Author(s): Sebastian Dröge
  • Date: 2012-09-14 09:04:41 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20120914090441-1ul912ezvm3xfael
Tags: 0.11.94-1
* New upstream release:
  + debian/libgstreamer.symbols:
    - Update symbols file.
  + debian/control.in:
    - Build-depend on gtk-doc >= 1.12.
  + debian/patches/0001-netclientclock-simplify-by-using-g_socket_condition_.patch:
    - Dropped, merged upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
171
171
 
172
172
  /* notify subclass of event */
173
173
  gboolean      (*event)        (GstBaseSink *sink, GstEvent *event);
174
 
  /* wait for eos, subclasses should chain up to parent first */
175
 
  GstFlowReturn (*wait_eos)     (GstBaseSink *sink, GstEvent *event);
 
174
  /* wait for eos or gap, subclasses should chain up to parent first */
 
175
  GstFlowReturn (*wait_event)   (GstBaseSink *sink, GstEvent *event);
176
176
 
177
177
  /* notify subclass of buffer or list before doing sync */
178
178
  GstFlowReturn (*prepare)      (GstBaseSink *sink, GstBuffer *buffer);
254
254
<td>Override this to handle events arriving on the sink pad</td>
255
255
</tr>
256
256
<tr>
257
 
<td><p><span class="term"><em class="structfield"><code><a name="GstBaseSinkClass.wait-eos"></a>wait_eos</code></em> ()</span></p></td>
258
 
<td>Override this to implement custom logic to wait for the EOS time.
259
 
subclasses should always first chain up to the default implementation.</td>
 
257
<td><p><span class="term"><em class="structfield"><code><a name="GstBaseSinkClass.wait-event"></a>wait_event</code></em> ()</span></p></td>
 
258
<td>Override this to implement custom logic to wait for the event
 
259
time (for events like EOS and GAP). Subclasses should always first
 
260
chain up to the default implementation.</td>
260
261
</tr>
261
262
<tr>
262
263
<td><p><span class="term"><em class="structfield"><code><a name="GstBaseSinkClass.prepare"></a>prepare</code></em> ()</span></p></td>