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

« back to all changes in this revision

Viewing changes to tools/gst-xmlinspect.c

  • 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:
438
438
print_element_info (GstElementFactory * factory)
439
439
{
440
440
  GstElement *element;
 
441
#ifndef GST_DISABLE_LOADSAVE
441
442
  GstObjectClass *gstobject_class;
 
443
#endif
442
444
  GstElementClass *gstelement_class;
443
445
  GList *pads;
444
446
  GstPad *pad;
453
455
  PUT_START_TAG (0, "element");
454
456
  PUT_ESCAPED (1, "name", GST_PLUGIN_FEATURE_NAME (factory));
455
457
 
 
458
#ifndef GST_DISABLE_LOADSAVE
456
459
  gstobject_class = GST_OBJECT_CLASS (G_OBJECT_GET_CLASS (element));
 
460
#endif
457
461
  gstelement_class = GST_ELEMENT_CLASS (G_OBJECT_GET_CLASS (element));
458
462
 
459
463
  PUT_START_TAG (1, "details");
637
641
 
638
642
  setlocale (LC_ALL, "");
639
643
 
 
644
#if !GLIB_CHECK_VERSION (2, 31, 0)
640
645
  g_thread_init (NULL);
 
646
#endif
641
647
 
642
648
  gst_tools_set_prgname ("gst-xmlinspect");
643
649