Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
586988c0
Commit
586988c0
authored
May 25, 2007
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Compilation warning fixes.
parent
6d3ce593
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
9 deletions
+9
-9
modules/mux/avi.c
modules/mux/avi.c
+1
-1
modules/mux/mp4.c
modules/mux/mp4.c
+8
-8
No files found.
modules/mux/avi.c
View file @
586988c0
...
@@ -546,7 +546,7 @@ static void bo_AddLWordBE( buffer_out_t *p_bo, uint64_t i )
...
@@ -546,7 +546,7 @@ static void bo_AddLWordBE( buffer_out_t *p_bo, uint64_t i )
}
}
#endif
#endif
static
void
bo_AddFCC
(
buffer_out_t
*
p_bo
,
char
*
fcc
)
static
void
bo_AddFCC
(
buffer_out_t
*
p_bo
,
c
onst
c
har
*
fcc
)
{
{
bo_AddByte
(
p_bo
,
fcc
[
0
]
);
bo_AddByte
(
p_bo
,
fcc
[
0
]
);
bo_AddByte
(
p_bo
,
fcc
[
1
]
);
bo_AddByte
(
p_bo
,
fcc
[
1
]
);
...
...
modules/mux/mp4.c
View file @
586988c0
...
@@ -152,15 +152,15 @@ static void bo_add_16be ( bo_t *, uint16_t );
...
@@ -152,15 +152,15 @@ static void bo_add_16be ( bo_t *, uint16_t );
static
void
bo_add_24be
(
bo_t
*
,
uint32_t
);
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
*
,
char
*
);
static
void
bo_add_fourcc
(
bo_t
*
,
c
onst
c
har
*
);
static
void
bo_add_bo
(
bo_t
*
,
bo_t
*
);
static
void
bo_add_bo
(
bo_t
*
,
bo_t
*
);
static
void
bo_add_mem
(
bo_t
*
,
int
,
uint8_t
*
);
static
void
bo_add_mem
(
bo_t
*
,
int
,
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
);
static
bo_t
*
box_new
(
char
*
fcc
);
static
bo_t
*
box_new
(
c
onst
c
har
*
fcc
);
static
bo_t
*
box_full_new
(
char
*
fcc
,
uint8_t
v
,
uint32_t
f
);
static
bo_t
*
box_full_new
(
c
onst
c
har
*
fcc
,
uint8_t
v
,
uint32_t
f
);
static
void
box_fix
(
bo_t
*
box
);
static
void
box_fix
(
bo_t
*
box
);
static
void
box_free
(
bo_t
*
box
);
static
void
box_free
(
bo_t
*
box
);
static
void
box_gather
(
bo_t
*
box
,
bo_t
*
box2
);
static
void
box_gather
(
bo_t
*
box
,
bo_t
*
box2
);
...
@@ -1528,7 +1528,7 @@ static bo_t *GetStblBox( sout_mux_t *p_mux, mp4_stream_t *p_stream )
...
@@ -1528,7 +1528,7 @@ static bo_t *GetStblBox( sout_mux_t *p_mux, mp4_stream_t *p_stream )
return
stbl
;
return
stbl
;
}
}
static
int64_t
get_timestamp
();
static
int64_t
get_timestamp
(
void
);
static
uint32_t
mvhd_matrix
[
9
]
=
static
uint32_t
mvhd_matrix
[
9
]
=
{
0x10000
,
0
,
0
,
0
,
0x10000
,
0
,
0
,
0
,
0x40000000
};
{
0x10000
,
0
,
0
,
0
,
0x10000
,
0
,
0
,
0
,
0x40000000
};
...
@@ -2003,7 +2003,7 @@ static void bo_add_64be( bo_t *p_bo, uint64_t i )
...
@@ -2003,7 +2003,7 @@ static void bo_add_64be( bo_t *p_bo, uint64_t i )
bo_add_32be
(
p_bo
,
i
&
0xffffffff
);
bo_add_32be
(
p_bo
,
i
&
0xffffffff
);
}
}
static
void
bo_add_fourcc
(
bo_t
*
p_bo
,
char
*
fcc
)
static
void
bo_add_fourcc
(
bo_t
*
p_bo
,
c
onst
c
har
*
fcc
)
{
{
bo_add_8
(
p_bo
,
fcc
[
0
]
);
bo_add_8
(
p_bo
,
fcc
[
0
]
);
bo_add_8
(
p_bo
,
fcc
[
1
]
);
bo_add_8
(
p_bo
,
fcc
[
1
]
);
...
@@ -2071,7 +2071,7 @@ static void bo_add_bo( bo_t *p_bo, bo_t *p_bo2 )
...
@@ -2071,7 +2071,7 @@ static void bo_add_bo( bo_t *p_bo, bo_t *p_bo2 )
}
}
}
}
static
bo_t
*
box_new
(
char
*
fcc
)
static
bo_t
*
box_new
(
c
onst
c
har
*
fcc
)
{
{
bo_t
*
box
;
bo_t
*
box
;
...
@@ -2086,7 +2086,7 @@ static bo_t * box_new( char *fcc )
...
@@ -2086,7 +2086,7 @@ static bo_t * box_new( char *fcc )
return
box
;
return
box
;
}
}
static
bo_t
*
box_full_new
(
char
*
fcc
,
uint8_t
v
,
uint32_t
f
)
static
bo_t
*
box_full_new
(
c
onst
c
har
*
fcc
,
uint8_t
v
,
uint32_t
f
)
{
{
bo_t
*
box
;
bo_t
*
box
;
...
@@ -2152,7 +2152,7 @@ static void box_send( sout_mux_t *p_mux, bo_t *box )
...
@@ -2152,7 +2152,7 @@ static void box_send( sout_mux_t *p_mux, bo_t *box )
sout_AccessOutWrite
(
p_mux
->
p_access
,
p_buf
);
sout_AccessOutWrite
(
p_mux
->
p_access
,
p_buf
);
}
}
static
int64_t
get_timestamp
()
static
int64_t
get_timestamp
(
void
)
{
{
int64_t
i_timestamp
=
0
;
int64_t
i_timestamp
=
0
;
...
...
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