summaryrefslogtreecommitdiffstats
path: root/gst/rtp/gstrtpmpvdepay.c
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2007-02-16 12:30:22 +0000
committerWim Taymans <wim.taymans@gmail.com>2007-02-16 12:30:22 +0000
commitdc325990e0f8dabd7dee80cc158ea018a86be276 (patch)
tree5abafdc471d5712f3f54ab355cda086c57370377 /gst/rtp/gstrtpmpvdepay.c
parente4b3dce677f9fc05509d7d678dadc3f703f041b5 (diff)
gst/rtp/README: Fix case of string params.
Original commit message from CVS: * gst/rtp/README: Fix case of string params. * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_class_init), (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process): Fix depayloader, support more packet types. Add sync codes to make sure the packetizer can do its job. * gst/rtp/gstrtpmp4gdepay.c: * gst/rtp/gstrtpmp4gpay.c: * gst/rtp/gstrtpmpvdepay.c: (gst_rtp_mpv_depay_process): Fix caps case again.
Diffstat (limited to 'gst/rtp/gstrtpmpvdepay.c')
-rw-r--r--gst/rtp/gstrtpmpvdepay.c11
1 files changed, 2 insertions, 9 deletions
diff --git a/gst/rtp/gstrtpmpvdepay.c b/gst/rtp/gstrtpmpvdepay.c
index a06132ff..2f828295 100644
--- a/gst/rtp/gstrtpmpvdepay.c
+++ b/gst/rtp/gstrtpmpvdepay.c
@@ -217,20 +217,13 @@ gst_rtp_mpv_depay_process (GstBaseRTPDepayload * depayload, GstBuffer * buf)
bad_packet:
{
GST_ELEMENT_WARNING (rtpmpvdepay, STREAM, DECODE,
- ("Packet did not validate."), (NULL));
+ (NULL), ("Packet did not validate."));
return NULL;
}
-#if 0
-bad_payload:
- {
- GST_DEBUG_OBJECT (rtpmpvdepay, "Unexpected payload type %u", pt);
- return NULL;
- }
-#endif
empty_packet:
{
GST_ELEMENT_WARNING (rtpmpvdepay, STREAM, DECODE,
- ("Empty payload."), (NULL));
+ (NULL), ("Empty payload."));
return NULL;
}
}