~ubuntu-branches/ubuntu/quantal/gst-plugins-bad-multiverse0.10/quantal

« back to all changes in this revision

Viewing changes to gst/dtmf/gstdtmf.c

  • Committer: Bazaar Package Importer
  • Author(s): Onkar Shinde
  • Date: 2009-12-07 08:54:28 UTC
  • mfrom: (1.1.15 upstream)
  • Revision ID: james.westby@ubuntu.com-20091207085428-ml6aaukf0p2ph34d
Tags: 0.10.17-0ubuntu1
* New upstream release.
* Add myself to maintainer.
* Fix misc lintian warnings.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
#include "config.h"
4
4
#endif
5
5
 
 
6
#include "gstdtmfdetect.h"
6
7
#include "gstdtmfsrc.h"
7
8
#include "gstrtpdtmfsrc.h"
8
9
#include "gstrtpdtmfdepay.h"
11
12
static gboolean
12
13
plugin_init (GstPlugin * plugin)
13
14
{
 
15
  if (!gst_dtmf_detect_plugin_init (plugin))
 
16
    return FALSE;
 
17
 
14
18
  if (!gst_dtmf_src_plugin_init (plugin))
15
19
    return FALSE;
16
20
 
17
21
  if (!gst_rtp_dtmf_src_plugin_init (plugin))
18
22
    return FALSE;
19
23
 
20
 
 
21
24
  if (!gst_rtp_dtmf_depay_plugin_init (plugin))
22
25
    return FALSE;
23
26