Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
a938cbeb
Commit
a938cbeb
authored
Jan 05, 2004
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Jan 05, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Accept all standard DIB compressions in the mciavi driver.
parent
7412125e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
mmoutput.c
dlls/winmm/mciavi/mmoutput.c
+5
-2
No files found.
dlls/winmm/mciavi/mmoutput.c
View file @
a938cbeb
...
...
@@ -411,9 +411,12 @@ BOOL MCIAVI_OpenVideo(WINE_MCIAVI* wma)
TRACE
(
"fcc %4.4s
\n
"
,
(
LPSTR
)
&
fcc
);
/* check
uncompressed AVI
*/
/* check
for builtin DIB compressions
*/
if
((
fcc
==
mmioFOURCC
(
'D'
,
'I'
,
'B'
,
' '
))
||
(
fcc
==
mmioFOURCC
(
'R'
,
'L'
,
'E'
,
' '
)))
{
(
fcc
==
mmioFOURCC
(
'R'
,
'L'
,
'E'
,
' '
))
||
(
fcc
==
BI_RGB
)
||
(
fcc
==
BI_RLE8
)
||
(
fcc
==
BI_RLE4
)
||
(
fcc
==
BI_BITFIELDS
))
{
wma
->
hic
=
0
;
MCIAVI_DrawFrame
(
wma
);
return
TRUE
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment