Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
01c0cd44
Commit
01c0cd44
authored
Jan 15, 2015
by
Francois Cartegnie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mux: mp4: const correctness
parent
5f4c3c10
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/mux/mp4.c
modules/mux/mp4.c
+2
-2
No files found.
modules/mux/mp4.c
View file @
01c0cd44
...
@@ -214,7 +214,7 @@ static void bo_add_24be (bo_t *, uint32_t);
...
@@ -214,7 +214,7 @@ static void bo_add_24be (bo_t *, uint32_t);
static
void
bo_add_32be
(
bo_t
*
,
uint32_t
);
static
void
bo_add_32be
(
bo_t
*
,
uint32_t
);
static
void
bo_add_64be
(
bo_t
*
,
uint64_t
);
static
void
bo_add_64be
(
bo_t
*
,
uint64_t
);
static
void
bo_add_fourcc
(
bo_t
*
,
const
char
*
);
static
void
bo_add_fourcc
(
bo_t
*
,
const
char
*
);
static
void
bo_add_mem
(
bo_t
*
,
int
,
uint8_t
*
);
static
void
bo_add_mem
(
bo_t
*
,
int
,
const
uint8_t
*
);
static
void
bo_add_descr
(
bo_t
*
,
uint8_t
,
uint32_t
);
static
void
bo_add_descr
(
bo_t
*
,
uint8_t
,
uint32_t
);
static
void
bo_fix_32be
(
bo_t
*
,
int
,
uint32_t
);
static
void
bo_fix_32be
(
bo_t
*
,
int
,
uint32_t
);
...
@@ -2280,7 +2280,7 @@ static void bo_add_fourcc(bo_t *p_bo, const char *fcc)
...
@@ -2280,7 +2280,7 @@ static void bo_add_fourcc(bo_t *p_bo, const char *fcc)
bo_add_8
(
p_bo
,
fcc
[
3
]);
bo_add_8
(
p_bo
,
fcc
[
3
]);
}
}
static
void
bo_add_mem
(
bo_t
*
p_bo
,
int
i_size
,
uint8_t
*
p_mem
)
static
void
bo_add_mem
(
bo_t
*
p_bo
,
int
i_size
,
const
uint8_t
*
p_mem
)
{
{
for
(
int
i
=
0
;
i
<
i_size
;
i
++
)
for
(
int
i
=
0
;
i
<
i_size
;
i
++
)
bo_add_8
(
p_bo
,
p_mem
[
i
]);
bo_add_8
(
p_bo
,
p_mem
[
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