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
10eab32c
Commit
10eab32c
authored
Jun 28, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
__EVEN: expansion-safety
parent
ce145053
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
modules/demux/avi/libavi.c
modules/demux/avi/libavi.c
+1
-1
modules/demux/wav.c
modules/demux/wav.c
+1
-1
No files found.
modules/demux/avi/libavi.c
View file @
10eab32c
...
...
@@ -33,7 +33,7 @@
#define AVI_DEBUG 1
#define __EVEN( x ) (
(x)&0x01 ? (x)+1 : (x)
)
#define __EVEN( x ) (
((x) + 1) & ~1
)
static
vlc_fourcc_t
GetFOURCC
(
const
uint8_t
*
p_buff
)
{
...
...
modules/demux/wav.c
View file @
10eab32c
...
...
@@ -73,7 +73,7 @@ struct demux_sys_t
int
pi_chan_table
[
AOUT_CHAN_MAX
];
};
#define __EVEN( x ) (
( (x)%2 != 0 ) ? ((x)+1) : (x)
)
#define __EVEN( x ) (
((x) + 1) & ~1
)
static
int
ChunkFind
(
demux_t
*
,
const
char
*
,
unsigned
int
*
);
...
...
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