Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
b8bd65ed
Commit
b8bd65ed
authored
Sep 26, 2005
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/video_chroma/i420_rgb16.c: fixed compiler warnings.
parent
3717fdfe
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
modules/video_chroma/i420_rgb16.c
modules/video_chroma/i420_rgb16.c
+4
-3
No files found.
modules/video_chroma/i420_rgb16.c
View file @
b8bd65ed
...
...
@@ -40,7 +40,8 @@
# include "i420_rgb_mmx.h"
#endif
static
void
SetOffset
(
int
,
int
,
int
,
int
,
vlc_bool_t
*
,
int
*
,
int
*
);
static
void
SetOffset
(
int
,
int
,
int
,
int
,
vlc_bool_t
*
,
unsigned
int
*
,
int
*
);
#if defined (MODULE_NAME_IS_i420_rgb)
/*****************************************************************************
...
...
@@ -63,7 +64,7 @@ void E_(I420_RGB16_dithering)( vout_thread_t *p_vout, picture_t *p_src,
uint8_t
*
p_v
=
p_src
->
V_PIXELS
;
vlc_bool_t
b_hscale
;
/* horizontal scaling type */
int
i_vscale
;
/* vertical scaling type */
unsigned
int
i_vscale
;
/* vertical scaling type */
unsigned
int
i_x
,
i_y
;
/* horizontal and vertical indexes */
unsigned
int
i_real_y
;
/* y % 4 */
...
...
@@ -586,7 +587,7 @@ void E_(I420_RGB32)( vout_thread_t *p_vout, picture_t *p_src,
*****************************************************************************/
static
void
SetOffset
(
int
i_width
,
int
i_height
,
int
i_pic_width
,
int
i_pic_height
,
vlc_bool_t
*
pb_hscale
,
int
*
pi_vscale
,
int
*
p_offset
)
unsigned
int
*
pi_vscale
,
int
*
p_offset
)
{
int
i_x
;
/* x position in destination */
int
i_scale_count
;
/* modulo counter */
...
...
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