https://bugs.kde.org/show_bug.cgi?id=368171
Bug ID: 368171 Summary: Incorrect drawing of AudioGraphWidget causes crash Product: kdenlive Version: unspecified Platform: Compiled Sources OS: Linux Status: UNCONFIRMED Severity: crash Priority: NOR Component: User Interface Assignee: j...@kdenlive.org Reporter: carion.nico...@gmail.com This bug has been triggered on an up to date arch distrib, with latest master branch (commit c3f0470c4560a283d6f450f51a8cdf9bd6f91565) and latest version of mlt (compiled from source). The problem occured when saving a project but I believe it might be more general than that. I nailed down the problem to the following function: void AudioGraphWidget::drawBackground() { QSize size(width(), height()); if (!size.isValid()) return; m_pixmap = QPixmap(size); if (m_pixmap.isNull()) return; m_pixmap.fill(palette().base().color()); QPainter p(&m_pixmap); QRect rect(0, 0, width() - 3, height()); p.setFont(QFontDatabase::systemFont(QFontDatabase::SmallestReadableFont)); p.setOpacity(0.6); drawDbLabels(p, rect); int offset = fontMetrics().width(QStringLiteral("888")) + 2; rect.adjust(offset, 0, 0, 0); int barWidth = (rect.width() - (2 * (AUDIBLE_BAND_COUNT - 1))) / AUDIBLE_BAND_COUNT; drawChanLabels(p, rect, barWidth); rect.adjust(0, 0, 0, -fontMetrics().height()); m_rect = rect; } During runtime, offset=63, and width()=64. Hence after the first rect.adjust, the value of rect is: {x1 = 63, y1 = 0, x2 = 60, y2 = 99} Notice that x1>x2, hence the rect is invalid (negative width), which triggers a crash in a subsequent call. The following patch seems to resolve the issue, at least from a mathematical point of view, but I don't know the code mechanics enough to tell if it makes sense: diff --git a/src/monitor/scopes/audiographspectrum.cpp b/src/monitor/scopes/audiographspectrum.cpp index bd1740e..5e6cc5e 100644 --- a/src/monitor/scopes/audiographspectrum.cpp +++ b/src/monitor/scopes/audiographspectrum.cpp @@ -222,7 +222,7 @@ void AudioGraphWidget::drawBackground() p.setFont(QFontDatabase::systemFont(QFontDatabase::SmallestReadableFont)); p.setOpacity(0.6); drawDbLabels(p, rect); - int offset = fontMetrics().width(QStringLiteral("888")) + 2; + int offset = std::min(fontMetrics().width(QStringLiteral("888")) + 2, width() - 3); rect.adjust(offset, 0, 0, 0); int barWidth = (rect.width() - (2 * (AUDIBLE_BAND_COUNT - 1))) / AUDIBLE_BAND_COUNT; drawChanLabels(p, rect, barWidth); For completness, I've included a full backtrace in additional information Reproducible: Always Steps to Reproduce: Not sure how to reproduce exactly, but I have a project file that seems to trigger it consistently. Debug info : Thread 44 (Thread 0x7fff47fff700 (LWP 16848)): #0 0x00007fffe8e3810f in pthread_cond_wait@@GLIBC_2.3.2 () from /usr/lib/libpthread.so.0 No symbol table info available. #1 0x00007fffaea94acd in video_thread (arg=0x26985a0) at consumer_sdl_audio.c:423 self = 0x26985a0 now = {tv_sec = 1472838169, tv_usec = 725611} start = 1472838169725611 elapsed = <optimized out> tm = {tv_sec = 4, tv_nsec = 140737100584217} next = 0x0 properties = <optimized out> speed = <optimized out> real_time = 1 #2 0x00007fffe8e32454 in start_thread () from /usr/lib/libpthread.so.0 No symbol table info available. #3 0x00007fffebe767df in clone () from /usr/lib/libc.so.6 No symbol table info available. Thread 43 (Thread 0x7fff3fffe700 (LWP 16847)): #0 0x00007fffebe6d551 in ppoll () from /usr/lib/libc.so.6 No symbol table info available. #1 0x00007fffe2aee99d in pa_mainloop_poll () from /usr/lib/libpulse.so.0 No symbol table info available. #2 0x00007fffe2aeef8e in pa_mainloop_iterate () from /usr/lib/libpulse.so.0 No symbol table info available. #3 0x00007fffb8f5eeed in ?? () from /usr/lib/libSDL-1.2.so.0 No symbol table info available. #4 0x00007fffb8f32800 in ?? () from /usr/lib/libSDL-1.2.so.0 No symbol table info available. #5 0x00007fffb8f3afe8 in ?? () from /usr/lib/libSDL-1.2.so.0 No symbol table info available. #6 0x00007fffb8f7c8a9 in ?? () from /usr/lib/libSDL-1.2.so.0 No symbol table info available. #7 0x00007fffe8e32454 in start_thread () from /usr/lib/libpthread.so.0 No symbol table info available. #8 0x00007fffebe767df in clone () from /usr/lib/libc.so.6 No symbol table info available. Thread 42 (Thread 0x7fff3f7fd700 (LWP 16846)): #0 0x00007fffe8e3810f in pthread_cond_wait@@GLIBC_2.3.2 () from /usr/lib/libpthread.so.0 No symbol table info available. #1 0x00007ffff6ab7e0b in consumer_read_ahead_thread (arg=0x26985a0) at mlt_consumer.c:842 self = 0x26985a0 priv = 0x26a38a0 properties = 0x26985a0 width = 1440 height = 1080 video_off = 0 preview_off = <optimized out> preview_format = <optimized out> samples = 1920 audio = 0x7fff5540a280 audio_off = 0 buffer = 26 frame = 0x7fff885e0180 image = 0x7fff1c400050 "\027\177\026\210\027\177\027\210\027~\030\205\032}\032\201\031}\033\201\033~\032\201\031\200\030\202\030\201\030\202\030\202\031\206\031\202\031\204\031\203\031\204\031\202\031\203\030\201\030\201\030\200\030\177\030\200\030~\032\177\032\200\032\177\032\200\032\200\030\200\027\201\027\201\027\201\027\202\027\201\030\200\030\201\031~\030\201\030~\027\203\030~\031\203\032}\032\203\033\200\034~\034\210\033\202\033\205\031\200\031|\031~\031\202\032\177\032\202\032\200\032\201\032\201\032\177\032\203\031\200\031\203\031\200\031\204\031\202\031\204\031\204\032\204\032\206\032\203\031\205\032\202\031\203\032\201\031\202\031\202\031\202\030\203\030\203\030\204\030\206\031~\032\205\034\203\032y\031\201\031z\032\202\032\177\031\202\030\205\031\201\030\203"... ante = {tv_sec = 1472838170, tv_usec = 2068} count = 1 skipped = 0 time_process = 0 skip_next = 0 pos = <optimized out> start_pos = 409 last_pos = 409 frame_duration = 40000 drop_max = 5 #2 0x00000000007da589 in RenderThread::run (this=0x7fff3ac458a0) at /home/nicolas/Documents/Developpement/Projets/kdenlive/src/monitor/glwidget.cpp:1248 No locals. #3 0x00007fffeca7bd78 in ?? () from /usr/lib/libQt5Core.so.5 No symbol table info available. #4 0x00007fffe8e32454 in start_thread () from /usr/lib/libpthread.so.0 No symbol table info available. #5 0x00007fffebe767df in clone () from /usr/lib/libc.so.6 No symbol table info available. Thread 41 (Thread 0x7fff98d7d700 (LWP 16845)): #0 0x00007fffe8e3810f in pthread_cond_wait@@GLIBC_2.3.2 () from /usr/lib/libpthread.so.0 No symbol table info available. #1 0x00007fffaea949f0 in consumer_thread (arg=0x26985a0) at consumer_sdl_audio.c:595 speed = 0 self = 0x26985a0 consumer = 0x26985a0 consumer_props = 0x26985a0 thread = 140734401345280 init_audio = <optimized out> init_video = 0 frame = 0x0 properties = 0x7fff893a6e10 duration = 40 playtime = 0 tm = {tv_sec = 0, tv_nsec = 100000} #2 0x00007fffe8e32454 in start_thread () from /usr/lib/libpthread.so.0 No symbol table info available. #3 0x00007fffebe767df in clone () from /usr/lib/libc.so.6 No symbol table info available. Thread 37 (Thread 0x7fff76ffc700 (LWP 16834)): #0 0x00007fffbe874309 in ?? () from /usr/lib/libswscale.so.4 No symbol table info available. #1 0x00007fffbe821a3c in ?? () from /usr/lib/libswscale.so.4 No symbol table info available. #2 0x00007fffbe855ce0 in ?? () from /usr/lib/libswscale.so.4 No symbol table info available. #3 0x00007fffbe857119 in sws_scale () from /usr/lib/libswscale.so.4 No symbol table info available. #4 0x00007fffbe857475 in sws_scale () from /usr/lib/libswscale.so.4 No symbol table info available. #5 0x00007fffc87cbdc1 in convert_image (self=self@entry=0x7fff5804cf50, frame=0x7fff5985cee0, buffer=0x7fff0cdb4f90 "K\177J\201P\177N\201N\177K\201B\177?\201\062~0\201+\177'\201&\177%\202%\200%\202.\177.\202.\177.\202.\177.\202.\177.\202.\177.\200.~.\200\060|/\200.|-\200,}*\177(\177(\200'\200%\200!\201\036\200!\203#\202(\201-\202\064\200\064\201\064\201.\202\061\201\066\202<\177?\201E~T\202M~:\200)\200%\204#\201\"\203$\202(\202*\201\064\202:\203B\202G\201D\202;\200\071\201:~?\201H{G\201G{F\201B|A\201;}:\201\062\177/\202,\177,\202/\177\062\202\065\177\070\202>\200A\201F\200K\201M\200L\201J\177G\201C\177@\202;\177;\202"..., pix_fmt=<optimized out>, format=format@entry=0x7fff76ffba74, width=<optimized out>, height=1080, alpha=0x7fff76ffb508) at producer_avformat.c:1346 context = <optimized out> output = {data = { 0x7fff0cdb4f90 "K\177J\201P\177N\201N\177K\201B\177?\201\062~0\201+\177'\201&\177%\202%\200%\202.\177.\202.\177.\202.\177.\202.\177.\202.\177.\200.~.\200\060|/\200.|-\200,}*\177(\177(\200'\200%\200!\201\036\200!\203#\202(\201-\202\064\200\064\201\064\201.\202\061\201\066\202<\177?\201E~T\202M~:\200)\200%\204#\201\"\203$\202(\202*\201\064\202:\203B\202G\201D\202;\200\071\201:~?\201H{G\201G{F\201B|A\201;}:\201\062\177/\202,\177,\202/\177\062\202\065\177\070\202>\200A\201F\200K\201M\200L\201J\177G\201C\177@\202;\177;\202"..., 0x0, 0x0, 0x0, 0x0, 0x0, 0x7fff598645a0 "\240E\206Y\377\177", 0x7ffff6abfa22 "image"}, linesize = {3840, 0, 0, 0, -156512464, 32767, -156583253, 32767}} profile = <optimized out> result = <optimized out> src_pix_fmt = <optimized out> #6 0x00007fffc87d0f4e in producer_get_image (frame=frame@entry=0x7fff598645a0, buffer=buffer@entry=0x7fff76ffb9d8, format=format@entry=0x7fff76ffba74, width=width@entry=0x7fff76ffb854, height=height@entry=0x7fff76ffb858, writable=writable@entry=1) at producer_avformat.c:1760 yuv_colorspace = <optimized out> ret = 479795 int_position = 239 decode_errors = 0 self = 0x7fff5804cf50 producer = 0x7fff581537f0 frame_properties = 0x7fff598645a0 position = 239 properties = 0x7fff581537f0 alpha = 0x0 got_picture = 1 image_size = <optimized out> context = 0x7fff58793820 stream = <optimized out> codec_context = 0x7fff58793e40 source_fps = <optimized out> req_position = 239 descriptor = <optimized out> must_decode = <optimized out> delay = 0 preseek = <optimized out> interp = <optimized out> #7 0x00007ffff6aa5477 in mlt_frame_get_image (self=self@entry=0x7fff598645a0, buffer=buffer@entry=0x7fff76ffb9d8, format=format@entry=0x7fff76ffba74, width=width@entry=0x7fff76ffb854, height=height@entry=0x7fff76ffb858, writable=writable@entry=1) at mlt_frame.c:585 properties = 0x7fff598645a0 get_image = 0x7fffc87cff90 <producer_get_image> requested_format = <optimized out> error = 0 #8 0x00007fffc87caea0 in filter_get_image (frame=frame@entry=0x7fff598645a0, image=image@entry=0x7fff76ffb9d8, format=format@entry=0x7fff76ffba74, width=width@entry=0x7fff76ffb854, height=height@entry=0x7fff76ffb858, writable=<optimized out>, writable@entry=0) at filter_avdeinterlace.c:306 error = 0 deinterlace = <optimized out> #9 0x00007ffff6aa5477 in mlt_frame_get_image (self=self@entry=0x7fff598645a0, buffer=buffer@entry=0x7fff76ffb9d8, format=format@entry=0x7fff76ffba74, width=width@entry=0x7fff76ffb854, height=height@entry=0x7fff76ffb858, writable=writable@entry=0) at mlt_frame.c:585 properties = 0x7fff598645a0 get_image = 0x7fffc87cadf0 <filter_get_image> requested_format = <optimized out> error = 0 #10 0x00007fffb1b7e5f7 in get_image (frame=frame@entry=0x7fff598645a0, image=image@entry=0x7fff76ffb9d8, format=format@entry=0x7fff76ffba74, width=width@entry=0x7fff76ffb854, height=height@entry=0x7fff76ffb858, writable=writable@entry=0) at filter_fieldorder.c:33 properties = 0x7fff598645a0 error = <optimized out> #11 0x00007ffff6aa5477 in mlt_frame_get_image (self=self@entry=0x7fff598645a0, buffer=buffer@entry=0x7fff76ffb9d8, format=format@entry=0x7fff76ffba74, width=width@entry=0x7fff76ffb854, height=height@entry=0x7fff76ffb858, writable=writable@entry=0) at mlt_frame.c:585 properties = 0x7fff598645a0 get_image = 0x7fffb1b7e5d0 <get_image> requested_format = <optimized out> error = 0 #12 0x00007fffb1b7d29e in filter_get_image (frame=frame@entry=0x7fff598645a0, image=image@entry=0x7fff76ffb9d8, format=format@entry=0x7fff76ffba74, width=width@entry=0x7fff76ffb854, height=height@entry=0x7fff76ffb858, writable=writable@entry=0) at filter_crop.c:76 error = 0 profile = <optimized out> properties = 0x7fff598645a0 left = 0 right = <optimized out> top = <optimized out> bottom = 0 owidth = <optimized out> oheight = <optimized out> #13 0x00007ffff6aa5477 in mlt_frame_get_image (self=self@entry=0x7fff598645a0, buffer=buffer@entry=0x7fff76ffb9d8, format=format@entry=0x7fff76ffba74, width=width@entry=0x7fff76ffb854, height=height@entry=0x7fff76ffb858, writable=writable@entry=0) at mlt_frame.c:585 properties = 0x7fff598645a0 get_image = 0x7fffb1b7d1e0 <filter_get_image> requested_format = <optimized out> error = 0 #14 0x00007fffb1b826ac in filter_get_image (frame=frame@entry=0x7fff598645a0, image=image@entry=0x7fff76ffb9d8, format=format@entry=0x7fff76ffba74, width=width@entry=0x7fff76ffb930, height=height@entry=0x7fff76ffb934, writable=writable@entry=0) at filter_rescale.c:221 interps = <optimized out> iwidth = 1920 iheight = 1080 owidth = 200 oheight = 150 properties = 0x7fff598645a0 filter_properties = 0x7fff593c1950 scaler_method = 0x7fffc87cb150 <filter_scale> #15 0x00007ffff6aa5477 in mlt_frame_get_image (self=self@entry=0x7fff598645a0, buffer=buffer@entry=0x7fff76ffb9d8, format=format@entry=0x7fff76ffba74, width=width@entry=0x7fff76ffb930, height=height@entry=0x7fff76ffb934, writable=writable@entry=0) at mlt_frame.c:585 properties = 0x7fff598645a0 get_image = 0x7fffb1b824e0 <filter_get_image> requested_format = <optimized out> error = 0 #16 0x00007fffb1b82bca in filter_get_image (frame=frame@entry=0x7fff598645a0, image=image@entry=0x7fff76ffb9d8, format=format@entry=0x7fff76ffba74, width=width@entry=0x7fff76ffba7c, height=height@entry=0x7fff76ffba78, writable=writable@entry=0) at filter_resize.c:270 error = 0 properties = 0x7fff598645a0 filter = <optimized out> profile = <optimized out> aspect_ratio = 1 consumer_aspect = 1.3333333333333333 owidth = 200 oheight = 150 rescale = <optimized out> #17 0x00007ffff6aa5477 in mlt_frame_get_image (self=0x7fff598645a0, buffer=buffer@entry=0x7fff76ffb9d8, format=format@entry=0x7fff76ffba74, width=width@entry=0x7fff76ffba7c, height=height@entry=0x7fff76ffba78, writable=writable@entry=0) at mlt_frame.c:585 properties = 0x7fff598645a0 get_image = 0x7fffb1b82a50 <filter_get_image> requested_format = <optimized out> error = 0 #18 0x00007ffff688c17e in Mlt::Frame::get_image (this=0x7fff5b206a90, format=@0x7fff76ffba74: mlt_image_yuv422, w=@0x7fff76ffba7c: 268, h=@0x7fff76ffba78: 150, writable=0) at MltFrame.cpp:83 image = 0x7fff0cdb4f90 "K\177J\201P\177N\201N\177K\201B\177?\201\062~0\201+\177'\201&\177%\202%\200%\202.\177.\202.\177.\202.\177.\202.\177.\202.\177.\200.~.\200\060|/\200.|-\200,}*\177(\177(\200'\200%\200!\201\036\200!\203#\202(\201-\202\064\200\064\201\064\201.\202\061\201\066\202<\177?\201E~T\202M~:\200)\200%\204#\201\"\203$\202(\202*\201\064\202:\203B\202G\201D\202;\200\071\201:~?\201H{G\201G{F\201B|A\201;}:\201\062\177/\202,\177,\202/\177\062\202\065\177\070\202>\200A\201F\200K\201M\200L\201J\177G\201C\177@\202;\177;\202"... #19 0x00000000008e7420 in KThumb::getFrame (frame=0x7fff5b206a90, width=267, height=150) at /home/nicolas/Documents/Developpement/Projets/kdenlive/src/doc/kthumb.cpp:87 ow = 268 oh = 150 format = mlt_image_yuv422 imagedata = 0x7fff598645a0 "\240E\206Y\377\177" p = <incomplete type> #20 0x00000000008cd007 in ProjectClip::doExtractImage (this=0x31b3da0) at /home/nicolas/Documents/Developpement/Projets/kdenlive/src/bin/projectclip.cpp:905 pos = 239 path = {static null = {<No data fields>}, d = 0x7fff5b1cd630} img = <incomplete type> frame = 0x7fff5b206a90 prod = 0x7fff58f54f10 fullWidth = 267 ok = true thumbFolder = {d_ptr = {d = 0x7fff58026f20}} max = 388 #21 0x00000000008d4ea8 in QtConcurrent::VoidStoredMemberFunctionPointerCall0<void, ProjectClip>::runFunctor (this=0x6125050) at /usr/include/qt/QtConcurrent/qtconcurrentstoredfunctioncall.h:205 No locals. #22 0x00000000004fb1f2 in QtConcurrent::RunFunctionTask<void>::run (this=0x6125050) at /usr/include/qt/QtConcurrent/qtconcurrentrunbase.h:136 No locals. #23 0x00007fffeca7801f in ?? () from /usr/lib/libQt5Core.so.5 No symbol table info available. #24 0x00007fffeca7bd78 in ?? () from /usr/lib/libQt5Core.so.5 No symbol table info available. #25 0x00007fffe8e32454 in start_thread () from /usr/lib/libpthread.so.0 No symbol table info available. #26 0x00007fffebe767df in clone () from /usr/lib/libc.so.6 No symbol table info available. Thread 33 (Thread 0x7fff85460700 (LWP 16830)): #0 0x00007fffbf258ef8 in ?? () from /usr/lib/libavcodec.so.57 No symbol table info available. #1 0x00007fffbed3edf9 in ?? () from /usr/lib/libavcodec.so.57 No symbol table info available. #2 0x00007fffbed51f84 in ?? () from /usr/lib/libavcodec.so.57 No symbol table info available. #3 0x00007fffbed6b9b1 in ?? () from /usr/lib/libavcodec.so.57 No symbol table info available. #4 0x00007fffbed6fb52 in ?? () from /usr/lib/libavcodec.so.57 No symbol table info available. #5 0x00007fffbed1ba6f in ?? () from /usr/lib/libavcodec.so.57 No symbol table info available. #6 0x00007fffbf0a7f52 in avcodec_decode_video2 () from /usr/lib/libavcodec.so.57 No symbol table info available. #7 0x00007fffc87d0e7e in producer_get_image (frame=frame@entry=0x7fff5d520ea0, buffer=buffer@entry=0x7fff8545f9d8, format=format@entry=0x7fff8545fa74, width=width@entry=0x7fff8545f854, height=height@entry=0x7fff8545f858, writable=writable@entry=1) at producer_avformat.c:1651 pts = <optimized out> ret = 0 int_position = 570 decode_errors = 0 self = 0x7fff5ca83d00 producer = 0x7fff5f6b9640 frame_properties = 0x7fff5d520ea0 position = 584 properties = 0x7fff5f6b9640 alpha = 0x0 got_picture = 0 image_size = 0 context = 0x7fff5d5cc980 stream = <optimized out> codec_context = 0x7fff5c707900 source_fps = <optimized out> req_position = 584 descriptor = <optimized out> must_decode = <optimized out> delay = 0 preseek = <optimized out> interp = <optimized out> #8 0x00007ffff6aa5477 in mlt_frame_get_image (self=self@entry=0x7fff5d520ea0, buffer=buffer@entry=0x7fff8545f9d8, format=format@entry=0x7fff8545fa74, width=width@entry=0x7fff8545f854, height=height@entry=0x7fff8545f858, writable=writable@entry=1) at mlt_frame.c:585 properties = 0x7fff5d520ea0 get_image = 0x7fffc87cff90 <producer_get_image> requested_format = <optimized out> error = 0 #9 0x00007fffc87caea0 in filter_get_image (frame=frame@entry=0x7fff5d520ea0, image=image@entry=0x7fff8545f9d8, format=format@entry=0x7fff8545fa74, width=width@entry=0x7fff8545f854, height=height@entry=0x7fff8545f858, writable=<optimized out>, writable@entry=0) at filter_avdeinterlace.c:306 error = 0 deinterlace = <optimized out> #10 0x00007ffff6aa5477 in mlt_frame_get_image (self=self@entry=0x7fff5d520ea0, buffer=buffer@entry=0x7fff8545f9d8, format=format@entry=0x7fff8545fa74, width=width@entry=0x7fff8545f854, height=height@entry=0x7fff8545f858, writable=writable@entry=0) at mlt_frame.c:585 properties = 0x7fff5d520ea0 get_image = 0x7fffc87cadf0 <filter_get_image> requested_format = <optimized out> error = 0 #11 0x00007fffb1b7e5f7 in get_image (frame=frame@entry=0x7fff5d520ea0, image=image@entry=0x7fff8545f9d8, format=format@entry=0x7fff8545fa74, width=width@entry=0x7fff8545f854, height=height@entry=0x7fff8545f858, writable=writable@entry=0) at filter_fieldorder.c:33 properties = 0x7fff5d520ea0 error = <optimized out> #12 0x00007ffff6aa5477 in mlt_frame_get_image (self=self@entry=0x7fff5d520ea0, buffer=buffer@entry=0x7fff8545f9d8, format=format@entry=0x7fff8545fa74, width=width@entry=0x7fff8545f854, height=height@entry=0x7fff8545f858, writable=writable@entry=0) at mlt_frame.c:585 properties = 0x7fff5d520ea0 get_image = 0x7fffb1b7e5d0 <get_image> requested_format = <optimized out> error = 0 #13 0x00007fffb1b7d29e in filter_get_image (frame=frame@entry=0x7fff5d520ea0, image=image@entry=0x7fff8545f9d8, format=format@entry=0x7fff8545fa74, width=width@entry=0x7fff8545f854, height=height@entry=0x7fff8545f858, writable=writable@entry=0) at filter_crop.c:76 error = 0 profile = <optimized out> properties = 0x7fff5d520ea0 left = 0 right = <optimized out> top = <optimized out> bottom = 0 owidth = <optimized out> oheight = <optimized out> #14 0x00007ffff6aa5477 in mlt_frame_get_image (self=self@entry=0x7fff5d520ea0, buffer=buffer@entry=0x7fff8545f9d8, format=format@entry=0x7fff8545fa74, width=width@entry=0x7fff8545f854, height=height@entry=0x7fff8545f858, writable=writable@entry=0) at mlt_frame.c:585 properties = 0x7fff5d520ea0 get_image = 0x7fffb1b7d1e0 <filter_get_image> requested_format = <optimized out> error = 0 #15 0x00007fffb1b826ac in filter_get_image (frame=frame@entry=0x7fff5d520ea0, image=image@entry=0x7fff8545f9d8, format=format@entry=0x7fff8545fa74, width=width@entry=0x7fff8545f930, height=height@entry=0x7fff8545f934, writable=writable@entry=0) at filter_rescale.c:221 interps = <optimized out> iwidth = 1920 iheight = 1080 owidth = 200 oheight = 150 properties = 0x7fff5d520ea0 filter_properties = 0x7fff5f6a55c0 scaler_method = 0x7fffc87cb150 <filter_scale> #16 0x00007ffff6aa5477 in mlt_frame_get_image (self=self@entry=0x7fff5d520ea0, buffer=buffer@entry=0x7fff8545f9d8, format=format@entry=0x7fff8545fa74, width=width@entry=0x7fff8545f930, height=height@entry=0x7fff8545f934, writable=writable@entry=0) at mlt_frame.c:585 properties = 0x7fff5d520ea0 get_image = 0x7fffb1b824e0 <filter_get_image> requested_format = <optimized out> error = 0 #17 0x00007fffb1b82bca in filter_get_image (frame=frame@entry=0x7fff5d520ea0, image=image@entry=0x7fff8545f9d8, format=format@entry=0x7fff8545fa74, width=width@entry=0x7fff8545fa7c, height=height@entry=0x7fff8545fa78, writable=writable@entry=0) at filter_resize.c:270 error = 0 properties = 0x7fff5d520ea0 filter = <optimized out> profile = <optimized out> aspect_ratio = 1 consumer_aspect = 1.3333333333333333 owidth = 200 oheight = 150 rescale = <optimized out> #18 0x00007ffff6aa5477 in mlt_frame_get_image (self=0x7fff5d520ea0, buffer=buffer@entry=0x7fff8545f9d8, format=format@entry=0x7fff8545fa74, width=width@entry=0x7fff8545fa7c, height=height@entry=0x7fff8545fa78, writable=writable@entry=0) at mlt_frame.c:585 properties = 0x7fff5d520ea0 get_image = 0x7fffb1b82a50 <filter_get_image> requested_format = <optimized out> error = 0 #19 0x00007ffff688c17e in Mlt::Frame::get_image (this=0x7fff5d84c420, format=@0x7fff8545fa74: mlt_image_yuv422, w=@0x7fff8545fa7c: 268, h=@0x7fff8545fa78: 150, writable=0) at MltFrame.cpp:83 image = 0x0 #20 0x00000000008e7420 in KThumb::getFrame (frame=0x7fff5d84c420, width=267, height=150) at /home/nicolas/Documents/Developpement/Projets/kdenlive/src/doc/kthumb.cpp:87 ow = 268 oh = 150 format = mlt_image_yuv422 imagedata = 0x7fff5d520ea0 "\240\016R]\377\177" p = <incomplete type> #21 0x00000000008cd007 in ProjectClip::doExtractImage (this=0x31b9d30) at /home/nicolas/Documents/Developpement/Projets/kdenlive/src/bin/projectclip.cpp:905 pos = 584 path = {static null = {<No data fields>}, d = 0x7fff5ca625f0} img = <incomplete type> frame = 0x7fff5d84c420 prod = 0x7fff5c011920 fullWidth = 267 ok = true thumbFolder = {d_ptr = {d = 0x7fff5d2f9440}} max = 776 #22 0x00000000008d4ea8 in QtConcurrent::VoidStoredMemberFunctionPointerCall0<void, ProjectClip>::runFunctor (this=0x6465200) at /usr/include/qt/QtConcurrent/qtconcurrentstoredfunctioncall.h:205 No locals. #23 0x00000000004fb1f2 in QtConcurrent::RunFunctionTask<void>::run (this=0x6465200) at /usr/include/qt/QtConcurrent/qtconcurrentrunbase.h:136 No locals. #24 0x00007fffeca7801f in ?? () from /usr/lib/libQt5Core.so.5 No symbol table info available. #25 0x00007fffeca7bd78 in ?? () from /usr/lib/libQt5Core.so.5 No symbol table info available. #26 0x00007fffe8e32454 in start_thread () from /usr/lib/libpthread.so.0 No symbol table info available. #27 0x00007fffebe767df in clone () from /usr/lib/libc.so.6 No symbol table info available. Thread 24 (Thread 0x7fff74ff8700 (LWP 16664)): #0 0x00007fffebe6d48d in poll () from /usr/lib/libc.so.6 No symbol table info available. #1 0x00007fffe5e30066 in ?? () from /usr/lib/libglib-2.0.so.0 No symbol table info available. #2 0x00007fffe5e3017c in g_main_context_iteration () from /usr/lib/libglib-2.0.so.0 No symbol table info available. #3 0x00007fffeccaa57f in QEventDispatcherGlib::processEvents(QFlags<QEventLoop::ProcessEventsFlag>) () from /usr/lib/libQt5Core.so.5 No symbol table info available. #4 0x00007fffecc540da in QEventLoop::exec(QFlags<QEventLoop::ProcessEventsFlag>) () from /usr/lib/libQt5Core.so.5 No symbol table info available. #5 0x00007fffeca770f3 in QThread::exec() () from /usr/lib/libQt5Core.so.5 No symbol table info available. #6 0x00007fffeca7bd78 in ?? () from /usr/lib/libQt5Core.so.5 No symbol table info available. #7 0x00007fffe8e32454 in start_thread () from /usr/lib/libpthread.so.0 No symbol table info available. #8 0x00007fffebe767df in clone () from /usr/lib/libc.so.6 No symbol table info available. Thread 22 (Thread 0x7fff75ffa700 (LWP 16662)): #0 0x00007fffebe6d48d in poll () from /usr/lib/libc.so.6 No symbol table info available. #1 0x00007fffe5e30066 in ?? () from /usr/lib/libglib-2.0.so.0 No symbol table info available. #2 0x00007fffe5e3017c in g_main_context_iteration () from /usr/lib/libglib-2.0.so.0 No symbol table info available. #3 0x00007fffeccaa57f in QEventDispatcherGlib::processEvents(QFlags<QEventLoop::ProcessEventsFlag>) () from /usr/lib/libQt5Core.so.5 No symbol table info available. #4 0x00007fffecc540da in QEventLoop::exec(QFlags<QEventLoop::ProcessEventsFlag>) () from /usr/lib/libQt5Core.so.5 No symbol table info available. #5 0x00007fffeca770f3 in QThread::exec() () from /usr/lib/libQt5Core.so.5 No symbol table info available. #6 0x00007fffeca7bd78 in ?? () from /usr/lib/libQt5Core.so.5 No symbol table info available. #7 0x00007fffe8e32454 in start_thread () from /usr/lib/libpthread.so.0 No symbol table info available. #8 0x00007fffebe767df in clone () from /usr/lib/libc.so.6 No symbol table info available. Thread 9 (Thread 0x7fff9a91a700 (LWP 16648)): #0 0x00007fffebe6d48d in poll () from /usr/lib/libc.so.6 No symbol table info available. #1 0x00007fffe5e30066 in ?? () from /usr/lib/libglib-2.0.so.0 No symbol table info available. #2 0x00007fffe5e3017c in g_main_context_iteration () from /usr/lib/libglib-2.0.so.0 No symbol table info available. #3 0x00007fffeccaa57f in QEventDispatcherGlib::processEvents(QFlags<QEventLoop::ProcessEventsFlag>) () from /usr/lib/libQt5Core.so.5 No symbol table info available. #4 0x00007fffecc540da in QEventLoop::exec(QFlags<QEventLoop::ProcessEventsFlag>) () from /usr/lib/libQt5Core.so.5 No symbol table info available. #5 0x00007fffeca770f3 in QThread::exec() () from /usr/lib/libQt5Core.so.5 No symbol table info available. #6 0x00007ffff0d19445 in ?? () from /usr/lib/libQt5Qml.so.5 No symbol table info available. #7 0x00007fffeca7bd78 in ?? () from /usr/lib/libQt5Core.so.5 No symbol table info available. #8 0x00007fffe8e32454 in start_thread () from /usr/lib/libpthread.so.0 No symbol table info available. #9 0x00007fffebe767df in clone () from /usr/lib/libc.so.6 No symbol table info available. Thread 7 (Thread 0x7fffa0892700 (LWP 16646)): #0 0x00007fffebe6d48d in poll () from /usr/lib/libc.so.6 No symbol table info available. #1 0x00007fffe5e30066 in ?? () from /usr/lib/libglib-2.0.so.0 No symbol table info available. #2 0x00007fffe5e3017c in g_main_context_iteration () from /usr/lib/libglib-2.0.so.0 No symbol table info available. #3 0x00007fffeccaa57f in QEventDispatcherGlib::processEvents(QFlags<QEventLoop::ProcessEventsFlag>) () from /usr/lib/libQt5Core.so.5 No symbol table info available. #4 0x00007fffecc540da in QEventLoop::exec(QFlags<QEventLoop::ProcessEventsFlag>) () from /usr/lib/libQt5Core.so.5 No symbol table info available. #5 0x00007fffeca770f3 in QThread::exec() () from /usr/lib/libQt5Core.so.5 No symbol table info available. #6 0x00007ffff0d19445 in ?? () from /usr/lib/libQt5Qml.so.5 No symbol table info available. #7 0x00007fffeca7bd78 in ?? () from /usr/lib/libQt5Core.so.5 No symbol table info available. #8 0x00007fffe8e32454 in start_thread () from /usr/lib/libpthread.so.0 No symbol table info available. #9 0x00007fffebe767df in clone () from /usr/lib/libc.so.6 No symbol table info available. Thread 6 (Thread 0x7fffa5666700 (LWP 16641)): #0 0x00007fffebe6d48d in poll () from /usr/lib/libc.so.6 No symbol table info available. #1 0x00007fffa6305cbc in ?? () from /usr/lib/libusb-1.0.so.0 No symbol table info available. #2 0x00007fffe8e32454 in start_thread () from /usr/lib/libpthread.so.0 No symbol table info available. #3 0x00007fffebe767df in clone () from /usr/lib/libc.so.6 No symbol table info available. Thread 5 (Thread 0x7fffc9bec700 (LWP 16640)): #0 0x00007fffebe6d48d in poll () from /usr/lib/libc.so.6 No symbol table info available. #1 0x00007fffe5e30066 in ?? () from /usr/lib/libglib-2.0.so.0 No symbol table info available. #2 0x00007fffe5e3017c in g_main_context_iteration () from /usr/lib/libglib-2.0.so.0 No symbol table info available. #3 0x00007fffeccaa59b in QEventDispatcherGlib::processEvents(QFlags<QEventLoop::ProcessEventsFlag>) () from /usr/lib/libQt5Core.so.5 No symbol table info available. #4 0x00007fffecc540da in QEventLoop::exec(QFlags<QEventLoop::ProcessEventsFlag>) () from /usr/lib/libQt5Core.so.5 No symbol table info available. #5 0x00007fffeca770f3 in QThread::exec() () from /usr/lib/libQt5Core.so.5 No symbol table info available. #6 0x00007ffff19ede75 in ?? () from /usr/lib/libQt5DBus.so.5 No symbol table info available. #7 0x00007fffeca7bd78 in ?? () from /usr/lib/libQt5Core.so.5 No symbol table info available. #8 0x00007fffe8e32454 in start_thread () from /usr/lib/libpthread.so.0 No symbol table info available. #9 0x00007fffebe767df in clone () from /usr/lib/libc.so.6 No symbol table info available. Thread 4 (Thread 0x7fffd0a55700 (LWP 16639)): #0 0x00007fffebe6d48d in poll () from /usr/lib/libc.so.6 No symbol table info available. #1 0x00007fffe5e30066 in ?? () from /usr/lib/libglib-2.0.so.0 No symbol table info available. #2 0x00007fffe5e303f2 in g_main_loop_run () from /usr/lib/libglib-2.0.so.0 No symbol table info available. #3 0x00007fffd3d5e7c6 in ?? () from /usr/lib/libgio-2.0.so.0 No symbol table info available. #4 0x00007fffe5e56345 in ?? () from /usr/lib/libglib-2.0.so.0 No symbol table info available. #5 0x00007fffe8e32454 in start_thread () from /usr/lib/libpthread.so.0 No symbol table info available. #6 0x00007fffebe767df in clone () from /usr/lib/libc.so.6 No symbol table info available. Thread 3 (Thread 0x7fffd1256700 (LWP 16638)): #0 0x00007fffebe6d48d in poll () from /usr/lib/libc.so.6 No symbol table info available. #1 0x00007fffe5e30066 in ?? () from /usr/lib/libglib-2.0.so.0 No symbol table info available. #2 0x00007fffe5e3017c in g_main_context_iteration () from /usr/lib/libglib-2.0.so.0 No symbol table info available. #3 0x00007fffe5e301c1 in ?? () from /usr/lib/libglib-2.0.so.0 No symbol table info available. #4 0x00007fffe5e56345 in ?? () from /usr/lib/libglib-2.0.so.0 No symbol table info available. #5 0x00007fffe8e32454 in start_thread () from /usr/lib/libpthread.so.0 No symbol table info available. #6 0x00007fffebe767df in clone () from /usr/lib/libc.so.6 No symbol table info available. Thread 2 (Thread 0x7fffdb2b0700 (LWP 16637)): #0 0x00007fffebe6d48d in poll () from /usr/lib/libc.so.6 No symbol table info available. #1 0x00007fffe988a8e0 in ?? () from /usr/lib/libxcb.so.1 No symbol table info available. #2 0x00007fffe988c679 in xcb_wait_for_event () from /usr/lib/libxcb.so.1 No symbol table info available. #3 0x00007fffdd1f1469 in ?? () from /usr/lib/libQt5XcbQpa.so.5 No symbol table info available. #4 0x00007fffeca7bd78 in ?? () from /usr/lib/libQt5Core.so.5 No symbol table info available. #5 0x00007fffe8e32454 in start_thread () from /usr/lib/libpthread.so.0 No symbol table info available. #6 0x00007fffebe767df in clone () from /usr/lib/libc.so.6 No symbol table info available. Thread 1 (Thread 0x7ffff7ec4800 (LWP 16632)): #0 0x00007fffebdc104f in raise () from /usr/lib/libc.so.6 No symbol table info available. #1 0x00007fffebdc247a in abort () from /usr/lib/libc.so.6 No symbol table info available. #2 0x00007fffeca624a1 in QMessageLogger::fatal(char const*, ...) const () from /usr/lib/libQt5Core.so.5 No symbol table info available. #3 0x00007fffeca5d9d1 in qt_assert_x(char const*, char const*, char const*, int) () from /usr/lib/libQt5Core.so.5 No symbol table info available. #4 0x00000000004b0b03 in QList<QString>::at (this=0x20667b0, i=-1100) at /usr/include/qt/QtCore/qlist.h:537 No locals. #5 0x00000000007cf599 in AudioGraphWidget::drawChanLabels (this=0x2066770, p=..., rect=..., barWidth=-2) at /home/nicolas/Documents/Developpement/Projets/kdenlive/src/monitor/scopes/audiographspectrum.cpp:198 label = {static null = {<No data fields>}, d = 0x1d5c340} x = 42 i = -1100 chanLabelCount = 31 stride = -1100 chanLabelWidth = 71 length = -2 prevX = 83 y = 99 #6 0x00000000007cf9ac in AudioGraphWidget::drawBackground (this=0x2066770) at /home/nicolas/Documents/Developpement/Projets/kdenlive/src/monitor/scopes/audiographspectrum.cpp:228 size = {wd = 64, ht = 100} p = {static staticMetaObject = {d = {superdata = 0x0, stringdata = 0x7fffed53f3e0, data = 0x7fffed53f320, static_metacall = 0x0, relatedMetaObjects = 0x0, extradata = 0x0}}, d_ptr = {d = 0xd40dc10}} rect = {x1 = 63, y1 = 0, x2 = 60, y2 = 99} offset = 63 barWidth = -2 #7 0x00000000007cf6ce in AudioGraphWidget::resizeEvent (this=0x2066770, event=0x7fffffffb6b0) at /home/nicolas/Documents/Developpement/Projets/kdenlive/src/monitor/scopes/audiographspectrum.cpp:209 No locals. #8 0x00007ffff038e36e in QWidget::event(QEvent*) () from /usr/lib/libQt5Widgets.so.5 No symbol table info available. #9 0x00007ffff0346e3c in QApplicationPrivate::notify_helper(QObject*, QEvent*) () from /usr/lib/libQt5Widgets.so.5 No symbol table info available. #10 0x00007ffff034e5b1 in QApplication::notify(QObject*, QEvent*) () from /usr/lib/libQt5Widgets.so.5 No symbol table info available. #11 0x00007fffecc55c80 in QCoreApplication::notifyInternal2(QObject*, QEvent*) () from /usr/lib/libQt5Core.so.5 No symbol table info available. #12 0x00007ffff0386c82 in QWidgetPrivate::sendPendingMoveAndResizeEvents(bool, bool) () from /usr/lib/libQt5Widgets.so.5 No symbol table info available. #13 0x00007ffff0386b64 in QWidgetPrivate::sendPendingMoveAndResizeEvents(bool, bool) () from /usr/lib/libQt5Widgets.so.5 No symbol table info available. #14 0x00007ffff0386b64 in QWidgetPrivate::sendPendingMoveAndResizeEvents(bool, bool) () from /usr/lib/libQt5Widgets.so.5 No symbol table info available. #15 0x00007ffff0386b64 in QWidgetPrivate::sendPendingMoveAndResizeEvents(bool, bool) () from /usr/lib/libQt5Widgets.so.5 No symbol table info available. #16 0x00007ffff038adfb in QWidgetPrivate::prepareToRender(QRegion const&, QFlags<QWidget::RenderFlag>) () from /usr/lib/libQt5Widgets.so.5 No symbol table info available. #17 0x00007ffff038b5a0 in QWidget::render(QPainter*, QPoint const&, QRegion const&, QFlags<QWidget::RenderFlag>) () from /usr/lib/libQt5Widgets.so.5 No symbol table info available. #18 0x00000000006029ab in Timeline::slotSaveTimelinePreview (this=0x2a5ed20, path=...) at /home/nicolas/Documents/Developpement/Projets/kdenlive/src/timeline/timeline.cpp:1303 img = <incomplete type> painter = {static staticMetaObject = {d = {superdata = 0x0, stringdata = 0x7fffed53f3e0, data = 0x7fffed53f320, static_metacall = 0x0, relatedMetaObjects = 0x0, extradata = 0x0}}, d_ptr = {d = 0xd4016d0}} #19 0x000000000096f628 in Timeline::qt_static_metacall (_o=0x2a5ed20, _c=QMetaObject::InvokeMetaMethod, _id=16, _a=0x7fffffffbdc0) at /home/nicolas/Documents/Developpement/Projets/kdenlive/build/src/moc_timeline.cpp:312 _t = 0x2a5ed20 #20 0x00007fffecc814e9 in QMetaObject::activate(QObject*, int, int, void**) () from /usr/lib/libQt5Core.so.5 No symbol table info available. #21 0x0000000000940f73 in KdenliveDoc::saveTimelinePreview (this=0x3431000, _t1=...) at /home/nicolas/Documents/Developpement/Projets/kdenlive/build/src/moc_kdenlivedoc.cpp:453 _a = {0x0, 0x7fffffffc020} #22 0x00000000004dfefc in KdenliveDoc::saveSceneList (this=0x3431000, path=..., scene=...) at /home/nicolas/Documents/Developpement/Projets/kdenlive/src/doc/kdenlivedoc.cpp:720 sceneList = {<QDomNode> = {impl = 0xce98770}, <No data fields>} file = <incomplete type> __PRETTY_FUNCTION__ = "bool KdenliveDoc::saveSceneList(const QString&, const QString&)" info = {d_ptr = {d = 0xd405290}} fileName = {static null = {<No data fields>}, d = 0xd401220} backupFolder = {d_ptr = {d = 0xd404fd0}} #23 0x000000000054aa8d in ProjectManager::saveFileAs (this=0x1114db0, outputFileName=...) at /home/nicolas/Documents/Developpement/Projets/kdenlive/src/project/projectmanager.cpp:270 scene = {static null = {<No data fields>}, d = 0xcf1b910} url = {d = 0x7fffffffc090} #24 0x000000000054b597 in ProjectManager::saveFile (this=0x1114db0) at /home/nicolas/Documents/Developpement/Projets/kdenlive/src/project/projectmanager.cpp:366 result = false __PRETTY_FUNCTION__ = "bool ProjectManager::saveFile()" #25 0x00000000009620f4 in ProjectManager::qt_static_metacall (_o=0x1114db0, _c=QMetaObject::InvokeMetaMethod, _id=7, _a=0x7fffffffc340) at /home/nicolas/Documents/Developpement/Projets/kdenlive/build/src/moc_projectmanager.cpp:170 _r = false _t = 0x1114db0 #26 0x00007fffecc814e9 in QMetaObject::activate(QObject*, int, int, void**) () from /usr/lib/libQt5Core.so.5 No symbol table info available. #27 0x00007ffff0340472 in QAction::triggered(bool) () from /usr/lib/libQt5Widgets.so.5 No symbol table info available. #28 0x00007ffff0342e60 in QAction::activate(QAction::ActionEvent) () from /usr/lib/libQt5Widgets.so.5 No symbol table info available. #29 0x00007ffff042f72d in ?? () from /usr/lib/libQt5Widgets.so.5 No symbol table info available. #30 0x00007ffff042f964 in QAbstractButton::mouseReleaseEvent(QMouseEvent*) () from /usr/lib/libQt5Widgets.so.5 No symbol table info available. #31 0x00007ffff04fb30a in QToolButton::mouseReleaseEvent(QMouseEvent*) () from /usr/lib/libQt5Widgets.so.5 No symbol table info available. #32 0x00007ffff038df18 in QWidget::event(QEvent*) () from /usr/lib/libQt5Widgets.so.5 No symbol table info available. #33 0x00007ffff04fb3e9 in QToolButton::event(QEvent*) () from /usr/lib/libQt5Widgets.so.5 No symbol table info available. #34 0x00007ffff0346e3c in QApplicationPrivate::notify_helper(QObject*, QEvent*) () from /usr/lib/libQt5Widgets.so.5 No symbol table info available. #35 0x00007ffff034f46d in QApplication::notify(QObject*, QEvent*) () from /usr/lib/libQt5Widgets.so.5 No symbol table info available. #36 0x00007fffecc55c80 in QCoreApplication::notifyInternal2(QObject*, QEvent*) () from /usr/lib/libQt5Core.so.5 No symbol table info available. #37 0x00007ffff034db1d in QApplicationPrivate::sendMouseEvent(QWidget*, QMouseEvent*, QWidget*, QWidget*, QWidget**, QPointer<QWidget>&, bool) () from /usr/lib/libQt5Widgets.so.5 No symbol table info available. #38 0x00007ffff03a7fc0 in ?? () from /usr/lib/libQt5Widgets.so.5 No symbol table info available. #39 0x00007ffff03aa763 in ?? () from /usr/lib/libQt5Widgets.so.5 No symbol table info available. #40 0x00007ffff0346e3c in QApplicationPrivate::notify_helper(QObject*, QEvent*) () from /usr/lib/libQt5Widgets.so.5 No symbol table info available. #41 0x00007ffff034e5b1 in QApplication::notify(QObject*, QEvent*) () from /usr/lib/libQt5Widgets.so.5 No symbol table info available. #42 0x00007fffecc55c80 in QCoreApplication::notifyInternal2(QObject*, QEvent*) () from /usr/lib/libQt5Core.so.5 No symbol table info available. #43 0x00007fffed1a40e3 in QGuiApplicationPrivate::processMouseEvent(QWindowSystemInterfacePrivate::MouseEvent*) () from /usr/lib/libQt5Gui.so.5 No symbol table info available. #44 0x00007fffed1a5c65 in QGuiApplicationPrivate::processWindowSystemEvent(QWindowSystemInterfacePrivate::WindowSystemEvent*) () from /usr/lib/libQt5Gui.so.5 No symbol table info available. #45 0x00007fffed183cbb in QWindowSystemInterface::sendWindowSystemEvents(QFlags<QEventLoop::ProcessEventsFlag>) () from /usr/lib/libQt5Gui.so.5 No symbol table info available. #46 0x00007fffdd227310 in ?? () from /usr/lib/libQt5XcbQpa.so.5 No symbol table info available. #47 0x00007fffe5e2fe67 in g_main_context_dispatch () from /usr/lib/libglib-2.0.so.0 No symbol table info available. #48 0x00007fffe5e300d0 in ?? () from /usr/lib/libglib-2.0.so.0 No symbol table info available. #49 0x00007fffe5e3017c in g_main_context_iteration () from /usr/lib/libglib-2.0.so.0 No symbol table info available. #50 0x00007fffeccaa57f in QEventDispatcherGlib::processEvents(QFlags<QEventLoop::ProcessEventsFlag>) () from /usr/lib/libQt5Core.so.5 No symbol table info available. #51 0x00007fffecc540da in QEventLoop::exec(QFlags<QEventLoop::ProcessEventsFlag>) () from /usr/lib/libQt5Core.so.5 No symbol table info available. #52 0x00007fffecc5c5cc in QCoreApplication::exec() () from /usr/lib/libQt5Core.so.5 No symbol table info available. #53 0x00000000008e9b29 in main (argc=1, argv=0x7fffffffdb58) at /home/nicolas/Documents/Developpement/Projets/kdenlive/src/main.cpp:157 app = <incomplete type> config = {d = 0xfd39e0} grp = <incomplete type> initialGroup = <incomplete type> __PRETTY_FUNCTION__ = "int main(int, char**)" forceBreeze = false aboutData = {d = 0xfa3500} loader = 0x7ffff3d85f70 parser = {d = 0xf7e470} programDBusService = <incomplete type> result = 0 -- You are receiving this mail because: You are watching all bug changes.