~ubuntu-branches/ubuntu/quantal/gst-plugins-bad-multiverse0.10/quantal

« back to all changes in this revision

Viewing changes to gst/filter/gstbpwsinc.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2007-05-03 19:52:54 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20070503195254-4dovmz251nut3yrt
Tags: 0.10.4+cvs20070502-1
* New CVS snapshot.
* debian/rules,
  debian/build-deps.in:
  + Update build dependencies.
* debian/gstreamer-plugins-bad-multiverse.install:
  + Add x264 plugin.

Show diffs side-by-side

added added

removed removed

Lines of Context:
256
256
  GstBPWSinc *this = GST_BPWSINC (base);
257
257
  GstClockTime timestamp;
258
258
 
 
259
  gfloat *src;
 
260
  gfloat *input;
 
261
  int residue_samples;
 
262
  gint input_samples;
 
263
  gint total_samples;
 
264
  int i, j;
 
265
 
259
266
  /* don't process data in passthrough-mode */
260
267
  if (gst_base_transform_is_passthrough (base))
261
268
    return GST_FLOW_OK;
266
273
  if (GST_CLOCK_TIME_IS_VALID (timestamp))
267
274
    gst_object_sync_values (G_OBJECT (this), timestamp);
268
275
 
269
 
  gfloat *src;
270
 
  gfloat *input;
271
 
  int residue_samples;
272
 
  gint input_samples;
273
 
  gint total_samples;
274
 
  int i, j;
275
 
 
276
276
  /* FIXME: out of laziness, we copy the left-over bit from last buffer
277
277
   * together with the incoming buffer to a new buffer to make the loop
278
278
   * easy; this could be a lot more optimized though