projects
/
platform
/
upstream
/
gstreamer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a10c46a
)
hls: Remove stray '\n' from debug statement
author
Edward Hervey
<edward@centricular.com>
Mon, 22 Oct 2018 07:59:24 +0000
(09:59 +0200)
committer
Edward Hervey
<bilboed@bilboed.com>
Mon, 22 Oct 2018 07:59:24 +0000
(09:59 +0200)
ext/hls/gsthlsdemux-util.c
patch
|
blob
|
history
diff --git
a/ext/hls/gsthlsdemux-util.c
b/ext/hls/gsthlsdemux-util.c
index
d845673
..
95f61d4
100644
(file)
--- a/
ext/hls/gsthlsdemux-util.c
+++ b/
ext/hls/gsthlsdemux-util.c
@@
-170,7
+170,7
@@
handle_pat (GstHLSTSReader * r, const guint8 * data, guint size)
guint program_num = GST_READ_UINT16_BE (data);
guint val = GST_READ_UINT16_BE (data + 2) & 0x1fff;
if (program_num != 0) {
- GST_DEBUG (" program %04x: pmt_pid : %04x
\n
", program_num, val);
+ GST_DEBUG (" program %04x: pmt_pid : %04x", program_num, val);
r->pmt_pid = val;
return TRUE;
}