GStreamer에서 decodebin을 사용하는 경우 lib를 불러오는데 timeout 오류가 발생하는 일이 있습니다.
저 같은 경우에는 모바일 환경에서 mp3로 되어 있는 동영상을 재생하는 경우에 발생하였습니다.
구글링을 통해 해결하였습니다.
gst_element_set_state(GST_ELEMENT (pipeline),GST_STATE_PLAYING)로 Play상태로 전환한 뒤에
sret = gst_element_get_state(pGst->pipeline, &state, NULL, (5500 * GST_MSECOND))
로 상태를 확인하면 return값이 GST_STATE_CHANGE_ASYNC로 되어서 문제가 발생하였습니다.
하단의 굻게 쓰여진 부분을 추가하여 해결하였습니다.
GST_START_TEST (test_async_state_change_fake)
{
GstPipeline *pipeline;
GstElement *src, *sink;
GstBus *bus;
gboolean done = FALSE;
pipeline = GST_PIPELINE (gst_pipeline_new (NULL));
fail_unless (pipeline != NULL, "Could not create pipeline");
src = gst_element_factory_make ("fakesrc", NULL);
sink = gst_element_factory_make ("fakesink", NULL);
gst_bin_add_many (GST_BIN (pipeline), src, sink, NULL);
gst_element_link (src, sink);
bus = gst_pipeline_get_bus (pipeline);
fail_unless_equals_int (gst_element_set_state (GST_ELEMENT (pipeline),
GST_STATE_PLAYING), GST_STATE_CHANGE_ASYNC);
while (!done) {
GstMessage *message;
GstState old, new, pending;
message = gst_bus_poll (bus, GST_MESSAGE_STATE_CHANGED, -1);
if (message) {
gst_message_parse_state_changed (message, &old, &new, &pending);
GST_DEBUG_OBJECT (message->src, "state change from %d to %d", old, new);
if (message->src == GST_OBJECT (pipeline) && new == GST_STATE_PLAYING)
done = TRUE;
gst_message_unref (message);
}
}
fail_unless_equals_int (gst_element_set_state (GST_ELEMENT (pipeline),
GST_STATE_NULL), GST_STATE_CHANGE_SUCCESS);
/* here we don't get the state change messages, because of auto-flush in
* the bus */
gst_object_unref (bus);
gst_object_unref (pipeline);
}
'Embeded' 카테고리의 다른 글
STM32CubeIDE 사용 팁 (0) | 2019.05.14 |
---|---|
STM32CubeIDE (0) | 2019.05.14 |
dmesg log 초기화 (0) | 2014.03.12 |
gstreamer 사용하기 (0) | 2014.03.07 |
IAR로 STM32 컴파일시 오류 (0) | 2013.03.06 |