[digikam] [Bug 437328] digiKam crashes when a playback of video is started

2024-01-26 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=437328

caulier.gil...@gmail.com changed:

   What|Removed |Added

   Version Fixed In||8.3.0
 Resolution|DUPLICATE   |FIXED

--- Comment #13 from caulier.gil...@gmail.com ---
fixed with bug 435660

-- 
You are receiving this mail because:
You are watching all bug changes.

[digikam] [Bug 437328] digiKam crashes when a playback of video is started

2022-05-12 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=437328

--- Comment #12 from caulier.gil...@gmail.com ---
Git commit 0e2bc2695efc7d6d0d2ec52731c3f69095554b7f by Gilles Caulier.
Committed on 12/05/2022 at 15:24.
Pushed by cgilles into branch 'master'.

Hide advanced settings for each decoder as nothing is saved and restored
between the sessions. Only the list of decoder and the priority is saved
Related: bug 435660, bug 382582, bug 445422, bug 426951, bug 430873, bug
388475, bug 440668, bug 415778, bug 442802, bug 423580

M  +6-4core/libs/video/qtav/widgets/config/DecoderConfigPage.cpp
M  +1-1core/libs/video/qtav/widgets/config/DecoderConfigPage.h
M  +1-1core/utilities/setup/setupvideo.cpp

https://invent.kde.org/graphics/digikam/commit/0e2bc2695efc7d6d0d2ec52731c3f69095554b7f

-- 
You are receiving this mail because:
You are watching all bug changes.

[digikam] [Bug 437328] digiKam crashes when a playback of video is started

2022-05-12 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=437328

--- Comment #11 from caulier.gil...@gmail.com ---
Git commit 505bc17cd39702e14446c15d79d44d14d80fe005 by Gilles Caulier.
Committed on 12/05/2022 at 13:56.
Pushed by cgilles into branch 'master'.

Add Setup Video page from digiKam configuration dialog.
This allow to setup few options for media player as the decoder priority to
use.
Related: bug 435660, bug 382582, bug 445422, bug 426951, bug 430873, bug
388475, bug 440668, bug 415778, bug 442802, bug 423580

M  +24   -12   core/libs/video/player/mediaplayerview.cpp
M  +1-0core/libs/video/player/mediaplayerview.h
M  +22   -10   core/libs/video/player/slidevideo.cpp
M  +4-0core/libs/video/player/slidevideo.h
M  +2-2core/libs/video/qtav/widgets/config/AVPlayerConfigMngr.cpp
M  +1-1core/libs/video/qtav/widgets/config/DecoderConfigPage.cpp
M  +1-0core/utilities/setup/CMakeLists.txt
M  +29   -0core/utilities/setup/setup.cpp
M  +2-0core/utilities/setup/setup.h
M  +1-1core/utilities/setup/setuptemplate.cpp
A  +69   -0core/utilities/setup/setupvideo.h [License: GPL (v2+)]

https://invent.kde.org/graphics/digikam/commit/505bc17cd39702e14446c15d79d44d14d80fe005

-- 
You are receiving this mail because:
You are watching all bug changes.

[digikam] [Bug 437328] digiKam crashes when a playback of video is started

2022-05-12 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=437328

--- Comment #10 from caulier.gil...@gmail.com ---
Git commit 5aae9b7c21ab662d63b49f165163984809c1d585 by Gilles Caulier.
Committed on 12/05/2022 at 11:10.
Pushed by cgilles into branch 'master'.

Move AVPlayer config widgets to core/QtAV to allow to re-use these settings
view in a new Video section from digiKam Setup dialog.
the goal is to be able to configure the video decoder, the audio backend, and
the video renderer with video preview framework,
to prevent dysfunctions while playing audio and video media if wrong
decoder/backend/renderer is selected by default.

Currently none of these settings is possible in digiKam and playing video and
audio always depends of default settings done in QtAV
framework which can be badly configured for the available hardwares and modules
in client computer.

TODO: add the new video config pannel in digiKam Setup dialog to configure
decoder/backend/renderer.
Related: bug 435660, bug 382582, bug 445422, bug 426951, bug 430873, bug
388475, bug 440668, bug 415778, bug 442802, bug 423580

