diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2008-04-04 10:32:21 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2008-04-04 10:32:21 +0000 |
commit | 631982f16007ca65ba688c3a8ec9e6bd21082342 (patch) | |
tree | 1deb9b2acc6f7a8dfe8a13d252b51394d639bda7 /gst/rtp/gstrtph264pay.h | |
parent | bf7cf95033d1416556aa376018077ada772f51fb (diff) |
gst/rtp/gstrtph264pay.*: Parse codec_data for future AVC compatibility.
Original commit message from CVS:
* gst/rtp/gstrtph264pay.c: (encode_base64),
(gst_rtp_h264_pay_setcaps), (gst_rtp_h264_pay_handle_buffer):
* gst/rtp/gstrtph264pay.h:
Parse codec_data for future AVC compatibility.
Fail when we encounter AVC data for now.
Diffstat (limited to 'gst/rtp/gstrtph264pay.h')
-rw-r--r-- | gst/rtp/gstrtph264pay.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gst/rtp/gstrtph264pay.h b/gst/rtp/gstrtph264pay.h index d1ecb27c..d5615e5d 100644 --- a/gst/rtp/gstrtph264pay.h +++ b/gst/rtp/gstrtph264pay.h @@ -46,6 +46,9 @@ struct _GstRtpH264Pay guint profile; guint8 *sps, *pps; guint sps_len, pps_len; + + gboolean packetized; + guint nal_length_size; }; struct _GstRtpH264PayClass |