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

« back to all changes in this revision

Viewing changes to ext/ogg/gstogmparse.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:
279
279
      "parse an OGM audio header and stream",
280
280
      "GStreamer maintainers <gstreamer-devel@lists.sourceforge.net>");
281
281
 
282
 
  gst_element_class_add_pad_template (element_class,
283
 
      gst_static_pad_template_get (&sink_factory_audio));
 
282
  gst_element_class_add_static_pad_template (element_class,
 
283
      &sink_factory_audio);
284
284
  audio_src_templ = gst_pad_template_new ("src",
285
285
      GST_PAD_SRC, GST_PAD_SOMETIMES, caps);
286
286
  gst_element_class_add_pad_template (element_class, audio_src_templ);
297
297
      "parse an OGM video header and stream",
298
298
      "GStreamer maintainers <gstreamer-devel@lists.sourceforge.net>");
299
299
 
300
 
  gst_element_class_add_pad_template (element_class,
301
 
      gst_static_pad_template_get (&sink_factory_video));
 
300
  gst_element_class_add_static_pad_template (element_class,
 
301
      &sink_factory_video);
302
302
  video_src_templ = gst_pad_template_new ("src",
303
303
      GST_PAD_SRC, GST_PAD_SOMETIMES, caps);
304
304
  gst_element_class_add_pad_template (element_class, video_src_templ);