summaryrefslogtreecommitdiff
path: root/libavformat/rtpdec_hevc.c
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2016-01-02 13:20:13 +0100
committerHendrik Leppkes <h.leppkes@gmail.com>2016-01-02 13:20:13 +0100
commit95a2b883e36d3499c6bf620c65ac9d21fa2bd808 (patch)
treea7e4297b5e5e88db35d355d87e0d9f9fdec7d4d3 /libavformat/rtpdec_hevc.c
parent8a04ddeb4704e1f3c7237d48d95edae08a3193fe (diff)
parent69a68593ce5684409c3c4dd9a901bfd8b16925b1 (diff)
Merge commit '69a68593ce5684409c3c4dd9a901bfd8b16925b1'
* commit '69a68593ce5684409c3c4dd9a901bfd8b16925b1': Remove stray line breaks from avpriv_{report_missing_feature|request_samples} Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
Diffstat (limited to 'libavformat/rtpdec_hevc.c')
-rw-r--r--libavformat/rtpdec_hevc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/rtpdec_hevc.c b/libavformat/rtpdec_hevc.c
index 815a72c2b2..1f09a08aa4 100644
--- a/libavformat/rtpdec_hevc.c
+++ b/libavformat/rtpdec_hevc.c
@@ -222,7 +222,7 @@ static int hevc_handle_packet(AVFormatContext *ctx, PayloadContext *rtp_hevc_ctx
/* sanity check for correct layer ID */
if (lid) {
/* future scalable or 3D video coding extensions */
- avpriv_report_missing_feature(ctx, "Multi-layer HEVC coding\n");
+ avpriv_report_missing_feature(ctx, "Multi-layer HEVC coding");
return AVERROR_PATCHWELCOME;
}
@@ -338,7 +338,7 @@ static int hevc_handle_packet(AVFormatContext *ctx, PayloadContext *rtp_hevc_ctx
/* PACI packet */
case 50:
/* Temporal scalability control information (TSCI) */
- avpriv_report_missing_feature(ctx, "PACI packets for RTP/HEVC\n");
+ avpriv_report_missing_feature(ctx, "PACI packets for RTP/HEVC");
res = AVERROR_PATCHWELCOME;
break;
}