~ubuntu-branches/ubuntu/precise/gst-plugins-base0.10/precise-proposed

« back to all changes in this revision

Viewing changes to tests/check/pipelines/vorbisdec.c

  • Committer: Package Import Robot
  • Author(s): Sebastian Dröge
  • Date: 2011-12-12 12:40:13 UTC
  • mfrom: (36.1.15 experimental)
  • Revision ID: package-import@ubuntu.com-20111212124013-onyadfb150d8c5dk
Tags: 0.10.35.2-2
* debian/libgstreamer-plugins-base.install:
  + Add license translations file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
  GstBus *bus;
55
55
  GError *error = NULL;
56
56
 
 
57
  /* allowing some tolerance permits audiodecoder to come up with
 
58
   * perfect timestamps rather than sticking to upstream ts */
57
59
  pipe_str = g_strdup_printf ("audiotestsrc num-buffers=100"
58
 
      " ! audio/x-raw-int,rate=44100 ! audioconvert ! vorbisenc ! vorbisdec"
 
60
      " ! audio/x-raw-int,rate=44100 ! audioconvert ! vorbisenc "
 
61
      " ! vorbisdec tolerance=10000000 "
59
62
      " ! identity check-imperfect-timestamp=TRUE ! fakesink");
60
63
 
61
64
  pipeline = gst_parse_launch (pipe_str, &error);