[vlc-commits] codec/hxxx_helper: removing redundant new-line from call to msg_Dbg

Filip Roséen git at videolan.org
Thu May 18 18:09:19 CEST 2017


vlc | branch: master | Filip Roséen <filip at atch.se> | Thu May 18 12:19:34 2017 +0200| [ca6bd56c0b8ef29df8c2eca15a22b593ffd25159] | committer: Rémi Denis-Courmont

codec/hxxx_helper: removing redundant new-line from call to msg_Dbg

Signed-off-by: Rémi Denis-Courmont <remi at remlab.net>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ca6bd56c0b8ef29df8c2eca15a22b593ffd25159
---

 modules/codec/hxxx_helper.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/codec/hxxx_helper.c b/modules/codec/hxxx_helper.c
index f2b69c52eb..f9df9ca20d 100644
--- a/modules/codec/hxxx_helper.c
+++ b/modules/codec/hxxx_helper.c
@@ -180,7 +180,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;
-            msg_Dbg(hh->p_obj, "new SPS parsed: %u\n", p_sps->i_id);
+            msg_Dbg(hh->p_obj, "new SPS parsed: %u", p_sps->i_id);
         }
         else if (i_nal_type == H264_NAL_PPS)
         {
@@ -205,7 +205,7 @@ h264_helper_parse_nal(struct hxxx_helper *hh, const uint8_t *p_buf, size_t i_buf
 
             hnal->h264_pps = p_pps;
             *p_config_changed = true;
-            msg_Dbg(hh->p_obj, "new PPS parsed: %u\n", p_pps->i_id);
+            msg_Dbg(hh->p_obj, "new PPS parsed: %u", p_pps->i_id);
         }
         else if (i_nal_type <= H264_NAL_SLICE_IDR
               && i_nal_type != H264_NAL_UNKNOWN)



More information about the vlc-commits mailing list