diff options
| author | Luiz Augusto von Dentz <luiz.dentz@openbossa.org> | 2008-02-20 13:37:00 +0000 | 
|---|---|---|
| committer | Luiz Augusto von Dentz <luiz.dentz@openbossa.org> | 2008-02-20 13:37:00 +0000 | 
| commit | 41387ca1ae954c4b8ea99e8e4e1646198af254a7 (patch) | |
| tree | ecb5d4709eaeb88b93f4e6cb3b4831a86d16c1fb /audio/gstrtpsbcpay.c | |
| parent | a8b3b548ec9870df10709a839ed4c07e6d8eb76d (diff) | |
Fix runtime warnings of gstreamer plugin.
Diffstat (limited to 'audio/gstrtpsbcpay.c')
| -rw-r--r-- | audio/gstrtpsbcpay.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/audio/gstrtpsbcpay.c b/audio/gstrtpsbcpay.c index 70f5bef2..39cf1970 100644 --- a/audio/gstrtpsbcpay.c +++ b/audio/gstrtpsbcpay.c @@ -80,11 +80,11 @@ static GstStaticPadTemplate gst_rtp_sbc_pay_sink_factory =  		GST_STATIC_CAPS("audio/x-sbc, "  				"rate = (int) { 16000, 32000, 44100, 48000 }, "  				"channels = (int) [ 1, 2 ], " -				"mode = (string) { mono, dual, stereo, joint }, " +				"mode = (string) { \"mono\", \"dual\", \"stereo\", \"joint\" }, "  				"blocks = (int) { 4, 8, 12, 16 }, "  				"subbands = (int) { 4, 8 }, " -				"allocation = (string) { snr, loudness }," -				"bitpool = (int) [ 2, 64 ]; ") +				"allocation = (string) { \"snr\", \"loudness\" }, " +				"bitpool = (int) [ 2, 64 ]")  	);  static GstStaticPadTemplate gst_rtp_sbc_pay_src_factory =  | 
