~ubuntu-branches/ubuntu/quantal/gst-plugins-bad0.10/quantal-proposed

« back to all changes in this revision

Viewing changes to ext/schroedinger/gstschro.c

  • Committer: Bazaar Package Importer
  • Author(s): Ken VanDine
  • Date: 2011-07-19 14:32:43 UTC
  • mfrom: (18.4.21 sid)
  • Revision ID: james.westby@ubuntu.com-20110719143243-p7pnkh45akfp0ihk
Tags: 0.10.22-2ubuntu1
* Rebased on debian unstable, remaining changes:
  - debian/gstreamer-plugins-bad.install
    * don't include dtmf, liveadder, rtpmux, autoconvert and shm, we include 
      them in -good

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 
27
27
GType gst_schro_enc_get_type (void);
28
28
GType gst_schro_dec_get_type (void);
29
 
GType gst_schro_parse_get_type (void);
30
29
 
31
30
GST_DEBUG_CATEGORY (schro_debug);
32
31
#define GST_CAT_DEFAULT schro_debug
39
38
  GST_DEBUG_CATEGORY_INIT (schro_debug, "schro", 0, "Schroedinger");
40
39
  gst_element_register (plugin, "schrodec", GST_RANK_PRIMARY,
41
40
      gst_schro_dec_get_type ());
42
 
  gst_element_register (plugin, "schroparse", GST_RANK_NONE,
43
 
      gst_schro_parse_get_type ());
44
41
  gst_element_register (plugin, "schroenc", GST_RANK_PRIMARY,
45
42
      gst_schro_enc_get_type ());
46
43