diff options
author | Carl Eugen Hoyos <ceffmpeg@gmail.com> | 2020-10-11 19:59:24 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <ceffmpeg@gmail.com> | 2020-10-11 19:59:24 +0200 |
commit | 86f0bba776018cd83642c0195ac3f41f3c87c1d3 (patch) | |
tree | b7295a46cae136a9b83fed3ca714bfbc36ec123a /libavformat/dhav.c | |
parent | 9b72cea4463dd2fabcd9ba1454a0855e521d0148 (diff) | |
download | ffmpeg-86f0bba776018cd83642c0195ac3f41f3c87c1d3.tar.gz |
lavc, lavf: Remove newlines from calls to avpriv_request_sample().
Diffstat (limited to 'libavformat/dhav.c')
-rw-r--r-- | libavformat/dhav.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/dhav.c b/libavformat/dhav.c index 5e9abdb611..79afe9be03 100644 --- a/libavformat/dhav.c +++ b/libavformat/dhav.c @@ -359,7 +359,7 @@ retry: case 0x4: case 0x8: st->codecpar->codec_id = AV_CODEC_ID_H264; break; case 0xc: st->codecpar->codec_id = AV_CODEC_ID_HEVC; break; - default: avpriv_request_sample(s, "Unknown video codec %X\n", dhav->video_codec); + default: avpriv_request_sample(s, "Unknown video codec %X", dhav->video_codec); } st->duration = dhav->duration; st->codecpar->width = dhav->width; @@ -392,7 +392,7 @@ retry: case 0x1f: st->codecpar->codec_id = AV_CODEC_ID_MP2; break; case 0x21: st->codecpar->codec_id = AV_CODEC_ID_MP3; break; case 0x0d: st->codecpar->codec_id = AV_CODEC_ID_ADPCM_MS; break; - default: avpriv_request_sample(s, "Unknown audio codec %X\n", dhav->audio_codec); + default: avpriv_request_sample(s, "Unknown audio codec %X", dhav->audio_codec); } st->duration = dhav->duration; st->codecpar->channels = dhav->audio_channels; |