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
97021ec3
Commit
97021ec3
authored
Jun 08, 2009
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix build.
parent
38e7aa15
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
20 additions
and
11 deletions
+20
-11
src/control/media_list_path.h
src/control/media_list_path.h
+8
-8
src/control/media_list_player.c
src/control/media_list_player.c
+1
-1
src/control/media_player.c
src/control/media_player.c
+3
-1
src/control/media_player_internal.h
src/control/media_player_internal.h
+5
-0
src/control/playlist.c
src/control/playlist.c
+2
-1
src/control/video.c
src/control/video.c
+1
-0
No files found.
src/control/media_list_path.h
View file @
97021ec3
...
...
@@ -66,7 +66,7 @@ static inline libvlc_media_list_path_t libvlc_media_list_path_with_root_index( i
}
/**************************************************************************
* path_deep
ness
(Media List Player Internal)
* path_deep
th
(Media List Player Internal)
**************************************************************************/
static
inline
int
libvlc_media_list_path_depth
(
const
libvlc_media_list_path_t
path
)
{
...
...
@@ -80,10 +80,10 @@ static inline int libvlc_media_list_path_depth( const libvlc_media_list_path_t p
**************************************************************************/
static
inline
void
libvlc_media_list_path_append
(
libvlc_media_list_path_t
*
p_path
,
int
index
)
{
int
old_deep
ness
=
libvlc_media_list_path_deepness
(
*
p_path
);
*
p_path
=
realloc
(
*
p_path
,
sizeof
(
int
)
*
(
old_deep
ness
+
2
));
*
p_path
[
old_deep
ness
]
=
index
;
*
p_path
[
old_deep
ness
+
1
]
=
-
1
;
int
old_deep
th
=
libvlc_media_list_path_depth
(
*
p_path
);
*
p_path
=
realloc
(
*
p_path
,
sizeof
(
int
)
*
(
old_deep
th
+
2
));
*
p_path
[
old_deep
th
]
=
index
;
*
p_path
[
old_deep
th
+
1
]
=
-
1
;
}
/**************************************************************************
...
...
@@ -106,9 +106,9 @@ static inline libvlc_media_list_path_t libvlc_media_list_path_copy_by_appending(
static
inline
libvlc_media_list_path_t
libvlc_media_list_path_copy
(
const
libvlc_media_list_path_t
path
)
{
libvlc_media_list_path_t
ret
;
int
de
epness
=
libvlc_media_list_path_deepness
(
path
);
ret
=
malloc
(
sizeof
(
int
)
*
(
de
epness
+
1
)
);
memcpy
(
ret
,
path
,
sizeof
(
int
)
*
(
de
epness
+
1
)
);
int
de
pth
=
libvlc_media_list_path_depth
(
path
);
ret
=
malloc
(
sizeof
(
int
)
*
(
de
pth
+
1
)
);
memcpy
(
ret
,
path
,
sizeof
(
int
)
*
(
de
pth
+
1
)
);
return
ret
;
}
...
...
src/control/media_list_player.c
View file @
97021ec3
...
...
@@ -86,7 +86,7 @@ get_next_path( libvlc_media_list_player_t * p_mlp )
p_mlp
->
p_mlist
,
p_mlp
->
current_playing_item_path
);
int
deepness
=
libvlc_media_list_path_de
epness
(
p_mlp
->
current_playing_item_path
);
int
deepness
=
libvlc_media_list_path_de
pth
(
p_mlp
->
current_playing_item_path
);
if
(
deepness
<
1
||
!
p_parent_of_playing_item
)
return
NULL
;
...
...
src/control/media_player.c
View file @
97021ec3
...
...
@@ -71,6 +71,8 @@ static inline libvlc_state_t vlc_to_libvlc_state( int vlc_state )
return
vlc_to_libvlc_state_array
[
vlc_state
];
}
static
void
libvlc_media_player_destroy
(
libvlc_media_player_t
*
p_mi
);
/*
* Release the associated input thread.
*
...
...
@@ -410,7 +412,7 @@ libvlc_media_player_t * libvlc_media_player_new_from_input_thread(
*
* Warning: No lock held here, but hey, this is internal. Caller must lock.
**************************************************************************/
void
libvlc_media_player_destroy
(
libvlc_media_player_t
*
p_mi
)
static
void
libvlc_media_player_destroy
(
libvlc_media_player_t
*
p_mi
)
{
input_thread_t
*
p_input_thread
;
libvlc_exception_t
p_e
;
...
...
src/control/media_player_internal.h
View file @
97021ec3
...
...
@@ -48,11 +48,16 @@ struct libvlc_media_player_t
uint32_t
xid
;
uint32_t
agl
;
}
drawable
;
bool
b_own_its_input_thread
;
};
/* Media player - audio, video */
input_thread_t
*
libvlc_get_input_thread
(
libvlc_media_player_t
*
,
libvlc_exception_t
*
);
libvlc_media_player_t
*
libvlc_media_player_new_from_input_thread
(
struct
libvlc_instance_t
*
p_libvlc_instance
,
input_thread_t
*
p_input
,
libvlc_exception_t
*
p_e
);
libvlc_track_description_t
*
libvlc_get_track_description
(
libvlc_media_player_t
*
p_mi
,
...
...
src/control/playlist.c
View file @
97021ec3
...
...
@@ -22,9 +22,10 @@
*****************************************************************************/
#include "libvlc_internal.h"
#include "media_player_internal.h"
#include "libvlc.h"
#include <vlc/
lib
vlc.h>
#include <vlc/vlc.h>
#include <vlc_playlist.h>
#include <assert.h>
...
...
src/control/video.c
View file @
97021ec3
...
...
@@ -34,6 +34,7 @@
#include <vlc_vout.h>
#include "media_player_internal.h"
#include "libvlc_internal.h"
/*
* Remember to release the returned vout_thread_t.
...
...
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