[FFmpeg-cvslog] lavf/riffdec: Remove \n from avpriv_report_missing_feature().

Carl Eugen Hoyos git at videolan.org
Sun Mar 6 21:40:46 CET 2016


ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Sun Mar  6 21:39:57 2016 +0100| [aebfbe5c1368ca1a3a8dfad49fa05e36ac430b08] | committer: Carl Eugen Hoyos

lavf/riffdec: Remove \n from avpriv_report_missing_feature().

Found-by: Clément Bœsch

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

 libavformat/riffdec.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/riffdec.c b/libavformat/riffdec.c
index d7b81a0..151178d 100644
--- a/libavformat/riffdec.c
+++ b/libavformat/riffdec.c
@@ -131,7 +131,7 @@ int ff_get_wav_header(AVFormatContext *s, AVIOContext *pb,
     if (size >= 18 && id != 0x0165) {  /* We're obviously dealing with WAVEFORMATEX */
         int cbSize = avio_rl16(pb); /* cbSize */
         if (big_endian) {
-            avpriv_report_missing_feature(codec, "WAVEFORMATEX support for RIFX files\n");
+            avpriv_report_missing_feature(codec, "WAVEFORMATEX support for RIFX files");
             return AVERROR_PATCHWELCOME;
         }
         size  -= 18;



More information about the ffmpeg-cvslog mailing list