2015-05-13 11:28:17 +00:00
|
|
|
From 134793f35f1a219c79b32b2d23df73ceff0b5e32 Mon Sep 17 00:00:00 2001
|
2014-06-26 12:39:30 +00:00
|
|
|
From: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
|
|
|
|
Date: Tue, 24 Jun 2014 17:27:12 +0200
|
2015-05-13 11:28:17 +00:00
|
|
|
Subject: [PATCH 3/3] h264parse: default to byte-stream/nalu format (Annex B).
|
2014-06-26 12:39:30 +00:00
|
|
|
|
|
|
|
Always default to stream-format=byte-stream,alignment=nalu if avcC
|
|
|
|
format was not detected. This is the natural stream format specified
|
|
|
|
in the standard (Annex.B): a series of NAL units prefixed with the
|
|
|
|
usual start code.
|
|
|
|
|
|
|
|
https://bugzilla.gnome.org/show_bug.cgi?id=732167
|
|
|
|
|
|
|
|
Signed-off-by: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
|
|
|
|
---
|
2015-05-13 11:28:17 +00:00
|
|
|
gst/vaapi/gsth264parse.c | 5 +++--
|
2014-06-26 12:39:30 +00:00
|
|
|
1 file changed, 3 insertions(+), 2 deletions(-)
|
|
|
|
|
|
|
|
diff --git a/gst/vaapi/gsth264parse.c b/gst/vaapi/gsth264parse.c
|
2015-05-13 11:28:17 +00:00
|
|
|
index fceec68..f15b1b0 100644
|
2014-06-26 12:39:30 +00:00
|
|
|
--- a/gst/vaapi/gsth264parse.c
|
|
|
|
+++ b/gst/vaapi/gsth264parse.c
|
2015-05-13 11:28:17 +00:00
|
|
|
@@ -393,7 +393,8 @@ gst_h264_parse_negotiate (GstH264Parse * h264parse, gint in_format,
|
2014-06-26 12:39:30 +00:00
|
|
|
if (!format)
|
|
|
|
format = GST_H264_PARSE_FORMAT_BYTE;
|
|
|
|
if (!align)
|
|
|
|
- align = GST_H264_PARSE_ALIGN_AU;
|
|
|
|
+ align = format == GST_H264_PARSE_FORMAT_BYTE ? GST_H264_PARSE_ALIGN_NAL :
|
|
|
|
+ GST_H264_PARSE_ALIGN_AU;
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (h264parse, "selected format %s, alignment %s",
|
|
|
|
gst_h264_parse_get_string (h264parse, TRUE, format),
|
2015-05-13 11:28:17 +00:00
|
|
|
@@ -2204,7 +2205,7 @@ gst_h264_parse_set_caps (GstBaseParse * parse, GstCaps * caps)
|
2014-06-26 12:39:30 +00:00
|
|
|
|
|
|
|
if (format == GST_H264_PARSE_FORMAT_NONE) {
|
|
|
|
format = GST_H264_PARSE_FORMAT_BYTE;
|
|
|
|
- align = GST_H264_PARSE_ALIGN_AU;
|
|
|
|
+ align = GST_H264_PARSE_ALIGN_NAL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
--
|
2015-05-13 11:28:17 +00:00
|
|
|
2.1.4
|
2014-06-26 12:39:30 +00:00
|
|
|
|