M  +2-14   core/avplayer/CMakeLists.txt
M  +3-6core/avplayer/main/MainWindow.cpp
M  +7-7core/avplayer/main/MainWindow.h
R  +2-0core/avplayer/utils/ConfigDialog.cpp [from:
core/avplayer/config/ConfigDialog.cpp - 099% similarity]
R  +8-5core/avplayer/utils/ConfigDialog.h [from:
core/avplayer/config/ConfigDialog.h - 090% similarity]
M  +2-0core/avplayer/utils/common.cpp
M  +12   -0core/libs/video/qtav/CMakeLists.txt
R  +2-2core/libs/video/qtav/widgets/config/AVFilterConfigPage.cpp
[from: core/avplayer/config/AVFilterConfigPage.cpp - 098% similarity]
R  +7-6core/libs/video/qtav/widgets/config/AVFilterConfigPage.h [from:
core/avplayer/config/AVFilterConfigPage.h - 086% similarity]
R  +2-2core/libs/video/qtav/widgets/config/AVFormatConfigPage.cpp
[from: core/avplayer/config/AVFormatConfigPage.cpp - 098% similarity]
R  +7-6core/libs/video/qtav/widgets/config/AVFormatConfigPage.h [from:
core/avplayer/config/AVFormatConfigPage.h - 084% similarity]
R  +2-2core/libs/video/qtav/widgets/config/AVPlayerConfigMngr.cpp
[from: core/avplayer/config/AVPlayerConfigMngr.cpp - 099% similarity]
R  +10   -6core/libs/video/qtav/widgets/config/AVPlayerConfigMngr.h [from:
core/avplayer/config/AVPlayerConfigMngr.h - 098% similarity]
R  +2-2core/libs/video/qtav/widgets/config/CaptureConfigPage.cpp [from:
core/avplayer/config/CaptureConfigPage.cpp - 099% similarity]
R  +7-6core/libs/video/qtav/widgets/config/CaptureConfigPage.h [from:
core/avplayer/config/CaptureConfigPage.h - 086% similarity]
R  +2-2core/libs/video/qtav/widgets/config/ClickableMenu.cpp [from:
core/avplayer/utils/ClickableMenu.cpp - 097% similarity]
R  +10   -6core/libs/video/qtav/widgets/config/ClickableMenu.h [from:
core/avplayer/utils/ClickableMenu.h - 082% similarity]
R  +2-2core/libs/video/qtav/widgets/config/ConfigPageBase.cpp [from:
core/avplayer/config/ConfigPageBase.cpp - 097% similarity]
R  +10   -6core/libs/video/qtav/widgets/config/ConfigPageBase.h [from:
core/avplayer/config/ConfigPageBase.h - 087% similarity]
R  +34   -37   core/libs/video/qtav/widgets/config/DecoderConfigPage.cpp [from:
core/avplayer/config/DecoderConfigPage.cpp - 098% similarity]
R  +11   -6core/libs/video/qtav/widgets/config/DecoderConfigPage.h [from:
core/avplayer/config/DecoderConfigPage.h - 082% similarity]
R  +2-2core/libs/video/qtav/widgets/config/MiscPage.cpp [from:
core/avplayer/config/MiscPage.cpp - 099% similarity]
R  +10   -6core/libs/video/qtav/widgets/config/MiscPage.h [from:
core/avplayer/config/MiscPage.h - 086% similarity]
R  +2-2core/libs/video/qtav/widgets/config/PropertyEditor.cpp [from:
core/avplayer/config/PropertyEditor.cpp - 099% similarity]
R  +10   -6core/libs/video/qtav/widgets/config/PropertyEditor.h [from:
core/avplayer/config/PropertyEditor.h - 093% similarity]
R  +2-2core/libs/video/qtav/widgets/config/ShaderPage.cpp [from:
core/avplayer/config/ShaderPage.cpp - 098% similarity]
R  +7-6core/libs/video/qtav/widgets/config/ShaderPage.h [from:
core/avplayer/config/ShaderPage.h - 085% similarity]
R  +2-2core/libs/video/qtav/widgets/config/Slider.cpp [from:
core/avplayer/utils/Slider.cpp - 099% similarity]
R  +10   -6core/libs/video/qtav/widgets/config/Slider.h [from:
core/avplayer/utils/Slider.h - 088% similarity]
R  +2-2core/libs/video/qtav/widgets/config/VideoEQConfigPage.cpp [from:
core/avplayer/config/VideoEQConfigPage.cpp - 099% similarity]
R  +10   -6core/libs/video/qtav/widgets/config/VideoEQConfigPage.h [from:
core/avplayer/config/VideoEQConfigPage.h - 088% similarity]

