[FFmpeg-cvslog] brstm: add missing new line to request for sample messages

Paul B Mahol git at videolan.org
Sun Dec 16 14:07:38 CET 2012


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Sun Dec 16 13:02:58 2012 +0000| [5be38f9421da8a50502e8021191fa180193765ec] | committer: Paul B Mahol

brstm: add missing new line to request for sample messages

Signed-off-by: Paul B Mahol <onemda at gmail.com>

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

 libavformat/brstm.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavformat/brstm.c b/libavformat/brstm.c
index 80f73ed..3f7117f 100644
--- a/libavformat/brstm.c
+++ b/libavformat/brstm.c
@@ -75,7 +75,7 @@ static int read_header(AVFormatContext *s)
         return AVERROR_INVALIDDATA;
     }
     if (bom == 0xFFFE) {
-        av_log_ask_for_sample(s, "unsupported byte order");
+        av_log_ask_for_sample(s, "unsupported byte order\n");
         return AVERROR_PATCHWELCOME;
     }
 
@@ -110,7 +110,7 @@ static int read_header(AVFormatContext *s)
     case 1: codec = AV_CODEC_ID_PCM_S16BE_PLANAR; break;
     case 2: codec = AV_CODEC_ID_ADPCM_THP;        break;
     default:
-        av_log_ask_for_sample(s, "unsupported codec: %d", codec);
+        av_log_ask_for_sample(s, "unsupported codec: %d\n", codec);
         return AVERROR_PATCHWELCOME;
     }
 



More information about the ffmpeg-cvslog mailing list