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
f5b549f5
Commit
f5b549f5
authored
Jul 28, 2011
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cosmetics: fix indentation (2 spaces -> 4 spaces)
parent
f44e0d59
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
71 additions
and
74 deletions
+71
-74
src/control/media_player.c
src/control/media_player.c
+2
-2
src/input/item.c
src/input/item.c
+22
-24
src/playlist/item.c
src/playlist/item.c
+47
-48
No files found.
src/control/media_player.c
View file @
f5b549f5
...
...
@@ -46,13 +46,13 @@
* mapping of libvlc_navigate_mode_t to vlc_action_t
*/
static
const
vlc_action_t
libvlc_navigate_to_action
[]
=
{
{
ACTIONID_NAV_ACTIVATE
,
ACTIONID_NAV_UP
,
ACTIONID_NAV_DOWN
,
ACTIONID_NAV_LEFT
,
ACTIONID_NAV_RIGHT
};
};
static
const
uint32_t
libvlc_navigate_to_action_size
=
\
sizeof
(
libvlc_navigate_to_action
)
/
sizeof
(
libvlc_navigate_to_action
[
0
]
);
...
...
src/input/item.c
View file @
f5b549f5
...
...
@@ -1003,7 +1003,6 @@ static void RecursiveNodeDelete( input_item_node_t *p_node )
void
input_item_node_Delete
(
input_item_node_t
*
p_node
)
{
if
(
p_node
->
p_parent
)
{
for
(
int
i
=
0
;
i
<
p_node
->
p_parent
->
i_children
;
i
++
)
if
(
p_node
->
p_parent
->
pp_children
[
i
]
==
p_node
)
{
...
...
@@ -1012,7 +1011,6 @@ void input_item_node_Delete( input_item_node_t *p_node )
i
);
break
;
}
}
RecursiveNodeDelete
(
p_node
);
}
...
...
src/playlist/item.c
View file @
f5b549f5
...
...
@@ -565,8 +565,7 @@ int playlist_InsertInputItemTree (
input_item_node_t
*
p_node
,
int
i_pos
,
bool
b_flat
)
{
playlist_item_t
*
p_first_leaf
=
NULL
;
int
i
=
RecursiveAddIntoParent
(
p_playlist
,
p_parent
,
p_node
,
i_pos
,
b_flat
,
&
p_first_leaf
);
return
i
;
return
RecursiveAddIntoParent
(
p_playlist
,
p_parent
,
p_node
,
i_pos
,
b_flat
,
&
p_first_leaf
);
}
...
...
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