Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
9bb495cb
Commit
9bb495cb
authored
Jan 21, 2006
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Compile fix
parent
97034b01
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
+4
-5
modules/codec/quicktime.c
modules/codec/quicktime.c
+4
-5
No files found.
modules/codec/quicktime.c
View file @
9bb495cb
...
...
@@ -114,7 +114,7 @@ struct decoder_sys_t
#endif
/* LOADER */
HMODULE
qtml
;
HINSTANCE
qt
ime_qt
s
;
HINSTANCE
qts
;
OSErr
(
*
InitializeQTML
)
(
long
flags
);
OSErr
(
*
TerminateQTML
)
(
void
);
#endif
/* SYS_DARWIN */
...
...
@@ -777,7 +777,7 @@ static int OpenVideo( decoder_t *p_dec )
&
p_sys
->
OutBufferRect
,
0
,
0
,
0
,
p_sys
->
plane
,
p_dec
->
fmt_in
.
video
.
i_width
*
2
);
(
long
)
p_dec
->
fmt_in
.
video
.
i_width
*
2
);
msg_Dbg
(
p_dec
,
"NewGWorldFromPtr returned:%ld
\n
"
,
65536
-
(
i_result
&
0xffff
)
);
...
...
@@ -800,12 +800,11 @@ static int OpenVideo( decoder_t *p_dec )
msg_Dbg
(
p_dec
,
"quicktime_video: ImageCodecPreDecompress cres=0x%X
\n
"
,
(
int
)
cres
);
p_dec
->
fmt_out
.
i_codec
=
VLC_FOURCC
(
'Y'
,
'U'
,
'Y'
,
'2'
);
es_format_Init
(
&
p_dec
->
fmt_out
,
VIDEO_ES
,
VLC_FOURCC
(
'Y'
,
'U'
,
'Y'
,
'2'
)
);
p_dec
->
fmt_out
.
video
.
i_width
=
p_dec
->
fmt_in
.
video
.
i_width
;
p_dec
->
fmt_out
.
video
.
i_height
=
p_dec
->
fmt_in
.
video
.
i_height
;
p_dec
->
fmt_out
.
video
.
i_aspect
=
VOUT_ASPECT_FACTOR
*
p_dec
->
fmt_in
.
video
.
i_width
/
p_dec
->
fmt_in
.
video
.
i_height
;
vlc_mutex_unlock
(
lockval
.
p_address
);
return
VLC_SUCCESS
;
...
...
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