| 328 | } |
| 329 | |
| 330 | void GStreamerStream::stop() { |
| 331 | m_console->debug("GStreamerStream::stop()"); |
| 332 | assert(m_gst_pipeline != nullptr); |
| 333 | openhd::gst_element_set_set_state_and_log_result(m_gst_pipeline, |
| 334 | GST_STATE_PAUSED); |
| 335 | m_console->debug( |
| 336 | openhd::gst_element_get_current_state_as_string(m_gst_pipeline)); |
| 337 | } |
| 338 | |
| 339 | void GStreamerStream::cleanup_pipe() { |
| 340 | m_console->debug("GStreamerStream::cleanup_pipe() begin"); |
no test coverage detected