Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
842b0fc4
Commit
842b0fc4
authored
Mar 30, 2017
by
Thomas Guillem
Browse files
codec: hxxx: fix debug logs
parent
02a89c43
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/codec/hxxx_helper.c
View file @
842b0fc4
...
...
@@ -181,7 +181,7 @@ h264_helper_parse_nal(struct hxxx_helper *hh, const uint8_t *p_buf, size_t i_buf
hnal
->
h264_sps
=
p_sps
;
*
p_config_changed
=
true
;
hh
->
h264
.
i_current_sps
=
p_sps
->
i_id
;
fprintf
(
stderr
,
"new SPS parsed: %u
\n
"
,
p_sps
->
i_id
);
msg_Dbg
(
hh
->
p_obj
,
"new SPS parsed: %u
\n
"
,
p_sps
->
i_id
);
}
else
if
(
i_nal_type
==
H264_NAL_PPS
)
{
...
...
@@ -206,7 +206,7 @@ fprintf(stderr, "new SPS parsed: %u\n", p_sps->i_id);
hnal
->
h264_pps
=
p_pps
;
*
p_config_changed
=
true
;
fprintf
(
stderr
,
"new PPS parsed: %u
\n
"
,
p_pps
->
i_id
);
msg_Dbg
(
hh
->
p_obj
,
"new
PPS parsed: %u
\n
"
,
p_pps
->
i_id
);
}
else
if
(
i_nal_type
<=
H264_NAL_SLICE_IDR
&&
i_nal_type
!=
H264_NAL_UNKNOWN
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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