Skip to content
Snippets Groups Projects

openh264: add slice support

1 unresolved thread
@@ -61,9 +61,9 @@ static gboolean gst_openh264dec_decide_allocation (GstVideoDecoder * decoder,
GstQuery * query);
#if HAVE_OPENH264_MAIN_PROFILE
#define SUPPORTED_PROFILE_STR "profile=(string){ constrained-baseline, baseline, main, high }"
#define SUPPORTED_PROFILE_STR ", profile=(string){ constrained-baseline, baseline, main, high }"
#else
#define SUPPORTED_PROFILE_STR "profile=(string){ constrained-baseline, baseline }"
#define SUPPORTED_PROFILE_STR ", profile=(string){ constrained-baseline, baseline }"
#endif
/* pad templates */
@@ -72,7 +72,7 @@ GST_STATIC_PAD_TEMPLATE ("sink",
GST_PAD_SINK,
GST_PAD_ALWAYS,
GST_STATIC_CAPS
("video/x-h264, stream-format=(string)byte-stream, alignment=(string)au, "
("video/x-h264, stream-format=(string)byte-stream, alignment=(string){ au, nal }"
SUPPORTED_PROFILE_STR
));
Loading