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
b1239508
Commit
b1239508
authored
Aug 19, 2011
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove redundant TAB_APPEND_CPP
parent
f83d51d4
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
4 deletions
+2
-4
include/vlc_arrays.h
include/vlc_arrays.h
+0
-2
include/vlc_vlm.h
include/vlc_vlm.h
+2
-2
No files found.
include/vlc_arrays.h
View file @
b1239508
...
...
@@ -107,8 +107,6 @@ static inline void *realloc_down( void *ptr, size_t size )
#define TAB_APPEND( count, tab, p ) \
TAB_APPEND_CAST( , count, tab, p )
#define TAB_APPEND_CPP( type, count, tab, p ) \
TAB_APPEND_CAST( (type**), count, tab, p )
#define TAB_FIND( count, tab, p, index ) \
do { \
...
...
include/vlc_vlm.h
View file @
b1239508
...
...
@@ -236,9 +236,9 @@ vlm_media_Copy( vlm_media_t *p_dst, const vlm_media_t *p_src )
p_dst
->
psz_name
=
strdup
(
p_src
->
psz_name
);
for
(
i
=
0
;
i
<
p_src
->
i_input
;
i
++
)
TAB_APPEND_C
PP
(
char
,
p_dst
->
i_input
,
p_dst
->
ppsz_input
,
strdup
(
p_src
->
ppsz_input
[
i
])
);
TAB_APPEND_C
AST
(
(
char
**
)
,
p_dst
->
i_input
,
p_dst
->
ppsz_input
,
strdup
(
p_src
->
ppsz_input
[
i
])
);
for
(
i
=
0
;
i
<
p_src
->
i_option
;
i
++
)
TAB_APPEND_C
PP
(
char
,
p_dst
->
i_option
,
p_dst
->
ppsz_option
,
strdup
(
p_src
->
ppsz_option
[
i
])
);
TAB_APPEND_C
AST
(
(
char
**
)
,
p_dst
->
i_option
,
p_dst
->
ppsz_option
,
strdup
(
p_src
->
ppsz_option
[
i
])
);
if
(
p_src
->
psz_output
)
p_dst
->
psz_output
=
strdup
(
p_src
->
psz_output
);
...
...
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