gst/rtp/: It's codec_data, not codec_info.
authorWim Taymans <wim.taymans@gmail.com>
Tue, 25 Apr 2006 16:09:55 +0000 (16:09 +0000)
committerWim Taymans <wim.taymans@gmail.com>
Tue, 25 Apr 2006 16:09:55 +0000 (16:09 +0000)
Original commit message from CVS:
* gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_setcaps):
* gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_setcaps):
It's codec_data, not codec_info.

ChangeLog
gst/rtp/gstrtpmp4gpay.c
gst/rtp/gstrtpmp4vpay.c

index 97e7193..cfb03e7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-04-25  Wim Taymans  <wim@fluendo.com>
+
+       * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_setcaps):
+       * gst/rtp/gstrtpmp4vpay.c: (gst_rtp_mp4v_pay_setcaps):
+       It's codec_data, not codec_info.
+
 2006-04-25  Tim-Philipp Müller  <tim at centricular dot net>
 
        Patch by: Mark Nauwelaerts  <manauw at skynet dot be>
index efe2906..8ff8827 100644 (file)
@@ -357,22 +357,22 @@ gst_rtp_mp4g_pay_setcaps (GstBaseRTPPayload * payload, GstCaps * caps)
 {
   GstRtpMP4GPay *rtpmp4gpay;
   GstStructure *structure;
-  const GValue *codec_info;
+  const GValue *codec_data;
   gboolean res = TRUE;
 
   rtpmp4gpay = GST_RTP_MP4G_PAY (payload);
 
   structure = gst_caps_get_structure (caps, 0);
 
-  codec_info = gst_structure_get_value (structure, "codec_info");
-  if (codec_info) {
-    GST_LOG_OBJECT (rtpmp4gpay, "got codec_info");
-    if (G_VALUE_TYPE (codec_info) == GST_TYPE_BUFFER) {
+  codec_data = gst_structure_get_value (structure, "codec_data");
+  if (codec_data) {
+    GST_LOG_OBJECT (rtpmp4gpay, "got codec_data");
+    if (G_VALUE_TYPE (codec_data) == GST_TYPE_BUFFER) {
       GstBuffer *buffer;
       const gchar *name;
 
-      buffer = gst_value_get_buffer (codec_info);
-      GST_LOG_OBJECT (rtpmp4gpay, "configuring codec_info");
+      buffer = gst_value_get_buffer (codec_data);
+      GST_LOG_OBJECT (rtpmp4gpay, "configuring codec_data");
 
       name = gst_structure_get_name (structure);
 
index 7bdbdbe..98c0455 100644 (file)
@@ -199,7 +199,7 @@ gst_rtp_mp4v_pay_setcaps (GstBaseRTPPayload * payload, GstCaps * caps)
 {
   GstRtpMP4VPay *rtpmp4vpay;
   GstStructure *structure;
-  const GValue *codec_info;
+  const GValue *codec_data;
 
   rtpmp4vpay = GST_RTP_MP4V_PAY (payload);
 
@@ -207,15 +207,15 @@ gst_rtp_mp4v_pay_setcaps (GstBaseRTPPayload * payload, GstCaps * caps)
       rtpmp4vpay->rate);
 
   structure = gst_caps_get_structure (caps, 0);
-  codec_info = gst_structure_get_value (structure, "codec_info");
-  if (codec_info) {
-    GST_LOG_OBJECT (rtpmp4vpay, "got codec_info");
-    if (G_VALUE_TYPE (codec_info) == GST_TYPE_BUFFER) {
+  codec_data = gst_structure_get_value (structure, "codec_data");
+  if (codec_data) {
+    GST_LOG_OBJECT (rtpmp4vpay, "got codec_data");
+    if (G_VALUE_TYPE (codec_data) == GST_TYPE_BUFFER) {
       GstBuffer *buffer;
       guint8 *data;
       guint size;
 
-      buffer = gst_value_get_buffer (codec_info);
+      buffer = gst_value_get_buffer (codec_data);
 
       data = GST_BUFFER_DATA (buffer);
       size = GST_BUFFER_SIZE (buffer);
@@ -224,7 +224,7 @@ gst_rtp_mp4v_pay_setcaps (GstBaseRTPPayload * payload, GstCaps * caps)
         goto done;
 
       rtpmp4vpay->profile = data[4];
-      GST_LOG_OBJECT (rtpmp4vpay, "configuring codec_info, profile %d",
+      GST_LOG_OBJECT (rtpmp4vpay, "configuring codec_data, profile %d",
           data[4]);
 
       if (rtpmp4vpay->config)