~ubuntu-branches/ubuntu/saucy/gstreamer0.10/saucy

« back to all changes in this revision

Viewing changes to gst/gsturi.h

  • Committer: Package Import Robot
  • Author(s): Sebastian Dröge
  • Date: 2011-12-11 18:52:12 UTC
  • mfrom: (32.1.14 experimental)
  • Revision ID: package-import@ubuntu.com-20111211185212-3k215ps4qtyz2qa5
Tags: 0.10.35.2-1
* New upstream pre-release:
  + debian/control.in:
    - Build-depend on GLib >= 2.24.
  + debian/patches/99_ltmain_as-needed.patch:
    - Refreshed to apply cleanly again.
  + debian/libgstreamer.symbols:
    - Update symbols file with new API.
* debian/rules:
  + Remove all dependency_libs from the .la files (Closes: #633319).
* debian/control.in:
  + Put GI package into section introspection.
* debian/compat,
  debian/control.in,
  debian/gir1.2-gstreamer.install,
  debian/libgstreamer-dev.install,
  debian/libgstreamer.install,
  debian/patches/79_multiarch-backwards-compat.patch,
  debian/patches/80_ia32-hack.patch,
  debian/rules:
  + Transition package to multi-arch (Closes: #647481).
    Patch taken from the Ubuntu package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
126
126
gboolean        gst_uri_protocol_is_supported   (const GstURIType type,
127
127
                                                 const gchar *protocol);
128
128
gboolean        gst_uri_is_valid                (const gchar * uri);
129
 
gchar *         gst_uri_get_protocol            (const gchar * uri);
 
129
gchar *         gst_uri_get_protocol            (const gchar * uri) G_GNUC_MALLOC;
130
130
gboolean        gst_uri_has_protocol            (const gchar * uri,
131
131
                                                 const gchar * protocol);
132
 
gchar *         gst_uri_get_location            (const gchar * uri);
 
132
gchar *         gst_uri_get_location            (const gchar * uri) G_GNUC_MALLOC;
133
133
gchar *         gst_uri_construct               (const gchar * protocol,
134
 
                                                 const gchar * location);
 
134
                                                 const gchar * location) G_GNUC_MALLOC;
135
135
 
136
136
gchar *         gst_filename_to_uri             (const gchar * filename,
137
 
                                                 GError     ** error);
 
137
                                                 GError     ** error) G_GNUC_MALLOC;
138
138
 
139
139
GstElement *    gst_element_make_from_uri       (const GstURIType type,
140
140
                                                 const gchar *    uri,
141
 
                                                 const gchar *    elementname);
 
141
                                                 const gchar *    elementname) G_GNUC_MALLOC;
142
142
 
143
143
/* accessing the interface */
144
144
GType           gst_uri_handler_get_type        (void);