https://invent.kde.org/graphics/digikam/commit/5aae9b7c21ab662d63b49f165163984809c1d585

-- 
You are receiving this mail because:
You are watching all bug changes.

[digikam] [Bug 437328] digiKam crashes when a playback of video is started

2021-05-20 Thread Jozef Říha
https://bugs.kde.org/show_bug.cgi?id=437328

--- Comment #9 from Jozef Říha  ---
I don't think I am using anything exotic. Just a standard Gnome with Adwaita
theme. Qt theme I believe defaults to GTK+ to provide an unified look of the
apps.

-- 
You are receiving this mail because:
You are watching all bug changes.

[digikam] [Bug 437328] digiKam crashes when a playback of video is started

2021-05-20 Thread Maik Qualmann
https://bugs.kde.org/show_bug.cgi?id=437328

Maik Qualmann  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #8 from Maik Qualmann  ---
Ok, the crash in QRegion is deep in Qt. The crash log is almost identical to
bug 435660. I close here as a duplicate. Is there a special feature in Arch
Linux, which desktop theme is used?

Maik

*** This bug has been marked as a duplicate of bug 435660 ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[digikam] [Bug 437328] digiKam crashes when a playback of video is started

2021-05-20 Thread Jozef Říha
https://bugs.kde.org/show_bug.cgi?id=437328

--- Comment #7 from Jozef Říha  ---
corrupted size vs. prev_size
--Type  for more, q to quit, c to continue without paging--

Thread 1 "digikam" received signal SIGSEGV, Segmentation fault.
0x75cc92fa in QRegion::intersected(QRect const&) const () from
/usr/lib/libQt5Gui.so.5
(gdb) bt
#0  0x75cc92fa in QRegion::intersected(QRect const&) const () at
/usr/lib/libQt5Gui.so.5
#1  0x75cc94bf in QRegion::operator&(QRect const&) const () at
/usr/lib/libQt5Gui.so.5
#2  0x760d3fe3 in QWidget::update(QRegion const&) () at
/usr/lib/libQt5Widgets.so.5
#3  0x760eaab1 in QWidget::event(QEvent*) () at
/usr/lib/libQt5Widgets.so.5
#4  0x760a6d62 in QApplicationPrivate::notify_helper(QObject*, QEvent*)
() at /usr/lib/libQt5Widgets.so.5
#5  0x755d300a in QCoreApplication::notifyInternal2(QObject*, QEvent*)
() at /usr/lib/libQt5Core.so.5
#6  0x755d6109 in QCoreApplicationPrivate::sendPostedEvents(QObject*,
int, QThreadData*) () at /usr/lib/libQt5Core.so.5
#7  0x7562c604 in  () at /usr/lib/libQt5Core.so.5
#8  0x7fffe463302c in g_main_context_dispatch () at
/usr/lib/libglib-2.0.so.0
#9  0x7fffe4686b59 in  () at /usr/lib/libglib-2.0.so.0
#10 0x7fffe4630781 in g_main_context_iteration () at
/usr/lib/libglib-2.0.so.0
#11 0x7562bc36 in
QEventDispatcherGlib::processEvents(QFlags) ()
at /usr/lib/libQt5Core.so.5
#12 0x755d197c in
QEventLoop::exec(QFlags) () at
/usr/lib/libQt5Core.so.5
#13 0x77a1b78a in
Digikam::ScanController::completeCollectionScanCore(bool, bool) () at
/usr/lib/libdigikamgui.so.7.2.0
#14 0x77bac979 in Digikam::NewItemsFinder::slotStart() () at
/usr/lib/libdigikamgui.so.7.2.0
#15 0x7560015f in QObject::event(QEvent*) () at
/usr/lib/libQt5Core.so.5
#16 0x760a6d62 in QApplicationPrivate::notify_helper(QObject*, QEvent*)
() at /usr/lib/libQt5Widgets.so.5
#17 0x755d300a in QCoreApplication::notifyInternal2(QObject*, QEvent*)
() at /usr/lib/libQt5Core.so.5
#18 0x755d6109 in QCoreApplicationPrivate::sendPostedEvents(QObject*,
int, QThreadData*) () at /usr/lib/libQt5Core.so.5
#19 0x7562c604 in  () at /usr/lib/libQt5Core.so.5
#20 0x7fffe463302c in g_main_context_dispatch () at
/usr/lib/libglib-2.0.so.0
#21 0x7fffe4686b59 in  () at /usr/lib/libglib-2.0.so.0
#22 0x7fffe4630781 in g_main_context_iteration () at
/usr/lib/libglib-2.0.so.0
#23 0x7562bc36 in
QEventDispatcherGlib::processEvents(QFlags) ()
at /usr/lib/libQt5Core.so.5
#24 0x755d197c in
QEventLoop::exec(QFlags) () at
/usr/lib/libQt5Core.so.5
#25 0x755d9ee4 in QCoreApplication::exec() () at
/usr/lib/libQt5Core.so.5
#26 0x98be in main ()
(gdb)

