Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
6975cd69
Commit
6975cd69
authored
Feb 25, 2008
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
XvMC - Remove warnings (only unused parameters and variables are left)
parent
2a0f8bf1
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
modules/codec/xvmc/slice_xvmc_vld.c
modules/codec/xvmc/slice_xvmc_vld.c
+2
-2
modules/codec/xvmc/xxmc-config.h
modules/codec/xvmc/xxmc-config.h
+1
-1
No files found.
modules/codec/xvmc/slice_xvmc_vld.c
View file @
6975cd69
...
...
@@ -224,7 +224,7 @@ void mpeg2_xxmc_slice( mpeg2dec_t *mpeg2dec, picture_t *picture,
if
(
((
code
==
mpeg2dec
->
xvmc_last_slice_code
+
1
||
code
==
mpeg2dec
->
xvmc_last_slice_code
))
&&
code
<=
mpeg2dec
->
xxmc_mb_pic_height
)
(
unsigned
int
)
code
<=
mpeg2dec
->
xxmc_mb_pic_height
)
{
/*
* Send this slice to the output plugin. May stall for a long
...
...
@@ -246,7 +246,7 @@ void mpeg2_xxmc_slice( mpeg2dec_t *mpeg2dec, picture_t *picture,
mpeg2dec
->
xvmc_last_slice_code
=-
1
;
return
;
}
if
(
code
==
mpeg2dec
->
xxmc_mb_pic_height
)
if
(
(
unsigned
int
)
code
==
mpeg2dec
->
xxmc_mb_pic_height
)
{
/*
* We've encountered the last slice of this frame.
...
...
modules/codec/xvmc/xxmc-config.h
View file @
6975cd69
...
...
@@ -137,7 +137,7 @@
#define TIME_WITH_SYS_TIME 1
/* Version number of package */
#define VERSION "0.4.0"
/* #define VERSION "0.4.0" */
/* Define to 1 if your processor stores words with the most significant byte
first (like Motorola and SPARC, unlike Intel and VAX). */
...
...
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