mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-24 16:18:16 +00:00
mp4mux: Disable aggregator's default negotiation
mp4mux can't negotiate caps with upstream/downstream and always outputs specific caps based on the input streams. This will always happen before it produces the first buffers. By having the default aggregator negotiation enabled the same caps would be pushed twice in the beginning, and again every time a reconfigure event is received. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2381>
This commit is contained in:
parent
9389ccf7e6
commit
61330b65b4
1 changed files with 1 additions and 0 deletions
|
@ -631,6 +631,7 @@ gst_qt_mux_class_init (GstQTMuxClass * klass)
|
|||
gstagg_class->start = gst_qt_mux_start;
|
||||
gstagg_class->stop = gst_qt_mux_stop;
|
||||
gstagg_class->create_new_pad = gst_qt_mux_create_new_pad;
|
||||
gstagg_class->negotiate = NULL;
|
||||
|
||||
gst_type_mark_as_plugin_api (GST_TYPE_QT_MUX_PAD, 0);
|
||||
gst_type_mark_as_plugin_api (GST_TYPE_QT_MUX_DTS_METHOD, 0);
|
||||
|
|
Loading…
Reference in a new issue