summaryrefslogtreecommitdiffstats
path: root/gst/rtp/gstrtph264depay.c
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2007-04-12 14:20:56 +0000
committerWim Taymans <wim.taymans@gmail.com>2007-04-12 14:20:56 +0000
commitf5e4a8b028213584be3a5535095e0ece4e465c5f (patch)
tree253c8f80fcc9b70da51a3c99a6e13362b0a39315 /gst/rtp/gstrtph264depay.c
parent2fc868841f152a80ac3dda9c0fe632e7ac0118ea (diff)
gst/rtp/gstrtph264depay.c: Use the proper sync word for SPS and PPS.
Original commit message from CVS: * gst/rtp/gstrtph264depay.c: Use the proper sync word for SPS and PPS.
Diffstat (limited to 'gst/rtp/gstrtph264depay.c')
-rw-r--r--gst/rtp/gstrtph264depay.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/rtp/gstrtph264depay.c b/gst/rtp/gstrtph264depay.c
index be27910d..1027c48d 100644
--- a/gst/rtp/gstrtph264depay.c
+++ b/gst/rtp/gstrtph264depay.c
@@ -29,8 +29,8 @@
GST_DEBUG_CATEGORY_STATIC (rtph264depay_debug);
#define GST_CAT_DEFAULT (rtph264depay_debug)
-/* 2 or 3 bytes syncword */
-static const guint8 sync_bytes[] = { 0, 0, 1 };
+/* 3 zero bytes syncword */
+static const guint8 sync_bytes[] = { 0, 0, 0, 1 };
/* elementfactory information */
static const GstElementDetails gst_rtp_h264depay_details =