-- 
You are receiving this mail because:
You are watching all bug changes.

[digikam] [Bug 437328] digiKam crashes when a playback of video is started

2021-05-20 Thread Maik Qualmann
https://bugs.kde.org/show_bug.cgi?id=437328

--- Comment #6 from Maik Qualmann  ---
Without a GDB backtrace of the crash, there is no way of knowing what the
possible cause is.

Maik

-- 
You are receiving this mail because:
You are watching all bug changes.

[digikam] [Bug 437328] digiKam crashes when a playback of video is started

2021-05-19 Thread Jozef Říha
https://bugs.kde.org/show_bug.cgi?id=437328

--- Comment #5 from Jozef Říha  ---
The video file plays fine in a web-browser or (after download) in mpv, totem,
vlc, mplayer, ffplay. Sorry about kodi - I was just thinking about another
thing while reporting (my mind was not fully focused).

Tried AppImage version - got no crash but the video playback is really slow and
sound is choppy. This may however be another problem though as I am getting
this for other videos as well (those that work with the native Arch Linux
version fine).

Still interested in collecting the trace or this is a wrong place for bug
report since it seems to be Arch-specific?

-- 
You are receiving this mail because:
You are watching all bug changes.

[digikam] [Bug 437328] digiKam crashes when a playback of video is started

2021-05-19 Thread Maik Qualmann
https://bugs.kde.org/show_bug.cgi?id=437328

--- Comment #4 from Maik Qualmann  ---
Could actually be a deeper problem in Arch Linux. 

https://bugs.archlinux.org/task/70374

Maik

-- 
You are receiving this mail because:
You are watching all bug changes.

[digikam] [Bug 437328] digiKam crashes when a playback of video is started

2021-05-19 Thread Maik Qualmann
https://bugs.kde.org/show_bug.cgi?id=437328

--- Comment #3 from Maik Qualmann  ---
I'm linking bug 435660 because both users are using Arch Linux. Both bugs may
be related.

Maik

-- 
You are receiving this mail because:
You are watching all bug changes.

[digikam] [Bug 437328] digiKam crashes when a playback of video is started

2021-05-19 Thread Maik Qualmann
https://bugs.kde.org/show_bug.cgi?id=437328

--- Comment #2 from Maik Qualmann  ---
Thanks for the link to the video download. I cannot reproduce the problem with
my native Linux development version, not even with the AppImage or with the
current Windows version. Do you use native Arch packages? If so, please test
with the AppImage. Otherwise, you have to create a backtrace, as described here
(https://www.digikam.org/contribute/), so that we can find out more about what
could be the cause for you.

First you had "Kodi" in the subject line. Does the problem also occur with
other players based on FFmpeg?

Maik

-- 
You are receiving this mail because:
You are watching all bug changes.

[digikam] [Bug 437328] digiKam crashes when a playback of video is started

2021-05-18 Thread Maik Qualmann
https://bugs.kde.org/show_bug.cgi?id=437328

Maik Qualmann  changed:

   What|Removed |Added

 CC||metzping...@gmail.com

--- Comment #1 from Maik Qualmann  ---
Without the video file or a backtrace, we will not be able to help. All of my
MP4 files play with no problem.

Maik

-- 
You are receiving this mail because:
You are watching all bug changes.

[digikam] [Bug 437328] digiKam crashes when a playback of video is started

2021-05-18 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=437328

caulier.gil...@gmail.com changed:

   What|Removed |Added

  Component|Database-Files  |Preview-Video
   Severity|normal  |crash
 CC||caulier.gil...@gmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.

[digikam] [Bug 437328] digiKam crashes when a playback of video is started

2021-05-18 Thread Jozef Říha
https://bugs.kde.org/show_bug.cgi?id=437328

Jozef Říha  changed:

   What|Removed |Added

Summary|Kodi crashes when a |digiKam crashes when a
   |playback of video is|playback of video is
   |started |started

-- 
You are receiving this mail because:
You are watching all bug changes.