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.
This commit is contained in:
Wim Taymans 2007-04-12 14:20:56 +00:00
parent 2fc868841f
commit f5e4a8b028
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2007-04-12 Wim Taymans <wim@fluendo.com>
* gst/rtp/gstrtph264depay.c:
Use the proper sync word for SPS and PPS.
2007-04-12 Thomas Vander Stichele <thomas at apestaart dot org> 2007-04-12 Thomas Vander Stichele <thomas at apestaart dot org>
* gst/rtp/Makefile.am: * gst/rtp/Makefile.am:

View file

@ -29,8 +29,8 @@
GST_DEBUG_CATEGORY_STATIC (rtph264depay_debug); GST_DEBUG_CATEGORY_STATIC (rtph264depay_debug);
#define GST_CAT_DEFAULT (rtph264depay_debug) #define GST_CAT_DEFAULT (rtph264depay_debug)
/* 2 or 3 bytes syncword */ /* 3 zero bytes syncword */
static const guint8 sync_bytes[] = { 0, 0, 1 }; static const guint8 sync_bytes[] = { 0, 0, 0, 1 };
/* elementfactory information */ /* elementfactory information */
static const GstElementDetails gst_rtp_h264depay_details = static const GstElementDetails gst_rtp_h264depay_details =