Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
mediastreamer2
Commits
9de5799b
Commit
9de5799b
authored
Oct 13, 2014
by
François Grisez
Browse files
Add a parameter to ms_file_player_new() to specify the id of the drawing window
parent
f4c48ff7
Changes
3
Hide whitespace changes
Inline
Side-by-side
include/mediastreamer2/fileplayer.h
View file @
9de5799b
...
...
@@ -19,9 +19,10 @@ typedef void (*MSFilePlayerEofCallback)(void *user_data);
* @brief Instanciate a file player
* @param snd_card Playback sound card
* @param video_display_name Video out
* @param window_id Pointer on the drawing window
* @return A pointer on the created MSFilePlayer
*/
MS2_PUBLIC
MSFilePlayer
*
ms_file_player_new
(
MSSndCard
*
snd_card
,
const
char
*
video_display_name
);
MS2_PUBLIC
MSFilePlayer
*
ms_file_player_new
(
MSSndCard
*
snd_card
,
const
char
*
video_display_name
,
void
*
window_id
);
/**
* @brief Free a file player
...
...
@@ -43,7 +44,7 @@ MS2_PUBLIC void ms_file_player_set_eof_callback(MSFilePlayer *obj, MSFilePlayerE
* @param filepath Path of the file to open
* @return TRUE if the file could be opened
*/
bool_t
ms_file_player_open
(
MSFilePlayer
*
obj
,
const
char
*
filepath
);
MS2_PUBLIC
bool_t
ms_file_player_open
(
MSFilePlayer
*
obj
,
const
char
*
filepath
);
/**
* @brief Close a media file
...
...
src/voip/msfileplayer.c
View file @
9de5799b
...
...
@@ -56,6 +56,7 @@ struct _MSFilePlayer {
ms_mutex_t
cb_access
;
MSSndCard
*
snd_card
;
char
*
video_display
;
void
*
window_id
;
};
static
bool_t
_get_format
(
const
char
*
filepath
,
FileFormat
*
format
);
...
...
@@ -83,13 +84,14 @@ static FileFormat four_cc_to_file_format(const FourCC four_cc) {
return
FILE_FORMAT_UNKNOWN
;
}
MSFilePlayer
*
ms_file_player_new
(
MSSndCard
*
snd_card
,
const
char
*
video_display_name
)
{
MSFilePlayer
*
ms_file_player_new
(
MSSndCard
*
snd_card
,
const
char
*
video_display_name
,
void
*
window_id
)
{
MSFilePlayer
*
obj
=
(
MSFilePlayer
*
)
ms_new0
(
MSFilePlayer
,
1
);
obj
->
ticker
=
ms_ticker_new
();
ms_mutex_init
(
&
obj
->
cb_access
,
NULL
);
obj
->
snd_card
=
snd_card
;
if
(
video_display_name
!=
NULL
&&
strlen
(
video_display_name
)
>
0
)
{
obj
->
video_display
=
ms_strdup
(
video_display_name
);
obj
->
window_id
=
window_id
;
}
return
obj
;
}
...
...
@@ -341,7 +343,9 @@ static void _create_sinks(MSFilePlayer *obj) {
if
(
obj
->
video_pin_fmt
.
fmt
)
{
if
(
obj
->
video_display
)
{
obj
->
video_sink
=
ms_filter_new_from_name
(
obj
->
video_display
);
if
(
obj
->
video_sink
==
NULL
)
{
if
(
obj
->
video_sink
)
{
if
(
obj
->
window_id
)
ms_filter_call_method
(
obj
->
video_sink
,
MS_VIDEO_DISPLAY_SET_NATIVE_WINDOW_ID
,
&
obj
->
window_id
);
}
else
{
ms_error
(
"Could not create video sink: %s"
,
obj
->
video_display
);
}
}
...
...
tester/mediastreamer2_player_tester.c
View file @
9de5799b
...
...
@@ -51,7 +51,7 @@ static void play_file(const char *filepath, bool_t unsupported_format) {
eof_init
(
&
eof
);
file_player
=
ms_file_player_new
(
snd_card
,
display_name
);
file_player
=
ms_file_player_new
(
snd_card
,
display_name
,
NULL
);
CU_ASSERT_PTR_NOT_NULL
(
file_player
);
if
(
file_player
==
NULL
)
return
;
...
...
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