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

« back to all changes in this revision

Viewing changes to gst/gst_private.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:
51
51
/* for the pad cache */
52
52
#include "gstpad.h"
53
53
 
 
54
/* for GstElement */
 
55
#include "gstelement.h"
 
56
 
54
57
G_BEGIN_DECLS
55
58
 
56
59
/* used by gstparse.c and grammar.y */
113
116
 
114
117
void _priv_gst_pad_invalidate_cache (GstPad *pad);
115
118
 
 
119
/* Used in GstBin for manual state handling */
 
120
void _priv_gst_element_state_changed (GstElement *element, GstState oldstate,
 
121
    GstState newstate, GstState pending);
 
122
 
116
123
/* used in both gststructure.c and gstcaps.c; numbers are completely made up */
117
124
#define STRUCTURE_ESTIMATED_STRING_LEN(s) (16 + (s)->fields->len * 22)
118
125
 
234
241
 
235
242
#endif
236
243
 
 
244
#ifdef GST_DISABLE_DEPRECATED
 
245
typedef GList*                  (*GstPadIntLinkFunction)        (GstPad *pad);
 
246
#endif
 
247
 
 
248
 
237
249
G_END_DECLS
238
250
#endif /* __GST_PRIVATE_H__ */