From 1c32c1b133c7026ee854f828e47f806873ae08d8 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Wed, 14 May 2008 18:28:46 +0000 Subject: gst/rtp/gstrtph264depay.c: Small comment added. Original commit message from CVS: * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_process): Small comment added. * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_class_init), (gst_rtp_h264_pay_decode_nal), (gst_rtp_h264_pay_parse_sps_pps), (gst_rtp_h264_pay_payload_nal), (gst_rtp_h264_pay_handle_buffer): Debug string cleanups (remove trailing \n) Refactor and clean up the payloader a bit and make sure that we only put one NAL unit in an RTP packet even if the input buffer contains multiple NAL units. Add suport for AVC format input. --- gst/rtp/gstrtph264depay.c | 1 + 1 file changed, 1 insertion(+) (limited to 'gst/rtp/gstrtph264depay.c') diff --git a/gst/rtp/gstrtph264depay.c b/gst/rtp/gstrtph264depay.c index 2aeb88b4..9b798a34 100644 --- a/gst/rtp/gstrtph264depay.c +++ b/gst/rtp/gstrtph264depay.c @@ -367,6 +367,7 @@ gst_rtp_h264_depay_process (GstBaseRTPDepayload * depayload, GstBuffer * buf) case 26: /* MTAP16 Multi-time aggregation packet 5.7.2 */ header_len = 5; + /* fallthrough, not implemented */ case 27: /* MTAP24 Multi-time aggregation packet 5.7.2 */ header_len = 6; -- cgit