Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
BC
public
mediastreamer2
Commits
60b83538
Commit
60b83538
authored
Jun 02, 2014
by
Ghislain MARY
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change misleading traces.
parent
5db89bd6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/voip/videostream.c
src/voip/videostream.c
+3
-3
No files found.
src/voip/videostream.c
View file @
60b83538
...
...
@@ -77,17 +77,17 @@ static void internal_event_cb(void *ud, MSFilter *f, unsigned int event, void *e
switch
(
event
)
{
case
MS_VIDEO_DECODER_SEND_PLI
:
ms_message
(
"
Send
PLI on videostream [%p]"
,
stream
);
ms_message
(
"
Request sending of
PLI on videostream [%p]"
,
stream
);
video_stream_send_pli
(
stream
);
break
;
case
MS_VIDEO_DECODER_SEND_SLI
:
sli
=
(
const
MSVideoCodecSLI
*
)
eventdata
;
ms_message
(
"
Send
SLI on videostream [%p]"
,
stream
);
ms_message
(
"
Request sending of
SLI on videostream [%p]"
,
stream
);
video_stream_send_sli
(
stream
,
sli
->
first
,
sli
->
number
,
sli
->
picture_id
);
break
;
case
MS_VIDEO_DECODER_SEND_RPSI
:
rpsi
=
(
const
MSVideoCodecRPSI
*
)
eventdata
;
ms_message
(
"
Send
RPSI on videostream [%p]"
,
stream
);
ms_message
(
"
Request sending of
RPSI on videostream [%p]"
,
stream
);
video_stream_send_rpsi
(
stream
,
rpsi
->
bit_string
,
rpsi
->
bit_string_len
);
break
;
}
...
...
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