mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
encoding-profile: Remove codec_data and streamheader fields from constraint caps
When converting discoverer output to an encoding profile, it makes sense to omit these. It's very very unlikely that our encoder is going to produce bit by bit the same codec_data or streamheader. https://bugzilla.gnome.org/show_bug.cgi?id=765534
This commit is contained in:
parent
fd32d5812a
commit
fc99a61774
1 changed files with 11 additions and 0 deletions
|
@ -1531,8 +1531,19 @@ gst_encoding_profile_from_discoverer (GstDiscovererInfo * info)
|
|||
(sinfo));
|
||||
for (stream = streams; stream; stream = stream->next) {
|
||||
GstEncodingProfile *sprofile = NULL;
|
||||
GstStructure *s;
|
||||
sinfo = (GstDiscovererStreamInfo *) stream->data;
|
||||
caps = gst_discoverer_stream_info_get_caps (sinfo);
|
||||
|
||||
s = gst_caps_get_structure (caps, 0);
|
||||
if (gst_structure_has_field (s, "codec_data")
|
||||
|| gst_structure_has_field (s, "streamheader")) {
|
||||
caps = gst_caps_make_writable (caps);
|
||||
s = gst_caps_get_structure (caps, 0);
|
||||
gst_structure_remove_field (s, "codec_data");
|
||||
gst_structure_remove_field (s, "streamheader");
|
||||
}
|
||||
|
||||
GST_LOG ("Stream: %" GST_PTR_FORMAT "\n", caps);
|
||||
if (GST_IS_DISCOVERER_AUDIO_INFO (sinfo)) {
|
||||
sprofile =
|
||||
|
|
Loading…
Reference in a new issue