mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 09:55:36 +00:00
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:
parent
2fc868841f
commit
f5e4a8b028
2 changed files with 7 additions and 2 deletions
|
@ -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:
|
||||||
|
|
|
@ -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 =
|
||||||
|
|
Loading…
Reference in a new issue