Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
77b6d227
Commit
77b6d227
authored
Aug 22, 2009
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Quicktime: kill warnings for Win32
parent
bd3b41a5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
modules/codec/quicktime.c
modules/codec/quicktime.c
+6
-2
No files found.
modules/codec/quicktime.c
View file @
77b6d227
...
...
@@ -80,7 +80,9 @@ static int OpenAudio( decoder_t * );
static
int
OpenVideo
(
decoder_t
*
);
static
aout_buffer_t
*
DecodeAudio
(
decoder_t
*
,
block_t
**
);
#ifndef WIN32
static
picture_t
*
DecodeVideo
(
decoder_t
*
,
block_t
**
);
#endif
#define FCC( a, b , c, d ) \
((uint32_t)( ((a)<<24)|((b)<<16)|((c)<<8)|(d)))
...
...
@@ -214,7 +216,9 @@ static const int pi_channels_maps[6] =
};
static
int
QTAudioInit
(
decoder_t
*
);
#ifndef WIN32
static
int
QTVideoInit
(
decoder_t
*
);
#endif
/*****************************************************************************
* Open: probe the decoder and return score
...
...
@@ -229,7 +233,7 @@ static int Open( vlc_object_t *p_this )
#ifdef __APPLE__
OSErr
err
;
SInt32
qtVersion
,
macosversion
;
err
=
Gestalt
(
gestaltQuickTimeVersion
,
&
qtVersion
);
err
=
Gestalt
(
gestaltSystemVersion
,
&
macosversion
);
#ifndef NDEBUG
...
...
@@ -840,7 +844,7 @@ static int OpenVideo( decoder_t *p_dec )
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
(
&
qt_mutex
);
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