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
cfb3d343
Commit
cfb3d343
authored
Oct 02, 2007
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed const warnings.
parent
0db7cd1c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
modules/mux/asf.c
modules/mux/asf.c
+4
-4
No files found.
modules/mux/asf.c
View file @
cfb3d343
...
...
@@ -102,7 +102,7 @@ typedef struct
/* codec information */
uint16_t
i_tag
;
/* for audio */
vlc_fourcc_t
i_fourcc
;
/* for video */
char
*
psz_name
;
/* codec name */
c
onst
c
har
*
psz_name
;
/* codec name */
int
i_blockalign
;
/* for audio only */
vlc_bool_t
b_audio_correction
;
...
...
@@ -168,7 +168,7 @@ static void bo_addle_u32( bo_t *, uint32_t );
static
void
bo_addle_u64
(
bo_t
*
,
uint64_t
);
static
void
bo_add_mem
(
bo_t
*
,
uint8_t
*
,
int
);
static
void
bo_addle_str16
(
bo_t
*
,
char
*
);
static
void
bo_addle_str16
(
bo_t
*
,
c
onst
c
har
*
);
/*****************************************************************************
* Open:
...
...
@@ -721,7 +721,7 @@ static void bo_add_mem( bo_t *p_bo, uint8_t *p_mem, int i_size )
p_bo
->
i_buffer
+=
i_size
;
}
static
void
bo_addle_str16
(
bo_t
*
bo
,
char
*
str
)
static
void
bo_addle_str16
(
bo_t
*
bo
,
c
onst
c
har
*
str
)
{
bo_addle_u16
(
bo
,
strlen
(
str
)
+
1
);
for
(
;;
)
...
...
@@ -732,7 +732,7 @@ static void bo_addle_str16( bo_t *bo, char *str )
}
}
static
void
bo_addle_str16_nosize
(
bo_t
*
bo
,
char
*
str
)
static
void
bo_addle_str16_nosize
(
bo_t
*
bo
,
c
onst
c
har
*
str
)
{
for
(
;;
)
{
...
...
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