rtpg722pay: Fix uninitialized variable compiler warning
authorSebastian Dröge <sebastian.droege@collabora.co.uk>
Sun, 3 Oct 2010 21:49:08 +0000 (23:49 +0200)
committerSebastian Dröge <sebastian.droege@collabora.co.uk>
Sun, 3 Oct 2010 21:49:08 +0000 (23:49 +0200)
The clock rate is always 8000 Hz according to the RFC and
the sampling rate must always be 16000 Hz.

gst/rtp/gstrtpg722pay.c

index 9788fa5..56c4a9f 100644 (file)
@@ -131,8 +131,9 @@ gst_rtp_g722_pay_setcaps (GstBaseRTPPayload * basepayload, GstCaps * caps)
   else
     order = NULL;
 
-  if (rate == 16000)
-    clock_rate = 8000;
+  /* Clock rate is always 8000 Hz for G722 according to
+   * RFC 3551 although the sampling rate is 16000 Hz */
+  clock_rate = 8000;
 
   gst_basertppayload_set_options (basepayload, "audio", TRUE, "G722",
       clock_rate);