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

« back to all changes in this revision

Viewing changes to tests/benchmarks/capsnego.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:
19
19
 * Boston, MA 02111-1307, USA.
20
20
 */
21
21
 
22
 
/* this benchmark recursively builds a pipeline and meassures the time to go
 
22
/* this benchmark recursively builds a pipeline and measures the time to go
23
23
 * from ready to paused.
24
24
 * The graph size and type can be controlled with a few commandline args:
25
25
 *  -d depth: is the depth of the tree
260
260
  g_print ("%" GST_TIME_FORMAT " built pipeline with %d elements\n",
261
261
      GST_TIME_ARGS (end - start), GST_BIN_NUMCHILDREN (bin));
262
262
 
263
 
  /* meassure */
 
263
  /* measure */
264
264
  g_print ("starting pipeline\n");
265
265
  gst_element_set_state (GST_ELEMENT (bin), GST_STATE_READY);
266
266
  GST_DEBUG_BIN_TO_DOT_FILE (bin, GST_DEBUG_GRAPH_SHOW_MEDIA_TYPE, "capsnego");