http://bugs.winehq.org/show_bug.cgi?id=23345
Summary: Adobe Reader freezes when trying to open embedded multimedia Product: Wine Version: 1.2-rc4 Platform: x86-64 URL: http://www.adobe.com/ OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: -unknown AssignedTo: wine-bugs@winehq.org ReportedBy: septim.dt@gmail.com
Created an attachment (id=29085) --> (http://bugs.winehq.org/attachment.cgi?id=29085) Terminal output with backtrace on wine-1.2-rc4-119-g410f8e9
When I try to play an avi video embedded in a PDF file (made with the LaTeX multimedia package) Adobe Reader freezes. I also found this problem reported on the AppDB page, but I couldn't find a bug report. Terminal output with backtrace attached (using wine wine-1.2-rc4-119-g410f8e9).
http://bugs.winehq.org/show_bug.cgi?id=23345
Sven septim.dt@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Keywords| |download
http://bugs.winehq.org/show_bug.cgi?id=23345
--- Comment #1 from Sven septim.dt@gmail.com 2010-06-23 13:49:45 --- Forgot to add that I'm using Adobe Reader 9.3.0
http://bugs.winehq.org/show_bug.cgi?id=23345
Ken Sharp kennybobs@o2.co.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- URL|http://www.adobe.com/ |ftp://ftp.adobe.com/pub/ado | |be/reader/win/9.x/9.3/enu/A | |dbeRdr930_en_US.exe CC| |kennybobs@o2.co.uk
--- Comment #2 from Ken Sharp kennybobs@o2.co.uk 2010-11-24 09:57:04 CST --- Is this still an issue in latest git, and if so, do you have a sample .pdf that this can be tested with? Thanks.
http://bugs.winehq.org/show_bug.cgi?id=23345
--- Comment #3 from Sven sven.wine@gmail.com 2010-11-24 10:16:03 CST --- Created an attachment (id=32111) --> (http://bugs.winehq.org/attachment.cgi?id=32111) Sample pdf + movie
It's still a problem. I attached a sample pdf and movie, both created by me.
http://bugs.winehq.org/show_bug.cgi?id=23345
Ken Sharp kennybobs@o2.co.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed|0 |1
--- Comment #4 from Ken Sharp kennybobs@o2.co.uk 2010-11-29 20:31:55 CST --- Confirming in wine-1.3.8-66-gc82aa50, although the backtrace is different.
I don't know if any winetricks packages provide msvfw32 but that might be worth a try.
http://bugs.winehq.org/show_bug.cgi?id=23345
Ken Sharp kennybobs@o2.co.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- Attachment #29085|0 |1 is obsolete| |
--- Comment #5 from Ken Sharp kennybobs@o2.co.uk 2010-11-29 20:36:40 CST --- Created an attachment (id=32237) --> (http://bugs.winehq.org/attachment.cgi?id=32237) wine-1.3.8-66-gc82aa50 console output
http://bugs.winehq.org/show_bug.cgi?id=23345
--- Comment #6 from Ken Sharp kennybobs@o2.co.uk 2012-09-06 07:31:12 CDT --- Still present in Wine 1.5.12
http://bugs.winehq.org/show_bug.cgi?id=23345
--- Comment #7 from Ken Sharp imwellcushtymelike@gmail.com --- Still present in wine-1.7.10-191-g8953c74
https://bugs.winehq.org/show_bug.cgi?id=23345
zippy gohabsgo60@yahoo.ca changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |gohabsgo60@yahoo.ca
https://bugs.winehq.org/show_bug.cgi?id=23345
--- Comment #8 from Ken Sharp imwellcushtymelike@gmail.com --- Still present in wine-1.7.44-199-g714abcb
https://bugs.winehq.org/show_bug.cgi?id=23345
winetest@luukku.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |winetest@luukku.com
--- Comment #9 from winetest@luukku.com --- I don't get a crash and I can open the pdf and the gui is is still usable after opening the file.
But it gives an error...
abplane.avi cannot be found. Would you like to choose a replacement file?
If I rename the avi into that I do get a crash when clicking on the mid of the application.
wine 2.0.rc1.
https://bugs.winehq.org/show_bug.cgi?id=23345
Ken Sharp imwellcushtymelike@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Attachment #32237|0 |1 is obsolete| |
--- Comment #10 from Ken Sharp imwellcushtymelike@gmail.com --- Created attachment 59979 --> https://bugs.winehq.org/attachment.cgi?id=59979 wine-3.0-rc2-35-gfb3c1da backtrace
No change in wine-3.0-rc2-35-gfb3c1da and Staging 2.21, though the trace is a little more forthcoming:
0009:err:msvideo:ICLocate Required media codec 'vidc DX50' not found!
$ file output.avi output.avi: RIFF (little-endian) data, AVI, 800 x 600, video: DivX 5
I tried "winetricks xvid" but it refuses to install without WMP11.
I then tried wmp10 for cheeky giggles but it didn't help either.
https://bugs.winehq.org/show_bug.cgi?id=23345
--- Comment #11 from Sven sven.wine@gmail.com --- This still happens with the most recent Acrobat Reader and Wine, so I took some time to figure out what's going on here.
The error happens in
0009:trace:mci:MCIWndProc MCIWNDM_SENDSTRINGW (null)
Reason for this is that before this
0009:trace:mci:MCIWndProc MCIWNDM_SETOWNER xxxxxx
is called with the same value (xxxxxx) as the pointer to the MCIWnd. So now MCIWnd is its own parent. Then MCIWNDM_OPENA is sent, which eventually calls MCIWND_notify_pos, which sends MCIWNDM_NOTIFYPOS to the owner. However, if we look at vfw.h we see that
#define MCIWNDM_NOTIFYPOS (WM_USER + 201) #define MCIWNDM_SENDSTRINGW (WM_USER + 201)
Since the MCIWnd is its own owner, it treats the message as MCIWNDM_SENDSTRINGW with a string pointer instead of MCIWNDM_NOTIFYPOS with position 0.
I am not sure how this actually works on Windows. Maybe the position is always 0 and MCIWNDM_SENDSTRINGW has null pointer handling or something? I wanted to add some tests for this, but there are no tests for MCIWnd yet, so I can't just add a null pointer test. I'll first have to figure out how MCIWnd actually works and then write some tests. I'll try to do that in the near future.
https://bugs.winehq.org/show_bug.cgi?id=23345
Sven sven.wine@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Component|-unknown |msvfw32
https://bugs.winehq.org/show_bug.cgi?id=23345
--- Comment #12 from Ken Sharp imwellcushtymelike@gmail.com --- No change in Wine 7.9
https://bugs.winehq.org/show_bug.cgi?id=23345
Neko-san nekoNexus@protonmail.ch changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |nekoNexus@protonmail.ch