[Bug 675943] subtitle editor hangs when opening a video
GStreamer (bugzilla.gnome.org)
bugzilla at gnome.org
Sun Jan 13 10:46:58 PST 2013
https://bugzilla.gnome.org/show_bug.cgi?id=675943
GStreamer | don't know | 0.10.36
Tomáš Hnyk <tomashnyk> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |REOPENED
Resolution|INCOMPLETE |
--- Comment #13 from Tomáš Hnyk <tomashnyk at gmail.com> 2013-01-13 18:46:51 UTC ---
I exchanged some email with the developer of the upstream software and he came
up with this main.cc:
#include <iostream>
//#include <glibmm.h>
#include <gstreamermm.h>
int main(int argc, char *argv[])
{
Gst::init(argc, argv);
std::cout << "Try to create a Gst::PlayBin2 element." << std::endl;
Glib::RefPtr<Gst::PlayBin2> playbin = Gst::PlayBin2::create();
if(!playbin)
{
std::cerr << "Failed to create the playbin2 element." << std::endl;
return EXIT_FAILURE;
}
else
std::cout << "Playbin2 element created with success." << std::endl;
return EXIT_SUCCESS;
}
compiled with:
g++ main.cc -o test `pkg-config --libs --cflags gstreamermm-0.10`
If run, it results in:
Try to create a Gst::PlayBin2 element.
*** glibc detected *** ./test: malloc(): memory corruption (fast):
0x0000000000abf1e0 ***
The upstream developer thinks this is somethingwrong with gstreamer, I have no
idea, what do you think?
--
Configure bugmail: https://bugzilla.gnome.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
More information about the gstreamer-bugs
mailing list