Revert "Attempt to fix track change hang"

Queue2 tends to hang up on pause, unable to start playing
again. Pipeline actually stays PLAYING with ASYNC state
change, so it becomes impossible to unpause the player
without stop or forward/backward seeks.

This reverts commit 2b280de663bc53b4f37dbb3f875cd630bad22c82.
This commit is contained in:
Dmitry Valter 2019-11-02 10:16:42 +03:00
parent 6201247c07
commit 18c2b41615

View File

@ -302,7 +302,7 @@ bool GstEnginePipeline::Init() {
audioconvert_ = engine_->CreateElement("audioconvert", audiobin_);
tee = engine_->CreateElement("tee", audiobin_);
probe_queue = engine_->CreateElement("queue2", audiobin_);
probe_queue = engine_->CreateElement("queue", audiobin_);
probe_converter = engine_->CreateElement("audioconvert", audiobin_);
probe_sink = engine_->CreateElement("fakesink", audiobin_);