Commit 5be38f94 authored by Paul B Mahol's avatar Paul B Mahol

brstm: add missing new line to request for sample messages

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 5b09c340
...@@ -75,7 +75,7 @@ static int read_header(AVFormatContext *s) ...@@ -75,7 +75,7 @@ static int read_header(AVFormatContext *s)
return AVERROR_INVALIDDATA; return AVERROR_INVALIDDATA;
} }
if (bom == 0xFFFE) { 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; return AVERROR_PATCHWELCOME;
} }
...@@ -110,7 +110,7 @@ static int read_header(AVFormatContext *s) ...@@ -110,7 +110,7 @@ static int read_header(AVFormatContext *s)
case 1: codec = AV_CODEC_ID_PCM_S16BE_PLANAR; break; case 1: codec = AV_CODEC_ID_PCM_S16BE_PLANAR; break;
case 2: codec = AV_CODEC_ID_ADPCM_THP; break; case 2: codec = AV_CODEC_ID_ADPCM_THP; break;
default: 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; return AVERROR_PATCHWELCOME;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment