mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 08:46:40 +00:00
basetsmux: allow null J2K profile
Since we are not requiring that profile equals GST_JPEG2000_PARSE_PROFILE_BC_SINGLE, (as the standard requires) we can allow profile to be null. We relax this condition because OpenJPEG can't create broadcast profiles.
This commit is contained in:
parent
1414e58dfa
commit
6892078b00
1 changed files with 9 additions and 6 deletions
|
@ -380,7 +380,7 @@ gst_base_ts_mux_create_stream (GstBaseTsMux * mux, GstBaseTsMuxPad * ts_pad)
|
||||||
const GValue *value = NULL;
|
const GValue *value = NULL;
|
||||||
GstBuffer *codec_data = NULL;
|
GstBuffer *codec_data = NULL;
|
||||||
guint8 opus_channel_config_code = 0;
|
guint8 opus_channel_config_code = 0;
|
||||||
guint16 profile = 0;
|
guint16 profile = GST_JPEG2000_PARSE_PROFILE_NONE;
|
||||||
guint8 main_level = 0;
|
guint8 main_level = 0;
|
||||||
guint32 max_rate = 0;
|
guint32 max_rate = 0;
|
||||||
guint8 color_spec = 0;
|
guint8 color_spec = 0;
|
||||||
|
@ -550,11 +550,14 @@ gst_base_ts_mux_create_stream (GstBaseTsMux * mux, GstBaseTsMuxPad * ts_pad)
|
||||||
const GValue *vFramerate = gst_structure_get_value (s, "framerate");
|
const GValue *vFramerate = gst_structure_get_value (s, "framerate");
|
||||||
const GValue *vColorimetry = gst_structure_get_value (s, "colorimetry");
|
const GValue *vColorimetry = gst_structure_get_value (s, "colorimetry");
|
||||||
private_data = g_new0 (j2k_private_data, 1);
|
private_data = g_new0 (j2k_private_data, 1);
|
||||||
profile = g_value_get_uint (vProfile);
|
/* for now, we relax the condition that profile must exist and equal
|
||||||
|
* GST_JPEG2000_PARSE_PROFILE_BC_SINGLE */
|
||||||
|
if (vProfile) {
|
||||||
|
profile = g_value_get_int (vProfile);
|
||||||
if (profile != GST_JPEG2000_PARSE_PROFILE_BC_SINGLE) {
|
if (profile != GST_JPEG2000_PARSE_PROFILE_BC_SINGLE) {
|
||||||
/* for now, we will relax the condition that the profile must equal GST_JPEG2000_PARSE_PROFILE_BC_SINGLE */
|
GST_LOG_OBJECT (pad, "Invalid JPEG 2000 profile %d", profile);
|
||||||
/*GST_ERROR_OBJECT (pad, "Invalid JPEG 2000 profile %d", profile);
|
/*goto not_negotiated; */
|
||||||
goto not_negotiated; */
|
}
|
||||||
}
|
}
|
||||||
/* for now, we will relax the condition that the main level must be present */
|
/* for now, we will relax the condition that the main level must be present */
|
||||||
if (vMainlevel) {
|
if (vMainlevel) {
|
||||||
|
|
Loading…
Reference in a new issue