~ubuntu-branches/ubuntu/raring/gst-plugins-good0.10/raring-proposed

« back to all changes in this revision

Viewing changes to gst/rtpmanager/gstrtpssrcdemux.c

  • Committer: Package Import Robot
  • Author(s): Timo Aaltonen
  • Date: 2012-02-09 16:44:53 UTC
  • mfrom: (40.2.38 experimental)
  • Revision ID: package-import@ubuntu.com-20120209164453-6hjokwrvdn42zopb
Tags: 0.10.30.3-1ubuntu1
* Merge from Debian experimental, remaining changes:
  - 04_move_farsight_plugins_to_good.patch
    Import autoconvert, dtmf, liveadder, rptmux from -plugins-bad
  - 05_move_shm_to_good.patch
    Import shm from -plugins-bad.
  - 07_move-camerabin.patch
    Import camerabin, camerabin2, jpegformat and basecamerabinsrc
    from -plugins-bad.
  - control*:
    * Drop dependency from gstreamer0.10-plugins-good on
      gstreamer0.10-gconf. It pulls gconf and gtk3 onto the Kubuntu cd.
    * Use Breaks instead of Conflicts.
    * Add a 'Pre-Depends: ${misc:Pre-Depends}' to the plugin package,
      since we're shipping shared libraries in the package that Debian
      isn't.
* Update the patches by pulling new version of the code from
  -plugins-bad 0.10.22.3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
#include "config.h"
45
45
#endif
46
46
 
 
47
/* FIXME 0.11: suppress warnings for deprecated API such as GStaticRecMutex
 
48
 * with newer GLib versions (>= 2.31.0) */
 
49
#define GLIB_DISABLE_DEPRECATION_WARNINGS
 
50
 
47
51
#include <string.h>
48
52
#include <gst/rtp/gstrtpbuffer.h>
49
53
#include <gst/rtp/gstrtcpbuffer.h>
738
742
 
739
743
  it = gst_element_iterate_src_pads (GST_ELEMENT (demux));
740
744
 
741
 
  return gst_iterator_filter (it, src_pad_compare_func, (gpointer) prefix);
 
745
  it = gst_iterator_filter (it, src_pad_compare_func, (gpointer) prefix);
 
746
 
 
747
  gst_object_unref (demux);
 
748
  return it;
742
749
}
743
750
 
744
751