GNOME Bugzilla – Bug 737675
media: media_unprepare() is kind of broken
Last modified: 2014-09-30 20:17:02 UTC
Created attachment 287474 [details] [review] media: set state to unpreparing when unprepare is initiated The 7f40d3d8 commit has broken the unprepare mechanism. Look at that commit and also at media_unprepare(): gst_rtsp_media_unprepare (GstRTSPMedia * media) { ... gst_rtsp_media_set_status (media, GST_RTSP_MEDIA_STATUS_UNPREPARING); if (priv->status == GST_RTSP_MEDIA_STATUS_PREPARED) { GstRTSPMediaClass *klass; ... This condition is never going to be met.
commit d48e022c137fea5480462f1433b9e44c113e2805 Author: Ognyan Tonchev <otonchev@gmail.com> Date: Tue Sep 30 19:17:04 2014 +0200 media: set state to unpreparing when unprepare is initiated https://bugzilla.gnome.org/show_bug.cgi?id=737675