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
41b72184
Commit
41b72184
authored
Jan 05, 2004
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Jan 05, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Decode stream number from AVI frame data and assign the data to
appropriate streams.
parent
c0a5a27c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
56 additions
and
11 deletions
+56
-11
mmoutput.c
dlls/winmm/mciavi/mmoutput.c
+55
-11
private_mciavi.h
dlls/winmm/mciavi/private_mciavi.h
+1
-0
No files found.
dlls/winmm/mciavi/mmoutput.c
View file @
41b72184
...
@@ -164,16 +164,37 @@ struct AviListBuild {
...
@@ -164,16 +164,37 @@ struct AviListBuild {
static
BOOL
MCIAVI_AddFrame
(
WINE_MCIAVI
*
wma
,
LPMMCKINFO
mmck
,
static
BOOL
MCIAVI_AddFrame
(
WINE_MCIAVI
*
wma
,
LPMMCKINFO
mmck
,
struct
AviListBuild
*
alb
)
struct
AviListBuild
*
alb
)
{
{
const
BYTE
*
p
;
DWORD
stream_n
;
if
(
mmck
->
ckid
==
ckidAVIPADDING
)
return
TRUE
;
if
(
mmck
->
ckid
==
ckidAVIPADDING
)
return
TRUE
;
p
=
(
const
BYTE
*
)
&
mmck
->
ckid
;
if
(
!
isxdigit
(
p
[
0
])
||
!
isxdigit
(
p
[
1
]))
{
WARN
(
"wrongly encoded stream #
\n
"
);
return
FALSE
;
}
stream_n
=
(
p
[
0
]
<=
'9'
)
?
(
p
[
0
]
-
'0'
)
:
(
tolower
(
p
[
0
])
-
'a'
+
10
);
stream_n
<<=
4
;
stream_n
|=
(
p
[
1
]
<=
'9'
)
?
(
p
[
1
]
-
'0'
)
:
(
tolower
(
p
[
1
])
-
'a'
+
10
);
TRACE
(
"ckid %4.4s (stream #%ld)
\n
"
,
(
LPSTR
)
&
mmck
->
ckid
,
stream_n
);
switch
(
TWOCCFromFOURCC
(
mmck
->
ckid
))
{
switch
(
TWOCCFromFOURCC
(
mmck
->
ckid
))
{
case
cktypeDIBbits
:
case
cktypeDIBbits
:
case
cktypeDIBcompressed
:
case
cktypeDIBcompressed
:
case
cktypePALchange
:
case
cktypePALchange
:
if
(
stream_n
!=
wma
->
video_stream_n
)
{
TRACE
(
"data belongs to another video stream #%ld
\n
"
,
stream_n
);
return
FALSE
;
}
TRACE
(
"Adding video frame[%ld]: %ld bytes
\n
"
,
TRACE
(
"Adding video frame[%ld]: %ld bytes
\n
"
,
alb
->
numVideoFrames
,
mmck
->
cksize
);
alb
->
numVideoFrames
,
mmck
->
cksize
);
if
(
!
mmck
->
cksize
)
TRACE
(
"got a zero sized frame
\n
"
);
if
(
alb
->
numVideoFrames
<
wma
->
dwPlayableVideoFrames
)
{
if
(
alb
->
numVideoFrames
<
wma
->
dwPlayableVideoFrames
)
{
wma
->
lpVideoIndex
[
alb
->
numVideoFrames
].
dwOffset
=
mmck
->
dwDataOffset
;
wma
->
lpVideoIndex
[
alb
->
numVideoFrames
].
dwOffset
=
mmck
->
dwDataOffset
;
...
@@ -186,6 +207,12 @@ static BOOL MCIAVI_AddFrame(WINE_MCIAVI* wma, LPMMCKINFO mmck,
...
@@ -186,6 +207,12 @@ static BOOL MCIAVI_AddFrame(WINE_MCIAVI* wma, LPMMCKINFO mmck,
}
}
break
;
break
;
case
cktypeWAVEbytes
:
case
cktypeWAVEbytes
:
if
(
stream_n
!=
wma
->
audio_stream_n
)
{
TRACE
(
"data belongs to another audio stream #%ld
\n
"
,
stream_n
);
return
FALSE
;
}
TRACE
(
"Adding audio frame[%ld]: %ld bytes
\n
"
,
TRACE
(
"Adding audio frame[%ld]: %ld bytes
\n
"
,
alb
->
numAudioBlocks
,
mmck
->
cksize
);
alb
->
numAudioBlocks
,
mmck
->
cksize
);
if
(
wma
->
lpWaveFormat
)
{
if
(
wma
->
lpWaveFormat
)
{
...
@@ -209,7 +236,7 @@ static BOOL MCIAVI_AddFrame(WINE_MCIAVI* wma, LPMMCKINFO mmck,
...
@@ -209,7 +236,7 @@ static BOOL MCIAVI_AddFrame(WINE_MCIAVI* wma, LPMMCKINFO mmck,
}
}
break
;
break
;
default:
default:
WARN
(
"Unknown frame type %04x
\n
"
,
TWOCCFromFOURCC
(
mmck
->
ckid
)
);
WARN
(
"Unknown frame type %4.4s
\n
"
,
(
LPSTR
)
&
mmck
->
ckid
);
break
;
break
;
}
}
return
TRUE
;
return
TRUE
;
...
@@ -222,6 +249,7 @@ BOOL MCIAVI_GetInfo(WINE_MCIAVI* wma)
...
@@ -222,6 +249,7 @@ BOOL MCIAVI_GetInfo(WINE_MCIAVI* wma)
MMCKINFO
mmckList
;
MMCKINFO
mmckList
;
MMCKINFO
mmckInfo
;
MMCKINFO
mmckInfo
;
struct
AviListBuild
alb
;
struct
AviListBuild
alb
;
DWORD
stream_n
;
if
(
mmioDescend
(
wma
->
hFile
,
&
ckMainRIFF
,
NULL
,
0
)
!=
0
)
{
if
(
mmioDescend
(
wma
->
hFile
,
&
ckMainRIFF
,
NULL
,
0
)
!=
0
)
{
WARN
(
"Can't find 'RIFF' chunk
\n
"
);
WARN
(
"Can't find 'RIFF' chunk
\n
"
);
...
@@ -261,7 +289,10 @@ BOOL MCIAVI_GetInfo(WINE_MCIAVI* wma)
...
@@ -261,7 +289,10 @@ BOOL MCIAVI_GetInfo(WINE_MCIAVI* wma)
mmioAscend
(
wma
->
hFile
,
&
mmckInfo
,
0
);
mmioAscend
(
wma
->
hFile
,
&
mmckInfo
,
0
);
TRACE
(
"Start of streams
\n
"
);
TRACE
(
"Start of streams
\n
"
);
do
wma
->
video_stream_n
=
0
;
wma
->
audio_stream_n
=
0
;
for
(
stream_n
=
0
;
stream_n
<
wma
->
mah
.
dwStreams
;
stream_n
++
)
{
{
MMCKINFO
mmckStream
;
MMCKINFO
mmckStream
;
...
@@ -276,25 +307,37 @@ BOOL MCIAVI_GetInfo(WINE_MCIAVI* wma)
...
@@ -276,25 +307,37 @@ BOOL MCIAVI_GetInfo(WINE_MCIAVI* wma)
continue
;
continue
;
}
}
TRACE
(
"Stream
fccType %4.4s
\n
"
,
(
LPSTR
)
&
mmckStream
.
fccType
);
TRACE
(
"Stream
#%ld fccType %4.4s
\n
"
,
stream_n
,
(
LPSTR
)
&
mmckStream
.
fccType
);
if
(
mmckStream
.
fccType
==
streamtypeVIDEO
)
if
(
mmckStream
.
fccType
==
streamtypeVIDEO
)
{
{
TRACE
(
"found video stream
\n
"
);
TRACE
(
"found video stream
\n
"
);
if
(
!
MCIAVI_GetInfoVideo
(
wma
,
&
mmckList
,
&
mmckStream
))
if
(
wma
->
inbih
)
return
FALSE
;
WARN
(
"ignoring another video stream
\n
"
);
else
{
if
(
!
MCIAVI_GetInfoVideo
(
wma
,
&
mmckList
,
&
mmckStream
))
return
FALSE
;
wma
->
video_stream_n
=
stream_n
;
}
}
}
else
if
(
mmckStream
.
fccType
==
streamtypeAUDIO
)
else
if
(
mmckStream
.
fccType
==
streamtypeAUDIO
)
{
{
TRACE
(
"found audio stream
\n
"
);
TRACE
(
"found audio stream
\n
"
);
if
(
!
MCIAVI_GetInfoAudio
(
wma
,
&
mmckList
,
&
mmckStream
))
if
(
wma
->
lpWaveFormat
)
return
FALSE
;
WARN
(
"ignoring another audio stream
\n
"
);
else
{
if
(
!
MCIAVI_GetInfoAudio
(
wma
,
&
mmckList
,
&
mmckStream
))
return
FALSE
;
wma
->
audio_stream_n
=
stream_n
;
}
}
}
else
else
TRACE
(
"Unsupported stream type %4.4s
\n
"
,
(
LPSTR
)
&
mmckStream
.
fccType
);
TRACE
(
"Unsupported stream type %4.4s
\n
"
,
(
LPSTR
)
&
mmckStream
.
fccType
);
mmioAscend
(
wma
->
hFile
,
&
mmckList
,
0
);
mmioAscend
(
wma
->
hFile
,
&
mmckList
,
0
);
}
while
(
1
);
}
TRACE
(
"End of streams
\n
"
);
TRACE
(
"End of streams
\n
"
);
...
@@ -583,7 +626,8 @@ LRESULT MCIAVI_DrawFrame(WINE_MCIAVI* wma)
...
@@ -583,7 +626,8 @@ LRESULT MCIAVI_DrawFrame(WINE_MCIAVI* wma)
TRACE
(
"Drawing frame %lu
\n
"
,
wma
->
dwCurrVideoFrame
);
TRACE
(
"Drawing frame %lu
\n
"
,
wma
->
dwCurrVideoFrame
);
if
(
!
wma
->
lpVideoIndex
[
wma
->
dwCurrVideoFrame
].
dwOffset
)
if
(
!
wma
->
lpVideoIndex
[
wma
->
dwCurrVideoFrame
].
dwOffset
||
!
wma
->
lpVideoIndex
[
wma
->
dwCurrVideoFrame
].
dwSize
)
return
FALSE
;
return
FALSE
;
mmioSeek
(
wma
->
hFile
,
wma
->
lpVideoIndex
[
wma
->
dwCurrVideoFrame
].
dwOffset
,
SEEK_SET
);
mmioSeek
(
wma
->
hFile
,
wma
->
lpVideoIndex
[
wma
->
dwCurrVideoFrame
].
dwOffset
,
SEEK_SET
);
...
...
dlls/winmm/mciavi/private_mciavi.h
View file @
41b72184
...
@@ -51,6 +51,7 @@ typedef struct {
...
@@ -51,6 +51,7 @@ typedef struct {
DWORD
dwSet
;
/* what's turned on: video & audio l&r */
DWORD
dwSet
;
/* what's turned on: video & audio l&r */
/* information on the loaded AVI file */
/* information on the loaded AVI file */
HMMIO
hFile
;
/* mmio file handle open as Element */
HMMIO
hFile
;
/* mmio file handle open as Element */
DWORD
video_stream_n
,
audio_stream_n
;
/* stream #s */
MainAVIHeader
mah
;
MainAVIHeader
mah
;
AVIStreamHeader
ash_video
;
AVIStreamHeader
ash_video
;
AVIStreamHeader
ash_audio
;
AVIStreamHeader
ash_audio
;
...
...
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