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
fe41bed6
Commit
fe41bed6
authored
Jun 30, 2002
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
all: ameliorations.
parent
32356203
Changes
2
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
320 additions
and
192 deletions
+320
-192
plugins/avi/avi.c
plugins/avi/avi.c
+316
-188
plugins/avi/libioRIFF.c
plugins/avi/libioRIFF.c
+4
-4
No files found.
plugins/avi/avi.c
View file @
fe41bed6
This diff is collapsed.
Click to expand it.
plugins/avi/libioRIFF.c
View file @
fe41bed6
...
...
@@ -2,7 +2,7 @@
* libioRIFF.c : AVI file Stream input module for vlc
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: libioRIFF.c,v 1.
9 2002/06/27 19:05:17 sam
Exp $
* $Id: libioRIFF.c,v 1.
10 2002/06/30 03:51:29 fenrir
Exp $
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
* This program is free software; you can redistribute it and/or modify
...
...
@@ -32,18 +32,18 @@
#include "libioRIFF.h"
inline
u16
__GetWLE
(
byte_t
*
p_buff
)
static
inline
u16
__GetWLE
(
byte_t
*
p_buff
)
{
return
(
(
*
p_buff
)
+
(
*
(
p_buff
+
1
)
<<
8
)
);
}
inline
u32
__GetDWLE
(
byte_t
*
p_buff
)
static
inline
u32
__GetDWLE
(
byte_t
*
p_buff
)
{
return
(
*
(
p_buff
)
+
(
*
(
p_buff
+
1
)
<<
8
)
+
(
*
(
p_buff
+
2
)
<<
16
)
+
(
*
(
p_buff
+
3
)
<<
24
)
);
}
inline
u32
__EVEN
(
u32
i
)
static
inline
u32
__EVEN
(
u32
i
)
{
return
(
(
i
&
1
)
?
++
i
:
i
);
}
...
...
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