c - gstreamer needs g_main_loop_run while gtk needs gtk_main() -
i'm trying write gtk+ application in c uses gstreamer.
gtk+ needs gtk_main() execute.
gstreamer needs g_main_loop_run() execute.
both of them stall execution flow.
what can gtk_main() hold gmainloop created gstreamer?
thanks
do not create gmainloop
, gtk_main()
internally creates 1 should suffice glib
based library uses events/signals.
Comments
Post a Comment